[{"question": "What are the percentages of various educational attainments among respondents?", "labels": [{"query": "SELECT EdLevel, COUNT(EdLevel) * 100.0 / (SELECT COUNT(EdLevel) FROM Responses) FROM Responses WHERE NOT EdLevel IS NULL GROUP BY EdLevel", "results": [["Associate degree (A.A., A.S., etc.)", 3.1907517079103815], ["Bachelor\u2019s degree (B.A., B.S., B.Eng., etc.)", 41.72416536892001], ["Master\u2019s degree (M.A., M.S., M.Eng., MBA, etc.)", 23.351482841326316], ["Primary/elementary school", 2.165437122753572], ["Professional degree (JD, MD, Ph.D, Ed.D, etc.)", 4.418401100337603], ["Secondary school (e.g. American high school, German Realschule or Gymnasium, etc.)", 10.11333022631944], ["Some college/university study without earning a degree", 13.359780841849204], ["Something else", 1.6766507905834744]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution on how the respondents learn to code?", "labels": [{"query": "SELECT LearningToCodeMethods.name, COUNT(LearningToCodeMethods.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_LearningToCodeMethods) FROM LearningToCodeMethods JOIN Response_LearningToCodeMethods ON LearningToCodeMethods.id = Response_LearningToCodeMethods.LearningToCodeMethods_id GROUP BY LearningToCodeMethods.id", "results": [["Books / Physical media", 51.79608272589348], ["Colleague", 23.41124533725745], ["Friend or family member", 11.334314362958146], ["Hackathons (virtual or in-person)", 8.022769013152642], ["Online Courses or Certification", 49.280768397157296], ["On the job training", 46.06276308134561], ["Other online resources (e.g., videos, blogs, forum)", 80.1295871690451], ["School (i.e., University, College, etc)", 50.14316188129541], ["Coding Bootcamp", 9.812577712375802], ["Other (please specify):", 6.218130796345094]]}, {"query": "SELECT LearningToCodeMethods.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_LearningToCodeMethods JOIN LearningToCodeMethods ON Response_LearningToCodeMethods.LearningToCodeMethods_id = LearningToCodeMethods.id GROUP BY LearningToCodeMethods.Name", "results": [["Books / Physical media", 50.91271977036239], ["Coding Bootcamp", 9.645227843559383], ["Colleague", 23.01197524219591], ["Friend or family member", 11.141011840688913], ["Hackathons (virtual or in-person)", 7.885943667025475], ["On the job training", 45.27717976318622], ["Online Courses or Certification", 48.44030319339792], ["Other (please specify):", 6.11208288482239], ["Other online resources (e.g., videos, blogs, forum)", 78.76300681736635], ["School (i.e., University, College, etc)", 49.287988876928594]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "By what percentages of participants are the online resources used?", "labels": [{"query": "SELECT LearningToCodeOnlineResources.name, COUNT(LearningToCodeOnlineResources.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_LearningToCodeOnlineResources) FROM LearningToCodeOnlineResources JOIN Response_LearningToCodeOnlineResources ON LearningToCodeOnlineResources.id = Response_LearningToCodeOnlineResources.LearningToCodeOnlineResources_id GROUP BY LearningToCodeOnlineResources.id", "results": [["Formal documentation provided by the owner of the tech", 90.36156612065521], ["Blogs with tips and tricks", 76.68654757148565], ["Books", 43.422179099366474], ["Recorded coding sessions", 28.094857599452087], ["How-to videos", 60.14068831687689], ["Video-based Online Courses", 49.4107071514183], ["Written-based Online Courses", 36.11237943039781], ["Auditory material (e.g., podcasts)", 7.949032589464072], ["Online challenges (e.g., daily or weekly coding challenges)", 22.179099366474517], ["Written Tutorials", 59.94520860681468], ["Click to write Choice 20", 42.49186690257405], ["Stack Overflow", 82.55950002853719], ["Interactive tutorial", 26.028765481422294], ["Certification videos", 13.306888876205695], ["Programming Games", 5.894355345014554], ["Other (Please specify):", 3.253238970378403]]}, {"query": "SELECT LearningToCodeOnlineResources.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_LearningToCodeOnlineResources JOIN LearningToCodeOnlineResources ON Response_LearningToCodeOnlineResources.LearningToCodeOnlineResources_id = LearningToCodeOnlineResources.id GROUP BY LearningToCodeOnlineResources.Name", "results": [["Auditory material (e.g., podcasts)", 6.246636167922497], ["Blogs with tips and tricks", 60.26305166846071], ["Books", 34.1227125941873], ["Certification videos", 10.457032651596698], ["Click to write Choice 20", 33.39163975601004], ["Formal documentation provided by the owner of the tech", 71.00937387872264], ["How-to videos", 47.260719411553644], ["Interactive tutorial", 20.454341585934696], ["Online challenges (e.g., daily or weekly coding challenges)", 17.42913527090061], ["Other (Please specify):", 2.5565123789020454], ["Programming Games", 4.631996770721206], ["Recorded coding sessions", 22.07795120200933], ["Stack Overflow", 64.87822927879441], ["Video-based Online Courses", 38.82871367061356], ["Written Tutorials", 47.107104413347685], ["Written-based Online Courses", 28.37840868317187]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentages of respondents used which online learning platforms to learn coding?", "labels": [{"query": "SELECT LearningToCodePlatforms.name, COUNT(LearningToCodePlatforms.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_LearningToCodePlatforms) FROM LearningToCodePlatforms JOIN Response_LearningToCodePlatforms ON LearningToCodePlatforms.id = Response_LearningToCodePlatforms.LearningToCodePlatforms_id GROUP BY LearningToCodePlatforms.id", "results": [["Other", 21.067536951127416], ["Codecademy", 24.314920703420004], ["edX", 14.931492070342001], ["Udemy", 65.53026216420326], ["Pluralsight", 22.82608695652174], ["Coursera", 34.62077894055454], ["Udacity", 10.767073039162801], ["Skillsoft", 2.0336605890603088]]}, {"query": "SELECT LearningToCodePlatforms.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_LearningToCodePlatforms JOIN LearningToCodePlatforms ON Response_LearningToCodePlatforms.LearningToCodePlatforms_id = LearningToCodePlatforms.id GROUP BY LearningToCodePlatforms.Name", "results": [["Codecademy", 10.108315392895587], ["Coursera", 14.392716182274848], ["Other", 8.75829745245784], ["Pluralsight", 9.489370290635092], ["Skillsoft", 0.8454431288123431], ["Udacity", 4.476139217796915], ["Udemy", 27.24255471833513], ["edX", 6.207391460351633]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the average number of years the respondents have been coding by country?", "labels": [{"query": "SELECT Country, AVG(YearsCode) FROM Responses WHERE NOT Country IS NULL GROUP BY Country", "results": [["Afghanistan", 8.084745762711865], ["Albania", 7.982142857142857], ["Algeria", 6.121951219512195], ["Andorra", 11.266666666666667], ["Angola", 8.454545454545455], ["Antigua and Barbuda", 14.6], ["Argentina", 13.261324041811847], ["Armenia", 12.409090909090908], ["Australia", 17.308139534883722], ["Austria", 14.666990291262136], ["Azerbaijan", 7.076923076923077], ["Bahamas", 5.0], ["Bahrain", 8.647058823529411], ["Bangladesh", 6.3796680497925315], ["Barbados", 8.2], ["Belarus", 11.140625], ["Belgium", 14.461451247165533], ["Belize", 13.6], ["Benin", 3.823529411764706], ["Bhutan", 2.6666666666666665], ["Bolivia", 8.80952380952381], ["Bosnia and Herzegovina", 10.376470588235295], ["Botswana", 5.5], ["Brazil", 12.653071253071253], ["Brunei Darussalam", 8.0], ["Bulgaria", 12.675675675675675], ["Burkina Faso", 15.75], ["Burundi", 5.0], ["Cambodia", 9.733333333333333], ["Cameroon", 5.233333333333333], ["Canada", 15.211912943871706], ["Cape Verde", 3.5], ["Central African Republic", 1.0], ["Chile", 12.126016260162602], ["China", 9.546583850931677], ["Colombia", 10.075268817204302], ["Congo, Republic of the...", 5.5], ["Costa Rica", 14.05813953488372], ["Croatia", 13.079584775086506], ["Cuba", 10.696969696969697], ["Cyprus", 13.716049382716049], ["Czech Republic", 13.791744840525329], ["C\u00f4te d'Ivoire", 8.642857142857142], ["Democratic People's Republic of Korea", 12.5], ["Democratic Republic of the Congo", 4.0], ["Denmark", 15.530035335689046], ["Djibouti", 25.0], ["Dominica", 14.0], ["Dominican Republic", 9.43661971830986], ["Ecuador", 10.877777777777778], ["Egypt", 6.527397260273973], ["El Salvador", 11.205882352941176], ["Estonia", 13.163793103448276], ["Ethiopia", 5.168674698795181], ["Fiji", 12.142857142857142], ["Finland", 14.592541436464089], ["France", 13.733926128590971], ["Gabon", 5.0], ["Georgia", 12.228915662650602], ["Germany", 14.634620651876197], ["Ghana", 5.611111111111111], ["Greece", 13.357710651828299], ["Grenada", 20.0], ["Guatemala", 11.683333333333334], ["Guinea", 8.0], ["Guinea-Bissau", 42.0], ["Guyana", 11.0], ["Haiti", 5.75], ["Honduras", 10.192307692307692], ["Hong Kong (S.A.R.)", 11.589108910891088], ["Hungary", 13.086092715231787], ["Iceland", 17.31578947368421], ["India", 7.551780227724562], ["Indonesia", 7.2860082304526745], ["Iran, Islamic Republic of...", 9.266199649737302], ["Iraq", 6.78], ["Ireland", 16.120689655172413], ["Isle of Man", 15.076923076923077], ["Israel", 13.794535519125683], ["Italy", 15.705753424657534], ["Jamaica", 11.857142857142858], ["Japan", 14.557422969187675], ["Jordan", 9.083333333333334], ["Kazakhstan", 10.022222222222222], ["Kenya", 6.033195020746888], ["Kosovo", 7.518518518518518], ["Kuwait", 10.117647058823529], ["Kyrgyzstan", 12.72], ["Lao People's Democratic Republic", 6.0], ["Latvia", 13.235632183908047], ["Lebanon", 6.909090909090909], ["Lesotho", 8.5], ["Liberia", 3.3333333333333335], ["Libyan Arab Jamahiriya", 11.2], ["Liechtenstein", 15.0], ["Lithuania", 11.20820189274448], ["Luxembourg", 17.791666666666668], ["Madagascar", 10.052631578947368], ["Malawi", 5.904761904761905], ["Malaysia", 9.790874524714829], ["Maldives", 6.666666666666667], ["Mali", 9.833333333333334], ["Malta", 15.217391304347826], ["Marshall Islands", 4.0], ["Mauritania", 6.4], ["Mauritius", 12.892857142857142], ["Mexico", 11.156146179401993], ["Monaco", 27.0], ["Mongolia", 9.571428571428571], ["Montenegro", 15.789473684210526], ["Morocco", 6.791666666666667], ["Mozambique", 7.0], ["Myanmar", 5.390243902439025], ["Namibia", 11.25], ["Nepal", 5.355769230769231], ["Netherlands", 15.320016820857864], ["New Zealand", 18.119402985074625], ["Nicaragua", 9.333333333333334], ["Niger", 6.5], ["Nigeria", 4.72234762979684], ["Nomadic", 13.40677966101695], ["North Korea", 1.25], ["Norway", 15.315573770491802], ["Oman", 7.545454545454546], ["Pakistan", 6.356775300171527], ["Palau", 10.0], ["Palestine", 10.125], ["Panama", 11.416666666666666], ["Paraguay", 13.571428571428571], ["Peru", 9.659574468085106], ["Philippines", 9.57593123209169], ["Poland", 11.93768056128766], ["Portugal", 14.146112600536194], ["Qatar", 12.625], ["Republic of Korea", 9.785714285714286], ["Republic of Moldova", 11.7], ["Romania", 12.799031476997579], ["Russian Federation", 12.174632352941176], ["Rwanda", 6.2592592592592595], ["Saint Kitts and Nevis", 20.0], ["Saint Lucia", 6.0], ["Saint Vincent and the Grenadines", 20.0], ["Samoa", 4.0], ["San Marino", 40.0], ["Saudi Arabia", 10.009803921568627], ["Senegal", 7.3076923076923075], ["Serbia", 12.370192307692308], ["Sierra Leone", 5.75], ["Singapore", 11.125423728813558], ["Slovakia", 13.66], ["Slovenia", 15.154981549815497], ["Somalia", 6.266666666666667], ["South Africa", 15.06806282722513], ["South Korea", 10.669950738916256], ["Spain", 14.341543513957307], ["Sri Lanka", 7.3657407407407405], ["Sudan", 9.0], ["Suriname", 6.25], ["Swaziland", 9.181818181818182], ["Sweden", 16.597799511002446], ["Switzerland", 15.489082969432314], ["Syrian Arab Republic", 7.918918918918919], ["Taiwan", 11.109243697478991], ["Tajikistan", 5.6], ["Thailand", 13.230046948356808], ["The former Yugoslav Republic of Macedonia", 12.313725490196079], ["Timor-Leste", 0.0], ["Togo", 7.166666666666667], ["Trinidad and Tobago", 11.210526315789474], ["Tunisia", 7.169811320754717], ["Turkey", 10.598398169336384], ["Turkmenistan", 6.2], ["Uganda", 5.033898305084746], ["Ukraine", 11.592592592592593], ["United Arab Emirates", 11.2], ["United Kingdom of Great Britain and Northern Ireland", 16.715112075198842], ["United Republic of Tanzania", 6.527777777777778], ["United States of America", 16.223263832767632], ["Uruguay", 12.916666666666666], ["Uzbekistan", 6.634920634920635], ["Venezuela, Bolivarian Republic of...", 10.433962264150944], ["Viet Nam", 6.448818897637795], ["Yemen", 10.5], ["Zambia", 6.576923076923077], ["Zimbabwe", 5.606060606060606]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the average number of years the respondents who are professional coders have been coding by country?", "labels": [{"query": "SELECT Country, AVG(YearsCodePro) FROM Responses WHERE NOT Country IS NULL GROUP BY Country", "results": [["Afghanistan", 7.352941176470588], ["Albania", 6.414634146341464], ["Algeria", 4.114285714285714], ["Andorra", 10.272727272727273], ["Angola", 5.333333333333333], ["Antigua and Barbuda", 9.333333333333334], ["Argentina", 11.493887530562347], ["Armenia", 9.368421052631579], ["Australia", 14.328192473781616], ["Austria", 11.404026845637583], ["Azerbaijan", 6.1875], ["Bahamas", 0.0], ["Bahrain", 9.6], ["Bangladesh", 4.744897959183674], ["Barbados", 19.0], ["Belarus", 9.691358024691358], ["Belgium", 11.0103550295858], ["Belize", 17.0], ["Benin", 2.5555555555555554], ["Bhutan", 1.5], ["Bolivia", 8.071428571428571], ["Bosnia and Herzegovina", 7.173913043478261], ["Botswana", 9.0], ["Brazil", 10.542566709021601], ["Brunei Darussalam", 5.5], ["Bulgaria", 10.5], ["Burkina Faso", 11.333333333333334], ["Burundi", 4.0], ["Cambodia", 6.8], ["Cameroon", 6.363636363636363], ["Canada", 12.294311926605504], ["Cape Verde", 0.0], ["Central African Republic", null], ["Chile", 9.266666666666667], ["China", 7.878048780487805], ["Colombia", 8.0990990990991], ["Congo, Republic of the...", null], ["Costa Rica", 11.61111111111111], ["Croatia", 9.747747747747749], ["Cuba", 7.428571428571429], ["Cyprus", 11.661764705882353], ["Czech Republic", 11.071428571428571], ["C\u00f4te d'Ivoire", 5.7], ["Democratic People's Republic of Korea", 20.0], ["Democratic Republic of the Congo", 4.0], ["Denmark", 11.598853868194842], ["Djibouti", 19.5], ["Dominica", 20.0], ["Dominican Republic", 8.448979591836734], ["Ecuador", 8.380952380952381], ["Egypt", 5.859154929577465], ["El Salvador", 8.5], ["Estonia", 9.968911917098445], ["Ethiopia", 3.8863636363636362], ["Fiji", 6.25], ["Finland", 11.741818181818182], ["France", 10.243115318416523], ["Gabon", 2.0], ["Georgia", 9.155555555555555], ["Germany", 11.319140989729226], ["Ghana", 4.314285714285714], ["Greece", 10.433121019108281], ["Grenada", 18.0], ["Guatemala", 10.883720930232558], ["Guinea", 7.0], ["Guinea-Bissau", 25.0], ["Guyana", 5.0], ["Haiti", null], ["Honduras", 7.157894736842105], ["Hong Kong (S.A.R.)", 8.553191489361701], ["Hungary", 10.28344671201814], ["Iceland", 13.829787234042554], ["India", 6.121877573428493], ["Indonesia", 6.013377926421405], ["Iran, Islamic Republic of...", 7.286764705882353], ["Iraq", 6.142857142857143], ["Ireland", 13.336898395721924], ["Isle of Man", 11.083333333333334], ["Israel", 11.284353741496599], ["Italy", 12.521438450899032], ["Jamaica", 10.357142857142858], ["Japan", 10.536082474226804], ["Jordan", 6.434782608695652], ["Kazakhstan", 7.2615384615384615], ["Kenya", 5.1652892561983474], ["Kosovo", 5.25], ["Kuwait", 11.11111111111111], ["Kyrgyzstan", 9.5], ["Lao People's Democratic Republic", 4.5], ["Latvia", 10.692857142857143], ["Lebanon", 5.425], ["Lesotho", 10.0], ["Liberia", 5.0], ["Libyan Arab Jamahiriya", 12.166666666666666], ["Liechtenstein", 8.0], ["Lithuania", 8.532], ["Luxembourg", 13.285714285714286], ["Madagascar", 8.0], ["Malawi", 3.0], ["Malaysia", 7.96875], ["Maldives", 4.0], ["Mali", 5.0], ["Malta", 11.342857142857143], ["Marshall Islands", 0.0], ["Mauritania", 2.6666666666666665], ["Mauritius", 11.75], ["Mexico", 8.938636363636364], ["Monaco", 24.0], ["Mongolia", 7.611111111111111], ["Montenegro", 12.272727272727273], ["Morocco", 5.698630136986301], ["Mozambique", 5.2], ["Myanmar", 4.076923076923077], ["Namibia", 10.0], ["Nepal", 3.9473684210526314], ["Netherlands", 12.11298207495926], ["New Zealand", 14.552772808586763], ["Nicaragua", 6.545454545454546], ["Niger", 4.5], ["Nigeria", 4.530054644808743], ["Nomadic", 11.85], ["North Korea", null], ["Norway", 11.130653266331658], ["Oman", 7.625], ["Pakistan", 4.888613861386139], ["Palau", 8.333333333333334], ["Palestine", 9.470588235294118], ["Panama", 8.933333333333334], ["Paraguay", 12.09375], ["Peru", 9.3], ["Philippines", 8.356521739130434], ["Poland", 9.306306306306306], ["Portugal", 10.510708401976936], ["Qatar", 9.846153846153847], ["Republic of Korea", 6.967741935483871], ["Republic of Moldova", 9.585365853658537], ["Romania", 9.787365177195685], ["Russian Federation", 11.065340909090908], ["Rwanda", 6.769230769230769], ["Saint Kitts and Nevis", 10.0], ["Saint Lucia", 2.0], ["Saint Vincent and the Grenadines", 17.0], ["Samoa", null], ["San Marino", 36.0], ["Saudi Arabia", 8.711864406779661], ["Senegal", 4.714285714285714], ["Serbia", 8.960843373493976], ["Sierra Leone", 7.5], ["Singapore", 9.281553398058252], ["Slovakia", 10.77734375], ["Slovenia", 11.639269406392694], ["Somalia", 4.2727272727272725], ["South Africa", 12.521739130434783], ["South Korea", 8.830882352941176], ["Spain", 11.380693405846364], ["Sri Lanka", 5.12], ["Sudan", 5.0], ["Suriname", 4.5], ["Swaziland", 5.428571428571429], ["Sweden", 12.156477438136827], ["Switzerland", 12.162921348314606], ["Syrian Arab Republic", 5.666666666666667], ["Taiwan", 8.5], ["Tajikistan", 8.5], ["Thailand", 11.077922077922079], ["The former Yugoslav Republic of Macedonia", 7.9], ["Timor-Leste", 0.0], ["Togo", 2.0], ["Trinidad and Tobago", 10.0], ["Tunisia", 4.78], ["Turkey", 8.685303514376997], ["Turkmenistan", 5.8], ["Uganda", 4.0], ["Ukraine", 9.704791344667697], ["United Arab Emirates", 9.007142857142858], ["United Kingdom of Great Britain and Northern Ireland", 13.294026548672566], ["United Republic of Tanzania", 4.25], ["United States of America", 13.237903496409636], ["Uruguay", 10.207920792079207], ["Uzbekistan", 6.243243243243243], ["Venezuela, Bolivarian Republic of...", 8.930555555555555], ["Viet Nam", 4.837962962962963], ["Yemen", 9.090909090909092], ["Zambia", 5.928571428571429], ["Zimbabwe", 4.846153846153846]]}, {"query": "SELECT Country, AVG(YearsCode) AS Average_Years_Coding FROM Responses WHERE ResponderDescription = 'I am a developer by profession' GROUP BY Country", "results": [["Afghanistan", 9.736842105263158], ["Albania", 9.571428571428571], ["Algeria", 7.536585365853658], ["Andorra", 13.1], ["Angola", 11.4], ["Antigua and Barbuda", 11.5], ["Argentina", 14.758389261744966], ["Armenia", 12.95959595959596], ["Australia", 18.54461335095836], ["Austria", 15.297435897435898], ["Azerbaijan", 8.64102564102564], ["Bahamas", 0.0], ["Bahrain", 11.666666666666666], ["Bangladesh", 7.483483483483483], ["Barbados", 12.333333333333334], ["Belarus", 12.377551020408163], ["Belgium", 15.238532110091743], ["Belize", 6.5], ["Benin", 4.636363636363637], ["Bhutan", 2.6666666666666665], ["Bolivia", 8.7], ["Bosnia and Herzegovina", 11.028985507246377], ["Botswana", 7.5], ["Brazil", 13.226860254083485], ["Brunei Darussalam", 10.5], ["Bulgaria", 13.251282051282052], ["Burkina Faso", 15.75], ["Burundi", 5.0], ["Cambodia", 8.777777777777779], ["Cameroon", 8.071428571428571], ["Canada", 16.32279411764706], ["Cape Verde", 1.0], ["Chile", 12.956989247311828], ["China", 11.021951219512195], ["Colombia", 10.92717086834734], ["Congo, Republic of the...", 5.5], ["Costa Rica", 13.789473684210526], ["Croatia", 14.092436974789916], ["Cuba", 11.962962962962964], ["Cyprus", 15.09375], ["Czech Republic", 14.847522236340534], ["C\u00f4te d'Ivoire", 9.2], ["Democratic People's Republic of Korea", 25.0], ["Democratic Republic of the Congo", 5.666666666666667], ["Denmark", 16.02911208151383], ["Djibouti", 25.0], ["Dominica", 20.0], ["Dominican Republic", 10.785714285714286], ["Ecuador", 12.144927536231885], ["Egypt", 8.216666666666667], ["El Salvador", 12.73076923076923], ["Estonia", 13.43010752688172], ["Ethiopia", 6.142857142857143], ["Fiji", 8.333333333333334], ["Finland", 15.797513321492007], ["France", 14.231063829787233], ["Gabon", 6.0], ["Georgia", 12.557142857142857], ["Germany", 15.671183378500452], ["Ghana", 6.816326530612245], ["Greece", 14.535864978902953], ["Grenada", 20.0], ["Guatemala", 12.72340425531915], ["Guinea", 10.0], ["Guinea-Bissau", 42.0], ["Guyana", 11.0], ["Haiti", 8.5], ["Honduras", 11.222222222222221], ["Hong Kong (S.A.R.)", 13.105263157894736], ["Hungary", 14.451820128479657], ["Iceland", 19.0], ["India", 8.73935220606988], ["Indonesia", 8.805194805194805], ["Iran, Islamic Republic of...", 10.231263383297645], ["Iraq", 8.03125], ["Ireland", 17.088068181818183], ["Isle of Man", 15.916666666666666], ["Israel", 14.516042780748663], ["Italy", 17.060344827586206], ["Jamaica", 11.785714285714286], ["Japan", 15.07168458781362], ["Jordan", 9.770833333333334], ["Kazakhstan", 10.246575342465754], ["Kenya", 7.09433962264151], ["Kosovo", 7.958333333333333], ["Kuwait", 14.375], ["Kyrgyzstan", 13.904761904761905], ["Lao People's Democratic Republic", 7.0], ["Latvia", 13.945578231292517], ["Lebanon", 7.28], ["Lesotho", 7.333333333333333], ["Liberia", 4.0], ["Libyan Arab Jamahiriya", 12.285714285714286], ["Liechtenstein", 15.0], ["Lithuania", 11.988461538461538], ["Luxembourg", 19.491525423728813], ["Madagascar", 12.0], ["Malawi", 6.4], ["Malaysia", 11.144385026737968], ["Maldives", 8.142857142857142], ["Mali", 9.833333333333334], ["Malta", 16.575], ["Mauritania", 5.75], ["Mauritius", 12.578947368421053], ["Mexico", 12.359823399558499], ["Monaco", 10.0], ["Mongolia", 9.85], ["Montenegro", 16.88235294117647], ["Morocco", 7.857142857142857], ["Mozambique", 6.166666666666667], ["Myanmar", 7.037037037037037], ["Namibia", 11.666666666666666], ["Nepal", 6.149253731343284], ["Netherlands", 16.046236559139786], ["New Zealand", 19.359437751004016], ["Nicaragua", 9.56], ["Niger", 6.333333333333333], ["Nigeria", 6.439516129032258], ["Nomadic", 15.75609756097561], ["Norway", 16.049319727891156], ["Oman", 5.833333333333333], ["Pakistan", 7.082429501084599], ["Palau", 7.5], ["Palestine", 10.3], ["Panama", 12.333333333333334], ["Paraguay", 14.264705882352942], ["Peru", 11.442105263157895], ["Philippines", 11.621621621621621], ["Poland", 13.150953389830509], ["Portugal", 14.87813021702838], ["Qatar", 10.916666666666666], ["Republic of Korea", 10.442622950819672], ["Republic of Moldova", 12.533333333333333], ["Romania", 13.777452415812592], ["Russian Federation", 13.946891191709845], ["Rwanda", 5.277777777777778], ["Saint Kitts and Nevis", 20.0], ["Saint Vincent and the Grenadines", 20.0], ["San Marino", 40.0], ["Saudi Arabia", 12.661016949152541], ["Senegal", 7.5], ["Serbia", 13.065902578796562], ["Sierra Leone", 4.5], ["Singapore", 12.696682464454977], ["Slovakia", 14.91891891891892], ["Slovenia", 16.142857142857142], ["Somalia", 6.583333333333333], ["South Africa", 15.851685393258427], ["South Korea", 12.46376811594203], ["Spain", 15.105119453924914], ["Sri Lanka", 8.251533742331288], ["Sudan", 7.333333333333333], ["Suriname", 7.0], ["Swaziland", 9.4], ["Sweden", 17.477702191987905], ["Switzerland", 15.954292084726868], ["Syrian Arab Republic", 8.172413793103448], ["Taiwan", 11.892045454545455], ["Tajikistan", 6.5], ["Thailand", 14.624203821656051], ["The former Yugoslav Republic of Macedonia", 13.24390243902439], ["Timor-Leste", 0.0], ["Togo", 7.166666666666667], ["Trinidad and Tobago", 13.636363636363637], ["Tunisia", 7.561643835616438], ["Turkey", 11.460972017673049], ["Turkmenistan", 6.75], ["Uganda", 6.264705882352941], ["Ukraine", 12.490857946554149], ["United Arab Emirates", 12.877862595419847], ["United Kingdom of Great Britain and Northern Ireland", 17.663875319841825], ["United Republic of Tanzania", 6.92], ["United States of America", 17.31620335241774], ["Uruguay", 13.357798165137615], ["Uzbekistan", 7.46], ["Venezuela, Bolivarian Republic of...", 11.619047619047619], ["Viet Nam", 7.468879668049793], ["Yemen", 12.454545454545455], ["Zambia", 9.1875], ["Zimbabwe", 7.625]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the average number of years the respondents who are professional coders have been coding by developer type?", "labels": [{"query": "SELECT DevType, AVG(YearsCodePro) FROM Responses WHERE NOT DevType IS NULL GROUP BY DevType", "results": [["Academic researcher", 9.889737991266376], ["Blockchain", 8.838461538461539], ["Cloud infrastructure engineer", 10.806925498426024], ["Data or business analyst", 9.339009287925697], ["Data scientist or machine learning specialist", 7.652535957607872], ["Database administrator", 15.311926605504587], ["Designer", 13.515], ["DevOps specialist", 10.754428341384862], ["Developer Advocate", 15.031088082901555], ["Developer Experience", 12.234899328859061], ["Developer, QA or test", 8.429423459244532], ["Developer, back-end", 10.516123869728736], ["Developer, desktop or enterprise applications", 15.9811850603763], ["Developer, embedded applications or devices", 12.167464114832535], ["Developer, front-end", 7.650406504065041], ["Developer, full-stack", 10.558639133675303], ["Developer, game or graphics", 10.135568513119534], ["Developer, mobile", 9.386373626373626], ["Educator", 15.017182130584192], ["Engineer, data", 9.366696191319752], ["Engineer, site reliability", 10.74234693877551], ["Engineering manager", 15.11219262295082], ["Hardware Engineer", 10.59656652360515], ["Marketing or sales professional", 10.670454545454545], ["Other (please specify):", 13.425246195165622], ["Product manager", 14.5325], ["Project manager", 14.38723404255319], ["Research & Development role", 13.917081260364842], ["Scientist", 12.506944444444445], ["Security professional", 10.706349206349206], ["Senior Executive (C-Suite, VP, etc.)", 17.30095541401274], ["Student", 1.5192307692307692], ["System administrator", 11.421052631578947]]}, {"query": "SELECT DevType, AVG(YearsCode) AS AverageYearsCoding FROM Responses WHERE ResponderDescription = 'I am a developer by profession' AND NOT YearsCode IS NULL GROUP BY DevType", "results": [[null, 8.78688524590164], ["Academic researcher", 13.831439393939394], ["Blockchain", 12.649819494584838], ["Cloud infrastructure engineer", 15.504447268106734], ["Data or business analyst", 14.041009463722398], ["Data scientist or machine learning specialist", 11.706896551724139], ["Database administrator", 19.721649484536083], ["Designer", 20.9375], ["DevOps specialist", 15.430594900849858], ["Developer Advocate", 20.39855072463768], ["Developer Experience", 16.93243243243243], ["Developer, QA or test", 12.754475703324808], ["Developer, back-end", 14.8703385397205], ["Developer, desktop or enterprise applications", 20.417979359043997], ["Developer, embedded applications or devices", 17.374361883153714], ["Developer, front-end", 10.780336958839838], ["Developer, full-stack", 14.565418475394539], ["Developer, game or graphics", 15.696598639455782], ["Developer, mobile", 13.103018108651911], ["Educator", 19.354545454545455], ["Engineer, data", 13.46311858076564], ["Engineer, site reliability", 15.485623003194888], ["Engineering manager", 19.7428760768721], ["Hardware Engineer", 15.881118881118882], ["Marketing or sales professional", 14.0], ["Other (please specify):", 18.313310580204778], ["Product manager", 21.53216374269006], ["Project manager", 19.14828897338403], ["Research & Development role", 19.536190476190477], ["Scientist", 18.76923076923077], ["Security professional", 15.27461139896373], ["Senior Executive (C-Suite, VP, etc.)", 22.321001088139283], ["Student", 6.640776699029126], ["System administrator", 17.933774834437084]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents are there by developer type?", "labels": [{"query": "SELECT DevType, COUNT(DevType) FROM Responses WHERE NOT DevType IS NULL GROUP BY DevType", "results": [["Academic researcher", 1354], ["Blockchain", 323], ["Cloud infrastructure engineer", 1036], ["Data or business analyst", 837], ["Data scientist or machine learning specialist", 1588], ["Database administrator", 257], ["Designer", 281], ["DevOps specialist", 1387], ["Developer Advocate", 212], ["Developer Experience", 326], ["Developer, QA or test", 586], ["Developer, back-end", 13745], ["Developer, desktop or enterprise applications", 3904], ["Developer, embedded applications or devices", 1845], ["Developer, front-end", 5071], ["Developer, full-stack", 25735], ["Developer, game or graphics", 866], ["Developer, mobile", 2597], ["Educator", 415], ["Engineer, data", 1248], ["Engineer, site reliability", 427], ["Engineering manager", 2033], ["Hardware Engineer", 286], ["Marketing or sales professional", 149], ["Other (please specify):", 3080], ["Product manager", 446], ["Project manager", 589], ["Research & Development role", 1353], ["Scientist", 351], ["Security professional", 474], ["Senior Executive (C-Suite, VP, etc.)", 1332], ["Student", 1996], ["System administrator", 743]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many responses are there by country as a percentage of total responses?", "labels": [{"query": "SELECT Country, COUNT(Country) * 100.0 / (SELECT COUNT(Country) FROM Responses) FROM Responses WHERE NOT Country IS NULL GROUP BY Country", "results": [["Afghanistan", 0.07274959362531686], ["Albania", 0.06820274402373455], ["Algeria", 0.09662055403362395], ["Andorra", 0.018187398406329214], ["Angola", 0.014777261205142486], ["Antigua and Barbuda", 0.007956986802769031], ["Argentina", 0.6581564798290385], ["Armenia", 0.12958521364509565], ["Australia", 2.3620883680220066], ["Austria", 1.17422390960863], ["Azerbaijan", 0.06024575722096552], ["Bahamas", 0.0022734248007911517], ["Bahrain", 0.02159753560751594], ["Bangladesh", 0.5569890761938322], ["Barbados", 0.006820274402373455], ["Belarus", 0.1454991872506337], ["Belgium", 1.0094006115512715], ["Belize", 0.005683562001977879], ["Benin", 0.01932411080672479], ["Bhutan", 0.0034101372011867276], ["Bolivia", 0.047741920816614186], ["Bosnia and Herzegovina", 0.0988939788344151], ["Botswana", 0.006820274402373455], ["Brazil", 2.321166721607766], ["Brunei Darussalam", 0.0034101372011867276], ["Bulgaria", 0.5478953769906676], ["Burkina Faso", 0.0045468496015823034], ["Burundi", 0.0022734248007911517], ["Cambodia", 0.034101372011867276], ["Cameroon", 0.034101372011867276], ["Canada", 3.9864503881872846], ["Cape Verde", 0.0022734248007911517], ["Central African Republic", 0.0011367124003955759], ["Chile", 0.2819046752981028], ["China", 0.7468200470598934], ["Colombia", 0.5285712661839428], ["Congo, Republic of the...", 0.0022734248007911517], ["Costa Rica", 0.09775726643401952], ["Croatia", 0.329646596114717], ["Cuba", 0.037511509213054], ["Cyprus", 0.09548384163322837], ["Czech Republic", 1.2185556932240573], ["C\u00f4te d'Ivoire", 0.015913973605538062], ["Democratic People's Republic of Korea", 0.0022734248007911517], ["Democratic Republic of the Congo", 0.005683562001977879], ["Denmark", 0.9662055403362395], ["Djibouti", 0.0022734248007911517], ["Dominica", 0.0022734248007911517], ["Dominican Republic", 0.08070658042808589], ["Ecuador", 0.10230411603560183], ["Egypt", 0.33646687051709046], ["El Salvador", 0.03864822161344958], ["Estonia", 0.2659907016925648], ["Ethiopia", 0.09775726643401952], ["Fiji", 0.009093699203164607], ["Finland", 0.8252532026871882], ["France", 3.333977470360224], ["Gabon", 0.0022734248007911517], ["Georgia", 0.1886942584656656], ["Germany", 8.32982847009878], ["Ghana", 0.10230411603560183], ["Greece", 0.7172655246496084], ["Grenada", 0.0011367124003955759], ["Guatemala", 0.06820274402373455], ["Guinea", 0.0022734248007911517], ["Guinea-Bissau", 0.0011367124003955759], ["Guyana", 0.0034101372011867276], ["Haiti", 0.0045468496015823034], ["Honduras", 0.029554522410284972], ["Hong Kong (S.A.R.)", 0.23302604208109307], ["Hungary", 0.6899844270401145], ["Iceland", 0.06479260682254782], ["India", 6.394007252225115], ["Indonesia", 0.560399213395019], ["Iran, Islamic Republic of...", 0.6558830550282473], ["Iraq", 0.05797233242017437], ["Ireland", 0.5274345537835472], ["Isle of Man", 0.014777261205142486], ["Israel", 1.0469121207643255], ["Italy", 2.0858672547258816], ["Jamaica", 0.023870960408307093], ["Japan", 0.4114898889431985], ["Jordan", 0.08184329282848146], ["Kazakhstan", 0.1034408284359974], ["Kenya", 0.2773578256965205], ["Kosovo", 0.030691234810680548], ["Kuwait", 0.020460823207120366], ["Kyrgyzstan", 0.028417810009889397], ["Lao People's Democratic Republic", 0.0034101372011867276], ["Latvia", 0.1977879576688302], ["Lebanon", 0.075023018426108], ["Lesotho", 0.0045468496015823034], ["Liberia", 0.0034101372011867276], ["Libyan Arab Jamahiriya", 0.011367124003955759], ["Liechtenstein", 0.0011367124003955759], ["Lithuania", 0.36033783092539756], ["Luxembourg", 0.08184329282848146], ["Madagascar", 0.022734248007911517], ["Malawi", 0.023870960408307093], ["Malaysia", 0.300092073704432], ["Maldives", 0.01364054880474691], ["Mali", 0.006820274402373455], ["Malta", 0.05228877041819649], ["Marshall Islands", 0.0011367124003955759], ["Mauritania", 0.005683562001977879], ["Mauritius", 0.031827947211076124], ["Mexico", 0.6877110022393235], ["Monaco", 0.0022734248007911517], ["Mongolia", 0.023870960408307093], ["Montenegro", 0.04319507121503188], ["Morocco", 0.1648232980573585], ["Mozambique", 0.010230411603560183], ["Myanmar", 0.047741920816614186], ["Namibia", 0.0045468496015823034], ["Nepal", 0.24098302888386208], ["Netherlands", 2.7087856501426573], ["New Zealand", 0.763870733065827], ["Nicaragua", 0.034101372011867276], ["Niger", 0.0045468496015823034], ["Nigeria", 0.5081104429768224], ["Nomadic", 0.06933945642413013], ["North Korea", 0.0045468496015823034], ["Norway", 0.8320734770895616], ["Oman", 0.012503836404351334], ["Pakistan", 0.6774805906357633], ["Palau", 0.0034101372011867276], ["Palestine", 0.02728109760949382], ["Panama", 0.02728109760949382], ["Paraguay", 0.047741920816614186], ["Peru", 0.1602764484557762], ["Philippines", 0.4023961897400339], ["Poland", 2.7678946949632275], ["Portugal", 0.8513975878962864], ["Qatar", 0.018187398406329214], ["Republic of Korea", 0.09775726643401952], ["Republic of Moldova", 0.05683562001977879], ["Romania", 0.9423345799279325], ["Russian Federation", 1.24356336603276], ["Rwanda", 0.030691234810680548], ["Saint Kitts and Nevis", 0.0011367124003955759], ["Saint Lucia", 0.0022734248007911517], ["Saint Vincent and the Grenadines", 0.0022734248007911517], ["Samoa", 0.0011367124003955759], ["San Marino", 0.0011367124003955759], ["Saudi Arabia", 0.11821808964113989], ["Senegal", 0.014777261205142486], ["Serbia", 0.47400907096495515], ["Sierra Leone", 0.009093699203164607], ["Singapore", 0.33874029531788163], ["Slovakia", 0.4001227649392427], ["Slovenia", 0.3080490605072011], ["Somalia", 0.017050686005933638], ["South Africa", 0.651336205426665], ["South Korea", 0.23188932968069748], ["Spain", 2.0847305423254863], ["Sri Lanka", 0.24666659088583998], ["Sudan", 0.009093699203164607], ["Suriname", 0.0045468496015823034], ["Swaziland", 0.012503836404351334], ["Sweden", 1.8653450490491401], ["Switzerland", 1.3060825480545166], ["Syrian Arab Republic", 0.04205835881463631], ["Taiwan", 0.2716742636945426], ["Tajikistan", 0.005683562001977879], ["Thailand", 0.24552987848544439], ["The former Yugoslav Republic of Macedonia", 0.05797233242017437], ["Timor-Leste", 0.0022734248007911517], ["Togo", 0.006820274402373455], ["Trinidad and Tobago", 0.02159753560751594], ["Tunisia", 0.12162822684232662], ["Turkey", 1.0014436247485023], ["Turkmenistan", 0.011367124003955759], ["Uganda", 0.06820274402373455], ["Ukraine", 0.9923499255453377], ["United Arab Emirates", 0.2023348072704125], ["United Kingdom of Great Britain and Northern Ireland", 6.311027246996238], ["United Republic of Tanzania", 0.04092164641424073], ["United States of America", 21.196276130176305], ["Uruguay", 0.1511827492526116], ["Uzbekistan", 0.07274959362531686], ["Venezuela, Bolivarian Republic of...", 0.12049151444193104], ["Viet Nam", 0.4433178361542746], ["Yemen", 0.022734248007911517], ["Zambia", 0.029554522410284972], ["Zimbabwe", 0.03864822161344958]]}, {"query": "SELECT Country, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT Country IS NULL GROUP BY Country", "results": [["Afghanistan", 0.07176175098672408], ["Albania", 0.06727664155005382], ["Algeria", 0.09530857552924292], ["Andorra", 0.01794043774668102], ["Angola", 0.014576605669178328], ["Antigua and Barbuda", 0.007848941514172945], ["Argentina", 0.6492195909580194], ["Armenia", 0.12782561894510225], ["Australia", 2.3300143523501973], ["Austria", 1.1582795120200933], ["Azerbaijan", 0.059427700035880875], ["Bahamas", 0.0022425547183351274], ["Bahrain", 0.02130426982418371], ["Bangladesh", 0.5494259059921062], ["Barbados", 0.006727664155005382], ["Belarus", 0.14352350197344815], ["Belgium", 0.9956942949407965], ["Belize", 0.005606386795837818], ["Benin", 0.019061715105848583], ["Bhutan", 0.003363832077502691], ["Bolivia", 0.04709364908503767], ["Bosnia and Herzegovina", 0.09755113024757804], ["Botswana", 0.006727664155005382], ["Brazil", 2.289648367420165], ["Brunei Darussalam", 0.003363832077502691], ["Bulgaria", 0.5404556871187657], ["Burkina Faso", 0.004485109436670255], ["Burundi", 0.0022425547183351274], ["Cambodia", 0.03363832077502691], ["Cameroon", 0.03363832077502691], ["Canada", 3.932319698600646], ["Cape Verde", 0.0022425547183351274], ["Central African Republic", 0.0011212773591675637], ["Chile", 0.2780767850735558], ["China", 0.7366792249730894], ["Colombia", 0.5213939720129172], ["Congo, Republic of the...", 0.0022425547183351274], ["Costa Rica", 0.09642985288841048], ["Croatia", 0.3251704341585935], ["Cuba", 0.0370021528525296], ["Cyprus", 0.09418729817007535], ["Czech Republic", 1.2020093290276284], ["C\u00f4te d'Ivoire", 0.01569788302834589], ["Democratic People's Republic of Korea", 0.0022425547183351274], ["Democratic Republic of the Congo", 0.005606386795837818], ["Denmark", 0.9530857552924291], ["Djibouti", 0.0022425547183351274], ["Dominica", 0.0022425547183351274], ["Dominican Republic", 0.07961069250089702], ["Ecuador", 0.10091496232508074], ["Egypt", 0.33189809831359884], ["El Salvador", 0.03812343021169717], ["Estonia", 0.2623789020452099], ["Ethiopia", 0.09642985288841048], ["Fiji", 0.00897021887334051], ["Finland", 0.8140473627556513], ["France", 3.2887064944384643], ["Gabon", 0.0022425547183351274], ["Georgia", 0.18613204162181557], ["Germany", 8.216720487979906], ["Ghana", 0.10091496232508074], ["Greece", 0.7075260136347327], ["Grenada", 0.0011212773591675637], ["Guatemala", 0.06727664155005382], ["Guinea", 0.0022425547183351274], ["Guinea-Bissau", 0.0011212773591675637], ["Guyana", 0.003363832077502691], ["Haiti", 0.004485109436670255], ["Honduras", 0.029153211338356657], ["Hong Kong (S.A.R.)", 0.22986185862935055], ["Hungary", 0.6806153570147112], ["Iceland", 0.06391280947255112], ["India", 6.307185145317546], ["Indonesia", 0.5527897380696088], ["Iran, Islamic Republic of...", 0.6469770362396843], ["Iraq", 0.057185145317545746], ["Ireland", 0.5202726946537496], ["Isle of Man", 0.014576605669178328], ["Israel", 1.0326964477933263], ["Italy", 2.0575439540724796], ["Jamaica", 0.023546824542518836], ["Japan", 0.40590240401865807], ["Jordan", 0.08073196986006459], ["Kazakhstan", 0.1020362396842483], ["Kenya", 0.2735916756368855], ["Kosovo", 0.03027448869752422], ["Kuwait", 0.020182992465016147], ["Kyrgyzstan", 0.028031933979189093], ["Lao People's Democratic Republic", 0.003363832077502691], ["Latvia", 0.19510226049515608], ["Lebanon", 0.0740043057050592], ["Lesotho", 0.004485109436670255], ["Liberia", 0.003363832077502691], ["Libyan Arab Jamahiriya", 0.011212773591675636], ["Liechtenstein", 0.0011212773591675637], ["Lithuania", 0.3554449228561177], ["Luxembourg", 0.08073196986006459], ["Madagascar", 0.022425547183351272], ["Malawi", 0.023546824542518836], ["Malaysia", 0.2960172228202368], ["Maldives", 0.013455328310010764], ["Mali", 0.006727664155005382], ["Malta", 0.05157875852170793], ["Marshall Islands", 0.0011212773591675637], ["Mauritania", 0.005606386795837818], ["Mauritius", 0.03139576605669178], ["Mexico", 0.678372802296376], ["Monaco", 0.0022425547183351274], ["Mongolia", 0.023546824542518836], ["Montenegro", 0.04260853964836742], ["Morocco", 0.16258521707929674], ["Mozambique", 0.010091496232508074], ["Myanmar", 0.04709364908503767], ["Namibia", 0.004485109436670255], ["Nepal", 0.2377108001435235], ["Netherlands", 2.672003946896304], ["New Zealand", 0.7534983853606028], ["Nicaragua", 0.03363832077502691], ["Niger", 0.004485109436670255], ["Nigeria", 0.501210979547901], ["Nomadic", 0.06839791890922138], ["North Korea", 0.004485109436670255], ["Norway", 0.8207750269106566], ["Oman", 0.0123340509508432], ["Pakistan", 0.6682813060638679], ["Palau", 0.003363832077502691], ["Palestine", 0.02691065662002153], ["Panama", 0.02691065662002153], ["Paraguay", 0.04709364908503767], ["Peru", 0.15810010764262647], ["Philippines", 0.39693218514531753], ["Poland", 2.7303103695730178], ["Portugal", 0.8398367420165052], ["Qatar", 0.01794043774668102], ["Republic of Korea", 0.09642985288841048], ["Republic of Moldova", 0.056063867958378186], ["Romania", 0.9295389307499103], ["Russian Federation", 1.2266774309293147], ["Rwanda", 0.03027448869752422], ["Saint Kitts and Nevis", 0.0011212773591675637], ["Saint Lucia", 0.0022425547183351274], ["Saint Vincent and the Grenadines", 0.0022425547183351274], ["Samoa", 0.0011212773591675637], ["San Marino", 0.0011212773591675637], ["Saudi Arabia", 0.11661284535342663], ["Senegal", 0.014576605669178328], ["Serbia", 0.4675726587728741], ["Sierra Leone", 0.00897021887334051], ["Singapore", 0.33414065303193397], ["Slovakia", 0.3946896304269824], ["Slovenia", 0.30386616433440977], ["Somalia", 0.016819160387513455], ["South Africa", 0.642491926803014], ["South Korea", 0.22874058127018299], ["Spain", 2.056422676713312], ["Sri Lanka", 0.24331718693936133], ["Sudan", 0.00897021887334051], ["Suriname", 0.004485109436670255], ["Swaziland", 0.0123340509508432], ["Sweden", 1.840016146393972], ["Switzerland", 1.2883476856835308], ["Syrian Arab Republic", 0.041487262289199855], ["Taiwan", 0.2679852888410477], ["Tajikistan", 0.005606386795837818], ["Thailand", 0.24219590958019377], ["The former Yugoslav Republic of Macedonia", 0.057185145317545746], ["Timor-Leste", 0.0022425547183351274], ["Togo", 0.006727664155005382], ["Trinidad and Tobago", 0.02130426982418371], ["Tunisia", 0.11997667743092931], ["Turkey", 0.9878453534266236], ["Turkmenistan", 0.011212773591675636], ["Uganda", 0.06727664155005382], ["Ukraine", 0.9788751345532831], ["United Arab Emirates", 0.19958736993182633], ["United Kingdom of Great Britain and Northern Ireland", 6.225331898098314], ["United Republic of Tanzania", 0.040365984930032295], ["United States of America", 20.90845891639756], ["Uruguay", 0.14912988876928598], ["Uzbekistan", 0.07176175098672408], ["Venezuela, Bolivarian Republic of...", 0.11885540007176175], ["Viet Nam", 0.4372981700753498], ["Yemen", 0.022425547183351272], ["Zambia", 0.029153211338356657], ["Zimbabwe", 0.03812343021169717]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often do the age groups occur?", "labels": [{"query": "SELECT Age, COUNT(Age) FROM Responses GROUP BY Age", "results": [["18-24 years old", 17931], ["25-34 years old", 33247], ["35-44 years old", 20532], ["45-54 years old", 8334], ["55-64 years old", 3392], ["65 years or older", 1171], ["Prefer not to say", 449], ["Under 18 years old", 4128]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the percentages of professional developers using the various programing languages?", "labels": [{"query": "SELECT Languages.name, COUNT(Languages.id) * 100.0 / (SELECT COUNT(DISTINCT Responses.id) FROM Response_LanguageHaveWorkedWith JOIN Responses ON Responses.id = Response_LanguageHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession') FROM Languages JOIN Response_LanguageHaveWorkedWith ON Languages.id = Response_LanguageHaveWorkedWith.Languages_id JOIN Responses ON Responses.id = Response_LanguageHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY Languages.name", "results": [["APL", 0.15836732254642702], ["Ada", 0.6528916976678171], ["Apex", 0.6439275095991513], ["Assembly", 4.428308905920846], ["Bash/Shell (all shells)", 32.80295220593728], ["C", 16.685342058476387], ["C#", 29.215782947126232], ["C++", 20.24412472173666], ["Clojure", 1.3849670566088477], ["Cobol", 0.5707199737050483], ["Crystal", 0.4243049019168422], ["Dart", 6.140468827035991], ["Delphi", 3.234577861443533], ["Elixir", 2.6384593548772655], ["Erlang", 1.0906428816876579], ["F#", 1.0353637219308862], ["Flow", 0.24950323457786144], ["Fortran", 0.6887484499424797], ["GDScript", 1.3162416147490774], ["Go", 14.347183003899422], ["Groovy", 3.8814934337322398], ["HTML/CSS", 52.92755442009173], ["Haskell", 1.804789864491357], ["Java", 30.543976812633527], ["JavaScript", 65.94056743310475], ["Julia", 0.7813783933186919], ["Kotlin", 9.712697772399265], ["Lisp", 1.3356640222311864], ["Lua", 5.206699236549983], ["MATLAB", 2.983580595520894], ["Nim", 0.31822867643763164], ["OCaml", 0.6319752588409305], ["Objective-C", 2.6070846966369357], ["PHP", 19.063839959362348], ["Perl", 2.339653085921743], ["PowerShell", 13.6345300524405], ["Prolog", 0.7634500171813605], ["Python", 45.400624505102115], ["R", 3.171828544962873], ["Raku", 0.13894491506431805], ["Ruby", 6.95471590993979], ["Rust", 12.23163461969432], ["SAS", 0.4004004004004004], ["SQL", 51.6083247426531], ["Scala", 3.215155453961424], ["Solidity", 1.4028954327461791], ["Swift", 4.972136315419897], ["TypeScript", 43.825915467706515], ["VBA", 2.9029029029029028], ["Visual Basic (.Net)", 3.926314374075568], ["Zig", 0.7051827947350335]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often are the various databases used?", "labels": [{"query": "SELECT Databases.name, COUNT(Databases.id) FROM Databases JOIN Response_DatabaseHaveWorkedWith ON Databases.id = Response_DatabaseHaveWorkedWith.Databases_id GROUP BY Databases.name", "results": [["BigQuery", 3456], ["Cassandra", 1927], ["Clickhouse", 849], ["Cloud Firestore", 4901], ["Cockroachdb", 795], ["Cosmos DB", 2672], ["Couch DB", 887], ["Couchbase", 598], ["Datomic", 244], ["DuckDB", 469], ["Dynamodb", 6798], ["Elasticsearch", 10263], ["Firebase Realtime Database", 4939], ["Firebird", 1152], ["H2", 2808], ["IBM DB2", 1414], ["InfluxDB", 2091], ["MariaDB", 13495], ["Microsoft Access", 3257], ["Microsoft SQL Server", 19506], ["MongoDB", 19556], ["MySQL", 31489], ["Neo4J", 1432], ["Oracle", 7507], ["PostgreSQL", 34909], ["RavenDB", 227], ["Redis", 15639], ["SQLite", 23678], ["Snowflake", 1820], ["Solr", 1189], ["Supabase", 2122], ["TiDB", 157]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents learning to code are using each of the cloud platforms?", "labels": [{"query": "SELECT Platforms.name, COUNT(Platforms.id) FROM Platforms JOIN Response_PlatformHaveWorkedWith ON Platforms.id = Response_PlatformHaveWorkedWith.Platforms_id JOIN Responses ON Responses.id = Response_PlatformHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY Platforms.name", "results": [["Amazon Web Services (AWS)", 654], ["Cloudflare", 420], ["Colocation", 20], ["Digital Ocean", 247], ["Firebase", 628], ["Fly.io", 72], ["Google Cloud", 652], ["Heroku", 492], ["Hetzner", 67], ["IBM Cloud Or Watson", 53], ["Linode, now Akamai", 125], ["Managed Hosting", 63], ["Microsoft Azure", 370], ["Netlify", 498], ["OVH", 76], ["OpenShift", 22], ["OpenStack", 53], ["Oracle Cloud Infrastructure (OCI)", 123], ["Render", 132], ["Scaleway", 17], ["VMware", 262], ["Vercel", 487], ["Vultr", 55]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the usage percentages of the web frameworks?", "labels": [{"query": "SELECT WebFrameworks.name, COUNT(WebFrameworks.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_WebframeHaveWorkedWith) FROM WebFrameworks JOIN Response_WebframeHaveWorkedWith ON WebFrameworks.id = Response_WebframeHaveWorkedWith.WebFrameworks_id GROUP BY WebFrameworks.id", "results": [["Next.js", 17.88520720666886], ["React", 43.52833965759359], ["Remix", 1.3624548089276645], ["Vue.js", 17.565508380889778], ["Deno", 2.535181810033165], ["Elm", 0.8664734530461023], ["Nuxt.js", 3.9618751680659714], ["Svelte", 7.100600555738145], ["Node.js", 45.75278616032747], ["Ruby on Rails", 5.886043801726971], ["WordPress", 14.34760524664615], ["Express", 20.680331052615852], ["Gatsby", 2.5023155756072786], ["NestJS", 5.499118587349487], ["Angular", 18.729271863515493], ["AngularJS", 7.732528608563148], ["jQuery", 23.580029280827034], ["Phoenix", 2.193074188054618], ["Solid.js", 1.4625474319519556], ["FastAPI", 7.955122650811198], ["Fastify", 2.202037706534405], ["Flask", 13.047895067076997], ["ASP.NET CORE", 17.771669305924885], ["Qwik", 0.5811347814395411], ["Spring Boot", 12.822313185335684], ["Laravel", 8.126923421673787], ["Symfony", 3.4375093369984167], ["Django", 12.306910872747917], ["ASP.NET", 13.721652872807672], ["Blazor", 5.23021303295587], ["CodeIgniter", 1.849472646329439], ["Drupal", 2.006334219725716], ["Play Framework", 0.81418626191401], ["Lit", 0.7320206758492934]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents have worked with miscellaneous technology?", "labels": [{"query": "SELECT MiscTech.name, COUNT(MiscTech.id) FROM MiscTech JOIN Response_MiscTechHaveWorkedWith ON MiscTech.id = Response_MiscTechHaveWorkedWith.MiscTech_id GROUP BY MiscTech.name", "results": [[".NET (5+) ", 17005], [".NET Framework (1.0 - 4.8)", 11452], [".NET MAUI", 1573], ["Apache Kafka", 5984], ["Apache Spark", 2748], ["CUDA", 3042], ["Capacitor", 1127], ["Cordova", 1616], ["Electron", 4685], ["Flutter", 6132], ["GTK", 1690], ["Hadoop", 1539], ["Hugging Face Transformers", 1852], ["Ionic", 1948], ["JAX", 641], ["Keras", 2839], ["Ktor", 740], ["MFC", 671], ["Micronaut", 441], ["NumPy", 13614], ["OpenGL", 4664], ["Opencv", 5455], ["Pandas", 12756], ["Qt", 4401], ["Quarkus", 763], ["RabbitMQ", 6942], ["React Native", 5667], ["Scikit-Learn", 6339], ["Spring Framework", 7460], ["SwiftUI", 2643], ["Tauri", 1516], ["TensorFlow", 6405], ["Tidyverse", 1045], ["Torch/PyTorch", 5884], ["Uno Platform", 357], ["Xamarin", 2233]]}, {"query": "SELECT COUNT(DISTINCT Response_id) AS Respondents_Worked_With_MiscTech FROM Response_MiscTechHaveWorkedWith", "results": [[57019]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much are the tools used in % by developers learning to code?", "labels": [{"query": "SELECT TechTools.name, COUNT(TechTools.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_ToolsTechHaveWorkedWith) FROM TechTools JOIN Response_ToolsTechHaveWorkedWith ON TechTools.id = Response_ToolsTechHaveWorkedWith.TechTools_id JOIN Responses ON Responses.id = Response_ToolsTechHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY TechTools.name", "results": [["APT", 0.3826203071234143], ["Ansible", 0.12454419392943351], ["Ant", 0.0757536849673874], ["Boost.Test", 0.030815058291818603], ["Bun", 0.05007446972420523], ["CMake", 0.7678085357711468], ["CUTE", 0.014123568383750193], ["Cargo", 0.6971906938523958], ["Catch2", 0.03723486210261415], ["Chef", 0.02439525448102306], ["Chocolatey", 0.39160803245852804], ["Composer", 0.20286580042113914], ["Dagger", 0.03209901905397771], ["Docker", 1.19536746957013], ["ELFspy", 0.012839607621591084], ["GNU GCC", 0.9937856299111499], ["Godot", 0.23239689795079863], ["Google Test", 0.09244517487545581], ["Gradle", 0.5662266961121668], ["Homebrew", 0.4724975604745519], ["Kubernetes", 0.19259411432386625], ["LLVM's Clang", 0.3813363463612552], ["MSBuild", 0.14765548764829747], ["MSVC", 0.20158183965898002], ["Make", 0.6817831647064866], ["Maven (build tool)", 0.5610908530635303], ["Meson", 0.0757536849673874], ["Ninja", 0.1669148990806841], ["Nix", 0.09758101792409224], ["NuGet", 0.3543731703559139], ["Pacman", 0.5187201479122798], ["Pip", 1.7038159313851369], ["Podman", 0.08088952801602384], ["Pulumi", 0.011555646859431976], ["Puppet", 0.023111293718863953], ["QMake", 0.059062195059318985], ["SCons", 0.017975450670227516], ["Terraform", 0.07832160649170561], ["Unity 3D", 0.6561039494633044], ["Unreal Engine", 0.2760515638642083], ["Visual Studio Solution", 0.6984746546145549], ["Vite", 0.9167479841816034], ["Wasmer", 0.023111293718863953], ["Webpack", 0.5649427353500077], ["Yarn", 0.5983257151661445], ["bandit", 0.020543372194545734], ["build2", 0.011555646859431976], ["cppunit", 0.020543372194545734], ["doctest", 0.03338297981613682], ["lest", 0.011555646859431976], ["liblittletest", 0.008987725335113758], ["npm", 2.309845411124236], ["pnpm", 0.32740999435057266], ["snitch", 0.010271686097272867], ["tunit", 0.012839607621591084]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much are the various IDEs used?", "labels": [{"query": "SELECT NewCollabTools.name, COUNT(NewCollabTools.id) FROM NewCollabTools JOIN Response_NEWCollabToolsHaveWorkedWith ON NewCollabTools.id = Response_NEWCollabToolsHaveWorkedWith.NewCollabTools_id GROUP BY NewCollabTools.name", "results": [["Android Studio", 14553], ["Atom", 4874], ["BBEdit", 722], ["CLion", 4240], ["Code::Blocks", 2077], ["DataGrip", 4396], ["Eclipse", 8565], ["Emacs", 4058], ["Fleet", 1642], ["Geany", 841], ["Goland", 2795], ["Helix", 1391], ["IPython", 4226], ["IntelliJ IDEA", 23209], ["Jupyter Notebook/JupyterLab", 11024], ["Kate", 1367], ["Micro", 551], ["Nano", 7769], ["Neovim", 10282], ["Netbeans", 2760], ["Notepad++", 21240], ["Nova", 250], ["PhpStorm", 5274], ["PyCharm", 12658], ["Qt Creator", 2031], ["RStudio", 2343], ["Rad Studio (Delphi, C++ Builder)", 1961], ["Rider", 4819], ["RubyMine", 1115], ["Spyder", 1273], ["Sublime Text", 10914], ["TextMate", 592], ["VSCodium", 3627], ["Vim", 19294], ["Visual Studio", 24605], ["Visual Studio Code", 63793], ["WebStorm", 6388], ["Xcode", 8180], ["condo", 152]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which async tools are used by what percentage of professional coders?", "labels": [{"query": "SELECT OfficeStackAsync.name, COUNT(OfficeStackAsync.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_OfficeStackAsyncHaveWorkedWith) FROM OfficeStackAsync JOIN Response_OfficeStackAsyncHaveWorkedWith ON OfficeStackAsync.id = Response_OfficeStackAsyncHaveWorkedWith.OfficeStackAsync_id JOIN Responses ON Responses.id = Response_OfficeStackAsyncHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY OfficeStackAsync.name", "results": [["Adobe Workfront", 0.2793457808655377], ["Airtable", 1.7846287451150673], ["Asana", 4.491243305832971], ["Azure Devops", 14.612823852945434], ["Basecamp", 1.4184397163120568], ["Cerri", 0.040526849037487336], ["Clickup", 3.556231003039514], ["Confluence", 32.18266029816182], ["Dingtalk (Teambition)", 0.0911854103343465], ["Document360", 0.16066000868432478], ["Doxygen", 3.0076711535678102], ["GitHub Discussions", 13.187147199305254], ["Jira", 49.49341438703141], ["Leankor", 0.036184686640613695], ["Linear", 1.9669995657837602], ["Markdown File", 21.346070343030828], ["Microsoft Lists", 0.6600086843247938], ["Microsoft Planner", 1.6254161238963671], ["Miro", 13.462150817773917], ["Monday.com", 2.2680561586336663], ["Notion", 15.209147488782747], ["Nuclino", 0.19684469532493848], ["Planview Projectplace Or Clarizen", 0.0694745983499783], ["Redmine", 2.4026631929367492], ["Redocly", 0.2619771312780431], ["Shortcut", 0.8814589665653495], ["Smartsheet", 0.7685627442466348], ["Stack Overflow for Teams", 2.1131856998118397], ["Swit", 0.09842234766246924], ["Tettra", 0.0940801852655956], ["Trello", 16.27008250108554], ["Wikis", 6.148501953973079], ["Wimi", 0.041974236503111884], ["Workzone", 0.07381676074685194], ["Wrike", 0.4313214647561152], ["YouTrack", 2.0827905630337242]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of respondents who code professionally use which sync tools?", "labels": [{"query": "SELECT OfficeStackSync.name, COUNT(OfficeStackSync.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_OfficeStackSyncHaveWorkedWith) FROM OfficeStackSync JOIN Response_OfficeStackSyncHaveWorkedWith ON OfficeStackSync.id = Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id JOIN Responses ON Responses.id = Response_OfficeStackSyncHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY OfficeStackSync.name", "results": [["Cisco Webex Teams", 5.433909802370594], ["Coolfire Core", 0.03835137046225386], ["Discord", 27.73163628519038], ["Google Chat", 8.709356535912463], ["Google Meet", 30.005153465405865], ["IRC", 2.030225673845564], ["Jitsi", 2.8308105322451134], ["Matrix", 2.1704478720981797], ["Mattermost", 3.2299044811179423], ["Microsoft Teams", 42.59758626062153], ["Ringcentral", 0.41227723246922904], ["Rocketchat", 1.3962295808914296], ["Signal", 8.886731624300387], ["Skype", 10.950514747300423], ["Slack", 41.98875825453325], ["Symphony", 0.3175972866405398], ["Telegram", 13.967089730222078], ["Unify Circuit", 0.05393161471254449], ["Whatsapp", 22.06042737808459], ["Wickr", 0.16898572609930607], ["Wire", 0.2097340572154508], ["Zoom", 35.80579824782176], ["Zulip", 1.0175097975766727]]}, {"query": "SELECT OfficeStackSync.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE ResponderDescription = 'I am a developer by profession') AS Percentage FROM Response_OfficeStackSyncHaveWorkedWith JOIN Responses ON Responses.id = Response_OfficeStackSyncHaveWorkedWith.Response_id JOIN OfficeStackSync ON OfficeStackSync.id = Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY OfficeStackSync.Name", "results": [["Cisco Webex Teams", 6.743310974612193], ["Coolfire Core", 0.04759284322619986], ["Discord", 34.414087481594954], ["Google Chat", 10.808037241399825], ["Google Meet", 37.23545071909812], ["IRC", 2.519446138286955], ["Jitsi", 3.5129467406338772], ["Matrix", 2.6934574713327484], ["Mattermost", 4.008209765456519], ["Microsoft Teams", 52.86226333715068], ["Ringcentral", 0.5116230646816485], ["Rocketchat", 1.7326769487038387], ["Signal", 11.028154141320998], ["Skype", 13.589244017430879], ["Slack", 52.10672695093475], ["Symphony", 0.3941282329669676], ["Telegram", 17.332718592441662], ["Unify Circuit", 0.06692743578684356], ["Whatsapp", 27.37629578952065], ["Wickr", 0.20970596546544312], ["Wire", 0.2602733613932805], ["Zoom", 44.433868257060844], ["Zulip", 1.2626976218451151]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much is each OS used professionally and non-professionally?", "labels": [{"query": "SELECT OperatingSystems.name, COUNT(OperatingSystems.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM \"Response_OpSysPersonalUse\"), count2 FROM OperatingSystems JOIN \"Response_OpSysPersonalUse\" ON OperatingSystems.id = \"Response_OpSysPersonalUse\".\"OperatingSystems_id\" JOIN (SELECT \"OperatingSystems\".name AS name2, COUNT(\"OperatingSystems\".id) * 100.0 / ((SELECT COUNT(DISTINCT Response_id) FROM \"Response_OpSysProfessionalUse\")) AS count2 FROM \"OperatingSystems\" JOIN \"Response_OpSysProfessionalUse\" ON \"OperatingSystems\".id = \"Response_OpSysProfessionalUse\".\"OperatingSystems_id\" GROUP BY \"OperatingSystems\".id) ON OperatingSystems.name = name2 GROUP BY OperatingSystems.id", "results": [["iOS", 11.826888639855818, 8.180742361968264], ["iPadOS", 5.725706759707476, 3.0768447707636124], ["MacOS", 32.81883614265744, 36.62946797816433], ["Windows", 60.17537576394746, 52.065863310725696], ["Windows Subsystem for Linux (WSL)", 16.994581605185022, 17.3998243984374], ["Other Linux-based", 8.220016867497717, 8.54085281280619], ["Other (Please Specify):", 2.38224522568943, 2.163207655210149], ["Ubuntu", 27.485934124334253, 29.624492600557343], ["Fedora", 4.404034335755629, 3.3873286930408337], ["Red Hat", 2.153494229236226, 5.144616794126255], ["Arch", 8.12066037408875, 4.846857622762035], ["Debian", 8.453389096202502, 8.98240166948732], ["Android", 17.72589160899754, 9.13000878007813], ["ChromeOS", 1.8900839908961724, 1.1795844096351813], ["Cygwin", 1.0490197211086336, 1.0243424484965706], ["BSD", 0.9693034647688806, 0.6578696222021454], ["Solaris", 0.32348625761059185, 0.40464707903342795], ["AIX", 0.2899823237866377, 0.4517286574115312], ["Haiku", 0.20333421906951488, 0.0941631567562065]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents that are learning programming use AI search tools by specific tool?", "labels": [{"query": "SELECT AISearch.name, COUNT(AISearch.id) FROM AISearch JOIN Response_AISearchHaveWorkedWith ON AISearch.id = Response_AISearchHaveWorkedWith.AISearch_id JOIN Responses ON Responses.id = Response_AISearchHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY AISearch.name", "results": [["Andi", 41], ["Bing AI", 1210], ["ChatGPT", 3585], ["Google Bard AI", 555], ["Metaphor", 28], ["Neeva AI", 40], ["Perplexity AI", 89], ["Phind", 202], ["Quora Poe", 106], ["WolframAlpha", 615], ["You.com", 192]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of respondents use AI developer tools by specific tool?", "labels": [{"query": "SELECT AIDev.name, COUNT(AIDev.id) * 100.0 / (SELECT COUNT(*) FROM Responses) FROM AIDev JOIN Response_AIDevHaveWorkedWith ON AIDev.id = Response_AIDevHaveWorkedWith.AIDev_id GROUP BY AIDev.name", "results": [["AWS CodeWhisperer", 2.3221654108360243], ["Adrenaline", 0.19510226049515608], ["Codeium", 0.5651237890204521], ["GitHub Copilot", 24.75556153570147], ["Mintlify", 0.23658952278435594], ["Replit Ghostwriter", 0.3756279153211338], ["Rubber Duck.AI", 0.1693128812343021], ["Synk Code", 0.6032472192321493], ["Tabnine", 5.822793326157158], ["Whispr AI", 0.5101811984212414]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of respondents want to keep using their current programming language by programming language? ", "labels": [{"query": "SELECT Languages.name, COUNT(Languages.id) * 100.0 / count2 FROM Languages JOIN Response_LanguageHaveWorkedWith ON Response_LanguageHaveWorkedWith.Languages_id = Languages.id JOIN Response_LanguageWantToWorkWith ON Response_LanguageWantToWorkWith.Response_id = Response_LanguageHaveWorkedWith.Response_id AND Response_LanguageWantToWorkWith.Languages_id = Languages.id JOIN (SELECT Languages.name AS name2, COUNT(Languages.id) AS count2 FROM Languages JOIN Response_LanguageHaveWorkedWith ON Response_LanguageHaveWorkedWith.Languages_id = Languages.id GROUP BY Languages.id) ON Languages.name = name2 GROUP BY Languages.id", "results": [["HTML/CSS", 61.904043452021725], ["JavaScript", 57.82700005384933], ["Python", 65.522035312109], ["Bash/Shell (all shells)", 60.3858770413742], ["C#", 62.86529161327657], ["Dart", 58.5624881471648], ["Elixir", 73.12623274161736], ["GDScript", 62.94314381270903], ["Rust", 84.65914063183688], ["Go", 62.44824016563147], ["Haskell", 52.21432476763258], ["OCaml", 53.90879478827362], ["PHP", 41.833599606734666], ["Ruby", 47.68976897689769], ["SQL", 64.25873354761514], ["TypeScript", 71.70470902734937], ["Ada", 40.915805022156576], ["Clojure", 68.50678733031674], ["Java", 44.111821205665805], ["Lisp", 54.54545454545455], ["Raku", 65.38461538461539], ["Scala", 52.270850536746494], ["Swift", 61.419449901768175], ["Zig", 71.33058984910836], ["Julia", 62.772277227722775], ["R", 38.97893030794165], ["PowerShell", 43.320450344479916], ["C++", 49.77080574513599], ["Kotlin", 60.768746061751735], ["Solidity", 46.4041095890411], ["C", 43.293978748524204], ["Assembly", 39.44876919840101], ["Perl", 34.681543468154345], ["Delphi", 62.76933945602261], ["Lua", 47.976011994002995], ["MATLAB", 18.328840970350406], ["Groovy", 29.973118279569892], ["APL", 44.888888888888886], ["VBA", 23.817186997103317], ["Visual Basic (.Net)", 23.26233183856502], ["F#", 57.361601884570085], ["Nim", 53.77643504531722], ["Objective-C", 22.58543833580981], ["Crystal", 48.0719794344473], ["Prolog", 23.969072164948454], ["Cobol", 20.3125], ["Fortran", 24.369747899159663], ["Erlang", 55.184331797235025], ["Apex", 48.01381692573403], ["SAS", 37.47072599531616], ["Flow", 24.766355140186917]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of respondents want to use which programming languages?", "labels": [{"query": "SELECT Languages.name, COUNT(Languages.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_LanguageWantToWorkWith) FROM Languages JOIN Response_LanguageWantToWorkWith ON Response_LanguageWantToWorkWith.Languages_id = Languages.id GROUP BY Languages.id", "results": [["HTML/CSS", 37.08136639036539], ["JavaScript", 43.34832546556146], ["Python", 43.01255126441909], ["Bash/Shell (all shells)", 22.64803181801286], ["C#", 23.03708384442875], ["Dart", 7.503500229218551], ["Elixir", 4.807394466540287], ["GDScript", 1.9390650361174095], ["Rust", 33.094202629198726], ["Go", 22.293672328984375], ["Haskell", 4.163104486488495], ["OCaml", 1.3418577853770954], ["PHP", 9.929499807952025], ["Ruby", 5.3191093930044975], ["SQL", 36.672490056870984], ["TypeScript", 39.96580307028956], ["Ada", 0.8177526669888117], ["Clojure", 2.3665266574979245], ["Java", 17.822052063586465], ["Lisp", 2.11252772305443], ["Raku", 0.345686354681634], ["Scala", 3.4320831629681945], ["Swift", 6.674596389498073], ["Zig", 4.518702994709388], ["Julia", 2.7060179162175224], ["R", 3.801310882305567], ["PowerShell", 7.610055879765578], ["C++", 17.63248212714815], ["Kotlin", 13.081564633436171], ["Solidity", 1.9787136502744427], ["C", 12.426123480652715], ["Assembly", 4.745443506919922], ["Perl", 1.335662689415059], ["Delphi", 2.4136093868094015], ["Lua", 5.057676343406559], ["MATLAB", 1.4112428601519038], ["Groovy", 1.5128424339293016], ["APL", 0.5042808113097672], ["VBA", 1.177068232786926], ["Visual Basic (.Net)", 1.672675909749842], ["F#", 2.603179323247717], ["Nim", 1.0048445650423126], ["Objective-C", 1.182024309556555], ["Crystal", 0.7421724962519669], ["Prolog", 0.691372709363268], ["Cobol", 0.4894125810008797], ["Fortran", 0.6294217497429035], ["Erlang", 1.7544511764487232], ["Apex", 0.5959682315479067], ["SAS", 0.4398518133045881], ["Flow", 0.22426247382571957]]}, {"query": "SELECT Languages.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_LanguageWantToWorkWith JOIN Languages ON Response_LanguageWantToWorkWith.Languages_id = Languages.id GROUP BY Languages.Name", "results": [["APL", 0.4563598851811984], ["Ada", 0.740043057050592], ["Apex", 0.5393344097595981], ["Assembly", 4.294492285611769], ["Bash/Shell (all shells)", 20.495828848223898], ["C", 11.245290635091497], ["C#", 20.847909939002513], ["C++", 15.9568980983136], ["Clojure", 2.1416397560100466], ["Cobol", 0.4429045568711877], ["Crystal", 0.6716451381413706], ["Dart", 6.790455687118766], ["Delphi", 2.184248295658414], ["Elixir", 4.350556153570147], ["Erlang", 1.5877287405812701], ["F#", 2.355803731611051], ["Flow", 0.20295120200932903], ["Fortran", 0.5696088984571224], ["GDScript", 1.754799067097237], ["Go", 20.175143523501973], ["Groovy", 1.3690796555435953], ["HTML/CSS", 33.557588805166844], ["Haskell", 3.767491926803014], ["Java", 16.128453534266235], ["JavaScript", 39.22900968783638], ["Julia", 2.448869752421959], ["Kotlin", 11.838446358091137], ["Lisp", 1.911777897380696], ["Lua", 4.577054180121995], ["MATLAB", 1.2771349120918551], ["Nim", 0.9093559382848941], ["OCaml", 1.2143433799784715], ["Objective-C", 1.0696986006458558], ["PHP", 8.985916756368855], ["Perl", 1.2087369931826337], ["PowerShell", 6.886885540007176], ["Prolog", 0.6256727664155005], ["Python", 38.92514352350197], ["R", 3.4400789379260854], ["Raku", 0.31283638320775026], ["Ruby", 4.813643702906351], ["Rust", 29.949318263365626], ["SAS", 0.3980534625044851], ["SQL", 33.18756727664155], ["Scala", 3.1059382848941515], ["Solidity", 1.7906799425905993], ["Swift", 6.040321133835666], ["TypeScript", 36.167922497308936], ["VBA", 1.0652134912091855], ["Visual Basic (.Net)", 1.513724434876211], ["Zig", 4.089298528884105]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of users want to keep using their current DB by DB? ", "labels": [{"query": "SELECT Databases.name, COUNT(Databases.id) * 100.0 / count2 FROM Databases JOIN Response_DatabaseHaveWorkedWith ON Response_DatabaseHaveWorkedWith.Databases_id = Databases.id JOIN Response_DatabaseWantToWorkWith ON Response_DatabaseWantToWorkWith.Response_id = Response_DatabaseHaveWorkedWith.Response_id AND Response_DatabaseWantToWorkWith.Databases_id = Databases.id JOIN (SELECT Databases.name AS name2, COUNT(Databases.id) AS count2 FROM Databases JOIN Response_DatabaseHaveWorkedWith ON Response_DatabaseHaveWorkedWith.Databases_id = Databases.id GROUP BY Databases.id) ON Databases.name = name2 GROUP BY Databases.id", "results": [["Supabase", 62.158341187558904], ["Firebase Realtime Database", 45.71775663089694], ["PostgreSQL", 71.31685238763643], ["Redis", 69.9213504699789], ["BigQuery", 50.491898148148145], ["Elasticsearch", 49.97564065088181], ["MongoDB", 55.2106770300675], ["Cloud Firestore", 52.49948990002041], ["MariaDB", 53.153019636902556], ["Microsoft SQL Server", 54.66010458320517], ["MySQL", 50.77011019721172], ["SQLite", 58.957682236675396], ["Datomic", 70.49180327868852], ["Dynamodb", 49.94115916446014], ["Cockroachdb", 50.18867924528302], ["DuckDB", 65.67164179104478], ["Neo4J", 46.0195530726257], ["Snowflake", 50.879120879120876], ["Cosmos DB", 51.27245508982036], ["Cassandra", 37.00051894135963], ["H2", 41.41737891737892], ["Oracle", 36.03303583322233], ["InfluxDB", 46.43711142993783], ["RavenDB", 45.37444933920705], ["Microsoft Access", 21.277249002149215], ["Clickhouse", 55.35924617196702], ["Firebird", 53.81944444444444], ["IBM DB2", 24.54031117397454], ["Solr", 37.93103448275862], ["Couch DB", 31.567080045095828], ["TiDB", 64.3312101910828], ["Couchbase", 37.123745819397996]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of users want to use which DB? ", "labels": [{"query": "SELECT Databases.name, COUNT(Databases.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_DatabaseWantToWorkWith) FROM Databases JOIN Response_DatabaseWantToWorkWith ON Response_DatabaseWantToWorkWith.Databases_id = Databases.id GROUP BY Databases.id", "results": [["Supabase", 6.473379192592471], ["Firebase Realtime Database", 6.8279949434420715], ["PostgreSQL", 51.79688397826337], ["Redis", 27.794651212424686], ["BigQuery", 5.980857316412471], ["Elasticsearch", 15.99711053832641], ["MongoDB", 27.142880596279817], ["Cloud Firestore", 6.018617326919604], ["MariaDB", 13.654348147296876], ["Microsoft SQL Server", 19.06223834775328], ["MySQL", 29.17207072614142], ["SQLite", 27.799576431186484], ["Datomic", 0.993252450296334], ["Dynamodb", 9.14941471983714], ["Cockroachdb", 3.1045295595212687], ["DuckDB", 1.7484526604390012], ["Neo4J", 3.902414998932869], ["Snowflake", 3.8351036758549357], ["Cosmos DB", 4.45403950025447], ["Cassandra", 6.030109504030471], ["H2", 2.2656006304280014], ["Oracle", 5.806832920162204], ["InfluxDB", 2.718720756513602], ["RavenDB", 0.5516245013216003], ["Microsoft Access", 1.4512977951437342], ["Clickhouse", 2.107993630050401], ["Firebird", 1.4792073681272677], ["IBM DB2", 0.8143028352842672], ["Solr", 1.2723481801316676], ["Couch DB", 1.600696097585001], ["TiDB", 0.6156523452250005], ["Couchbase", 0.9308663459802006]]}, {"query": "SELECT Databases.Name AS \"Database\", COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS \"Percentage\" FROM Response_DatabaseWantToWorkWith JOIN Databases ON Response_DatabaseWantToWorkWith.Databases_id = Databases.id JOIN Responses ON Response_DatabaseWantToWorkWith.Response_id = Responses.id GROUP BY Databases.Name", "results": [["BigQuery", 4.084813419447435], ["Cassandra", 4.118451740222461], ["Clickhouse", 1.4397201291711519], ["Cloud Firestore", 4.110602798708288], ["Cockroachdb", 2.120335486185863], ["Cosmos DB", 3.0420254754216], ["Couch DB", 1.0932454251883745], ["Couchbase", 0.6357642626480086], ["Datomic", 0.678372802296376], ["DuckDB", 1.1941603875134554], ["Dynamodb", 6.248878722640832], ["Elasticsearch", 10.925726587728741], ["Firebase Realtime Database", 4.663392536777898], ["Firebird", 1.0102709006099748], ["H2", 1.547362755651238], ["IBM DB2", 0.5561535701471116], ["InfluxDB", 1.8568353067814856], ["MariaDB", 9.325663796196627], ["Microsoft Access", 0.9912091855041263], ["Microsoft SQL Server", 13.019151417294582], ["MongoDB", 18.53807857911733], ["MySQL", 19.92397739504844], ["Neo4J", 2.665276282741299], ["Oracle", 3.9659580193756727], ["PostgreSQL", 35.37630068173664], ["RavenDB", 0.3767491926803014], ["Redis", 18.983225690706853], ["SQLite", 18.986589522784357], ["Snowflake", 2.619303911015429], ["Solr", 0.8689899533548618], ["Supabase", 4.421196627197704], ["TiDB", 0.42047900968783636]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of users want to keep using their current cloud platform by platform?", "labels": [{"query": "SELECT Platforms.name, COUNT(Platforms.id) * 100.0 / count2 FROM Platforms JOIN Response_PlatformHaveWorkedWith ON Response_PlatformHaveWorkedWith.Platforms_id = Platforms.id JOIN Response_PlatformWantToWorkWith ON Response_PlatformWantToWorkWith.Response_id = Response_PlatformHaveWorkedWith.Response_id AND Response_PlatformWantToWorkWith.Platforms_id = Platforms.id JOIN (SELECT Platforms.name AS name2, COUNT(Platforms.id) AS count2 FROM Platforms JOIN Response_PlatformHaveWorkedWith ON Response_PlatformHaveWorkedWith.Platforms_id = Platforms.id GROUP BY Platforms.id) ON Platforms.name = name2 GROUP BY Platforms.id", "results": [["Amazon Web Services (AWS)", 62.24495830622745], ["Netlify", 52.7296082209377], ["Vercel", 69.18315166195667], ["Fly.io", 64.16009702850212], ["Render", 50.427350427350426], ["Google Cloud", 55.12897782063645], ["OpenStack", 42.37918215613383], ["VMware", 41.39806607574537], ["Vultr", 50.77376565954311], ["Cloudflare", 66.18548919709407], ["Heroku", 21.966977745872217], ["Firebase", 54.45590558498281], ["Digital Ocean", 53.03796107108291], ["Linode, now Akamai", 49.98185117967332], ["Microsoft Azure", 59.93371996685998], ["IBM Cloud Or Watson", 32.20973782771536], ["Oracle Cloud Infrastructure (OCI)", 55.0828729281768], ["Hetzner", 70.08797653958945], ["OpenShift", 49.371633752244165], ["OVH", 50.33641715727502], ["Managed Hosting", 55.23329129886507], ["Colocation", 56.53923541247485], ["Scaleway", 53.02547770700637]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of users want to use a cloud platform by cloud platform?", "labels": [{"query": "SELECT Platforms.name, COUNT(Platforms.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_PlatformWantToWorkWith) FROM Platforms JOIN Response_PlatformWantToWorkWith ON Response_PlatformWantToWorkWith.Platforms_id = Platforms.id GROUP BY Platforms.id", "results": [["Amazon Web Services (AWS)", 53.22951586497232], ["Netlify", 8.854369688937398], ["Vercel", 15.976066110548063], ["Fly.io", 5.122008263818508], ["Render", 2.2686520620565993], ["Google Cloud", 27.231620799875262], ["OpenStack", 2.3076323380369534], ["VMware", 5.135651360411631], ["Vultr", 2.097138847743042], ["Cloudflare", 19.400483355422157], ["Heroku", 5.558587354798472], ["Firebase", 16.30155141498402], ["Digital Ocean", 13.902315428393234], ["Linode, now Akamai", 5.470881733842676], ["Microsoft Azure", 28.629063693770952], ["IBM Cloud Or Watson", 1.3974428938956889], ["Oracle Cloud Infrastructure (OCI)", 2.9332657675216343], ["Hetzner", 5.482575816636782], ["OpenShift", 2.841662118967802], ["OVH", 2.9936851952911825], ["Managed Hosting", 2.9819911124970764], ["Colocation", 0.8926483199501053], ["Scaleway", 1.1460201138224058]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many users in % who are using a web technology want to keep using it by web technology?", "labels": [{"query": "SELECT WebFrameworks.name, COUNT(WebFrameworks.id) * 100.0 / count2 FROM WebFrameworks JOIN Response_WebFrameHaveWorkedWith ON Response_WebFrameHaveWorkedWith.WebFrameworks_id = WebFrameworks.id JOIN Response_WebFrameWantToWorkWith ON Response_WebFrameWantToWorkWith.Response_id = Response_WebFrameHaveWorkedWith.Response_id AND Response_WebFrameWantToWorkWith.WebFrameworks_id = WebFrameworks.id JOIN (SELECT WebFrameworks.name AS name2, COUNT(WebFrameworks.id) AS count2 FROM WebFrameworks JOIN Response_WebFrameHaveWorkedWith ON Response_WebFrameHaveWorkedWith.WebFrameworks_id = WebFrameworks.id GROUP BY WebFrameworks.id) ON WebFrameworks.name = name2 GROUP BY WebFrameworks.id", "results": [["Next.js", 65.95389241563649], ["React", 63.609843154751694], ["Remix", 57.01754385964912], ["Vue.js", 57.86698418098316], ["Deno", 63.81850324101355], ["Elm", 53.10344827586207], ["Nuxt.js", 57.23981900452489], ["Svelte", 74.50031559015359], ["Node.js", 64.62809377652975], ["Ruby on Rails", 52.96954314720812], ["WordPress", 32.517700957934196], ["Express", 54.25846998482988], ["Gatsby", 28.65671641791045], ["NestJS", 60.20103232817169], ["Angular", 50.753768844221106], ["AngularJS", 19.223338485316848], ["jQuery", 32.89406994424734], ["Phoenix", 82.08446866485014], ["Solid.js", 71.70582226762002], ["FastAPI", 64.48826291079813], ["Fastify", 57.801899592944366], ["Flask", 45.362949393176095], ["ASP.NET CORE", 70.88937457969065], ["Qwik", 66.58097686375321], ["Spring Boot", 59.489688919958056], ["Laravel", 52.62867647058823], ["Symfony", 51.890482398956976], ["Django", 50.50983248361253], ["ASP.NET", 38.258029395753944], ["Blazor", 61.01113967437875], ["CodeIgniter", 25.525040387722132], ["Drupal", 25.688756515264334], ["Play Framework", 33.76146788990825], ["Lit", 55.714285714285715]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many users in % want to use a web technology by web technology?", "labels": [{"query": "SELECT WebFrameworks.name, COUNT(WebFrameworks.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_WebFrameWantToWorkWith) FROM WebFrameworks JOIN Response_WebFrameWantToWorkWith ON Response_WebFrameWantToWorkWith.WebFrameworks_id = WebFrameworks.id GROUP BY WebFrameworks.id", "results": [["Next.js", 24.900865335471703], ["React", 42.473696269011825], ["Remix", 3.9636241870957507], ["Vue.js", 21.15049082673904], ["Deno", 8.522937558379303], ["Elm", 1.7976419167797537], ["Nuxt.js", 5.9762781762746515], ["Svelte", 17.27674873548228], ["Node.js", 40.582647468320964], ["Ruby on Rails", 6.170141520241096], ["WordPress", 6.970268412611691], ["Express", 16.064221638673974], ["Gatsby", 1.8751872543663313], ["NestJS", 7.266350610669534], ["Angular", 16.49424578347227], ["AngularJS", 4.663294619411008], ["jQuery", 10.288856382510001], ["Phoenix", 3.9865353095645126], ["Solid.js", 6.076734636329991], ["FastAPI", 10.419273541178336], ["Fastify", 2.897375795280309], ["Flask", 9.716078320790963], ["ASP.NET CORE", 17.729684002749334], ["Qwik", 3.819107876138947], ["Spring Boot", 11.608889515517879], ["Laravel", 7.091873601099734], ["Symfony", 2.803968911369204], ["Django", 12.239826580426852], ["ASP.NET", 7.766870516910171], ["Blazor", 8.024180046174724], ["CodeIgniter", 0.8036516804427134], ["Drupal", 0.9340688391110484], ["Play Framework", 0.5956891841878007], ["Lit", 1.1138330307890238]]}, {"query": "SELECT WebFrameworks.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_WebframeWantToWorkWith JOIN WebFrameworks ON Response_WebframeWantToWorkWith.WebFrameworks_id = WebFrameworks.id GROUP BY WebFrameworks.Name", "results": [["ASP.NET", 4.941469321851454], ["ASP.NET CORE", 11.28005023322569], ["Angular", 10.494034804449228], ["AngularJS", 2.9668998923573735], ["Blazor", 5.1051758162899175], ["CodeIgniter", 0.511302475780409], ["Deno", 5.422497308934338], ["Django", 7.78727125941873], ["Drupal", 0.5942770003588087], ["Elm", 1.143702906350915], ["Express", 10.220443128812343], ["FastAPI", 6.628991747398636], ["Fastify", 1.8433799784714746], ["Flask", 6.181602081090778], ["Gatsby", 1.1930391101542879], ["Laravel", 4.5120200932902765], ["Lit", 0.7086472909939002], ["NestJS", 4.6230265518478655], ["Next.js", 15.842527807678508], ["Node.js", 25.819653749551488], ["Nuxt.js", 3.8022515249372084], ["Phoenix", 2.536329386437029], ["Play Framework", 0.3789917473986365], ["Qwik", 2.4298080373161106], ["React", 27.022784355938285], ["Remix", 2.5217527807678506], ["Ruby on Rails", 3.9255920344456405], ["Solid.js", 3.86616433440976], ["Spring Boot", 7.385853964836742], ["Svelte", 10.991881951919627], ["Symfony", 1.783952278435594], ["Vue.js", 13.456449587369931], ["WordPress", 4.434651955507714], ["jQuery", 6.546017222820237]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of participants want to keep using a framework they are currently using by framework?", "labels": [{"query": "SELECT MiscTech.name, COUNT(MiscTech.id) * 100.0 / count2 FROM MiscTech JOIN Response_MiscTechHaveWorkedWith ON Response_MiscTechHaveWorkedWith.MiscTech_id = MiscTech.id JOIN Response_MiscTechWantToWorkWith ON Response_MiscTechWantToWorkWith.Response_id = Response_MiscTechHaveWorkedWith.Response_id AND Response_MiscTechWantToWorkWith.MiscTech_id = MiscTech.id JOIN (SELECT MiscTech.name AS name2, COUNT(MiscTech.id) AS count2 FROM MiscTech JOIN Response_MiscTechHaveWorkedWith ON Response_MiscTechHaveWorkedWith.MiscTech_id = MiscTech.id GROUP BY MiscTech.id) ON MiscTech.name = name2 GROUP BY MiscTech.id", "results": [["Electron", 39.786552828175026], ["React Native", 53.99682371625199], ["Tauri", 77.9023746701847], ["Capacitor", 52.44010647737356], ["Uno Platform", 60.50420168067227], ["Xamarin", 23.645320197044335], ["RabbitMQ", 56.122154998559495], ["Spring Framework", 59.128686327077745], ["NumPy", 66.35816071690907], ["Pandas", 63.29570398243963], ["Scikit-Learn", 65.7359204921912], ["TensorFlow", 57.43950039032006], [".NET MAUI", 58.9319771137953], ["Apache Kafka", 63.45254010695187], ["Apache Spark", 55.05822416302766], ["Hugging Face Transformers", 72.73218142548596], ["Ionic", 38.60369609856263], ["JAX", 49.297971918876755], ["Tidyverse", 65.16746411483254], ["Torch/PyTorch", 68.25288919102651], [".NET (5+) ", 70.22640399882387], [".NET Framework (1.0 - 4.8)", 31.356968215158926], ["Flutter", 64.43248532289628], ["GTK", 46.03550295857988], ["Keras", 60.86650228953857], ["CUDA", 59.796186719263645], ["Hadoop", 35.86744639376219], ["MFC", 28.166915052160952], ["OpenGL", 54.75986277873071], ["Qt", 45.33060668029993], ["Opencv", 58.661778185151235], ["SwiftUI", 65.75860764283011], ["Quarkus", 61.07470511140236], ["Micronaut", 52.38095238095238], ["Ktor", 64.72972972972973], ["Cordova", 21.03960396039604]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of participants want to use which framework?", "labels": [{"query": "SELECT MiscTech.name, COUNT(MiscTech.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_MiscTechWantToWorkWith) FROM MiscTech JOIN Response_MiscTechWantToWorkWith ON Response_MiscTechWantToWorkWith.MiscTech_id = MiscTech.id GROUP BY MiscTech.id", "results": [["Electron", 8.741034836065573], ["React Native", 12.862875683060109], ["Tauri", 6.907445355191257], ["Capacitor", 1.953125], ["Uno Platform", 1.171875], ["Xamarin", 2.7856045081967213], ["RabbitMQ", 13.763661202185792], ["Spring Framework", 11.281164617486338], ["NumPy", 22.402237021857925], ["Pandas", 20.502476092896174], ["Scikit-Learn", 11.72088456284153], ["TensorFlow", 19.51630806010929], [".NET MAUI", 8.17964480874317], ["Apache Kafka", 15.146857923497267], ["Apache Spark", 7.005635245901639], ["Hugging Face Transformers", 6.800717213114754], ["Ionic", 2.563609972677596], ["JAX", 1.7695525956284153], ["Tidyverse", 1.7375341530054644], ["Torch/PyTorch", 17.66564207650273], [".NET (5+) ", 29.64694330601093], [".NET Framework (1.0 - 4.8)", 8.22660519125683], ["Flutter", 16.175717213114755], ["GTK", 3.3384562841530054], ["Keras", 6.2350580601092895], ["CUDA", 8.331198770491802], ["Hadoop", 3.475068306010929], ["MFC", 0.510160519125683], ["OpenGL", 10.14344262295082], ["Qt", 6.640625], ["Opencv", 10.489241803278688], ["SwiftUI", 7.4069330601092895], ["Quarkus", 2.576417349726776], ["Micronaut", 1.5304815573770492], ["Ktor", 2.070525956284153], ["Cordova", 1.1014344262295082]]}, {"query": "SELECT WebFrameworks.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_WebframeWantToWorkWith JOIN WebFrameworks ON Response_WebframeWantToWorkWith.WebFrameworks_id = WebFrameworks.id GROUP BY WebFrameworks_id", "results": [["Next.js", 15.842527807678508], ["React", 27.022784355938285], ["Remix", 2.5217527807678506], ["Vue.js", 13.456449587369931], ["Deno", 5.422497308934338], ["Elm", 1.143702906350915], ["Nuxt.js", 3.8022515249372084], ["Svelte", 10.991881951919627], ["Node.js", 25.819653749551488], ["Ruby on Rails", 3.9255920344456405], ["WordPress", 4.434651955507714], ["Express", 10.220443128812343], ["Gatsby", 1.1930391101542879], ["NestJS", 4.6230265518478655], ["Angular", 10.494034804449228], ["AngularJS", 2.9668998923573735], ["jQuery", 6.546017222820237], ["Phoenix", 2.536329386437029], ["Solid.js", 3.86616433440976], ["FastAPI", 6.628991747398636], ["Fastify", 1.8433799784714746], ["Flask", 6.181602081090778], ["ASP.NET CORE", 11.28005023322569], ["Qwik", 2.4298080373161106], ["Spring Boot", 7.385853964836742], ["Laravel", 4.5120200932902765], ["Symfony", 1.783952278435594], ["Django", 7.78727125941873], ["ASP.NET", 4.941469321851454], ["Blazor", 5.1051758162899175], ["CodeIgniter", 0.511302475780409], ["Drupal", 0.5942770003588087], ["Play Framework", 0.3789917473986365], ["Lit", 0.7086472909939002]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many users want to keep using their technical tool in % and by tool?", "labels": [{"query": "SELECT TechTools.name, COUNT(TechTools.id) * 100.0 / count2 FROM TechTools JOIN Response_ToolsTechHaveWorkedWith ON Response_ToolsTechHaveWorkedWith.TechTools_id = TechTools.id JOIN Response_ToolsTechWantToWorkWith ON Response_ToolsTechWantToWorkWith.Response_id = Response_ToolsTechHaveWorkedWith.Response_id AND Response_ToolsTechWantToWorkWith.TechTools_id = TechTools.id JOIN (SELECT TechTools.name AS name2, COUNT(TechTools.id) AS count2 FROM TechTools JOIN Response_ToolsTechHaveWorkedWith ON Response_ToolsTechHaveWorkedWith.TechTools_id = TechTools.id GROUP BY TechTools.id) ON TechTools.name = name2 GROUP BY TechTools.id", "results": [["Docker", 74.98851797239479], ["Kubernetes", 71.27129750982962], ["npm", 59.66825721426948], ["Pip", 59.4605042738714], ["Vite", 78.94469382569662], ["Webpack", 38.25982598259826], ["Yarn", 54.442861214021086], ["Godot", 71.46892655367232], ["pnpm", 71.86258935663224], ["Unity 3D", 55.90721093328538], ["Unreal Engine", 57.453666398066076], ["Cargo", 83.83129983667979], ["Make", 57.19324299238909], ["Nix", 73.4669095324833], ["Homebrew", 67.45622485408285], ["Terraform", 68.46052051168945], ["Bun", 66.7741935483871], ["Chocolatey", 45.24504532186204], ["Maven (build tool)", 50.78041126434883], ["Ansible", 55.107643404132354], ["Dagger", 53.00230946882217], ["Wasmer", 66.35730858468678], ["MSBuild", 59.07276995305164], ["NuGet", 66.03187576624438], ["Podman", 68.74400767018217], ["Visual Studio Solution", 67.77295549314952], ["Gradle", 52.15283003093387], ["Chef", 26.2532981530343], ["CMake", 47.82722058056666], ["GNU GCC", 67.76250249053597], ["LLVM's Clang", 72.00872629635845], ["Ant", 24.71530999578237], ["Boost.Test", 42.98245614035088], ["Composer", 57.468879668049794], ["APT", 66.21107266435986], ["Puppet", 37.0], ["bandit", 58.83977900552486], ["doctest", 65.13994910941476], ["MSVC", 50.5455537370431], ["cppunit", 43.93063583815029], ["Google Test", 60.3448275862069], ["ELFspy", 50.98039215686274], ["Pacman", 71.21212121212122], ["Ninja", 57.547814207650276], ["Meson", 51.71102661596958], ["QMake", 33.5707019328586], ["Catch2", 60.33182503770739], ["Pulumi", 60.09104704097117], ["build2", 35.22012578616352], ["snitch", 47.27272727272727], ["tunit", 49.27536231884058], ["SCons", 33.597883597883595], ["lest", 58.18181818181818], ["CUTE", 40.74074074074074], ["liblittletest", 59.45945945945946]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many users want to work with a specific technical tool in %?", "labels": [{"query": "SELECT TechTools.name, COUNT(TechTools.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_ToolsTechWantToWorkWith) FROM TechTools JOIN Response_ToolsTechWantToWorkWith ON Response_ToolsTechWantToWorkWith.TechTools_id = TechTools.id GROUP BY TechTools.id", "results": [["Docker", 53.781746322184], ["Kubernetes", 28.432994217960918], ["npm", 35.85596135548562], ["Pip", 21.17543731244968], ["Vite", 18.720632364780794], ["Webpack", 10.8848715509039], ["Yarn", 16.005269706506624], ["Godot", 5.072092512625338], ["pnpm", 8.351021005635658], ["Unity 3D", 8.274903022762205], ["Unreal Engine", 7.381980531362073], ["Cargo", 17.829173680743615], ["Make", 14.619044133791993], ["Nix", 3.684403132547757], ["Homebrew", 18.13071799751153], ["Terraform", 15.004025470248115], ["Bun", 3.334553172802459], ["Chocolatey", 5.028178291736808], ["Maven (build tool)", 9.83824928639391], ["Ansible", 9.308351021005636], ["Dagger", 1.1695820829978776], ["Wasmer", 1.8107297079704312], ["MSBuild", 7.655712508233917], ["NuGet", 12.37941886847691], ["Podman", 6.083583400424504], ["Visual Studio Solution", 12.237429554270658], ["Gradle", 10.788260264949132], ["Chef", 0.8358340042450414], ["CMake", 9.558662080070263], ["GNU GCC", 10.549659664788114], ["LLVM's Clang", 7.664495352411623], ["Ant", 1.0949279074873746], ["Boost.Test", 0.37180707018956305], ["Composer", 5.631266925272634], ["APT", 5.802532386737905], ["Puppet", 1.1242040547463954], ["bandit", 0.42450413525580033], ["doctest", 0.5635658347361487], ["MSVC", 2.9320061479909243], ["cppunit", 0.4142574837151431], ["Google Test", 2.757813071799751], ["ELFspy", 0.08929224914001317], ["Pacman", 5.962087389299568], ["Ninja", 3.131083949352265], ["Meson", 1.2837590573080582], ["QMake", 0.6352923955207495], ["Catch2", 0.7889921686306082], ["Pulumi", 1.6160433286979434], ["build2", 0.22835394862036157], ["snitch", 0.09514747859181731], ["tunit", 0.09514747859181731], ["SCons", 0.26787674742003953], ["lest", 0.08343701968820903], ["CUTE", 0.08050940496230696], ["liblittletest", 0.0614799092439435]]}, {"query": "SELECT TechTools.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_ToolsTechWantToWorkWith JOIN TechTools ON Response_ToolsTechWantToWorkWith.TechTools_id = TechTools.id GROUP BY TechTools.Name", "results": [["APT", 4.444743451740223], ["Ansible", 7.130202726946537], ["Ant", 0.8387154646573376], ["Boost.Test", 0.2848044492285612], ["Bun", 2.5542698241837103], ["CMake", 7.321941155364191], ["CUTE", 0.061670254754216], ["Cargo", 13.657158234660926], ["Catch2", 0.6043684965913169], ["Chef", 0.6402493720846789], ["Chocolatey", 3.851587728740581], ["Composer", 4.313554000717618], ["Dagger", 0.8959006099748834], ["Docker", 41.196851453175455], ["ELFspy", 0.06839791890922138], ["GNU GCC", 8.081045927520632], ["Godot", 3.8852260495156083], ["Google Test", 2.11248654467169], ["Gradle", 8.263814137064944], ["Homebrew", 13.888141370649445], ["Kubernetes", 21.77969142447076], ["LLVM's Clang", 5.871008252601364], ["MSBuild", 5.864280588446358], ["MSVC", 2.24591855041263], ["Make", 11.198196986006458], ["Maven (build tool)", 7.536105130965195], ["Meson", 0.9833602439899534], ["Ninja", 2.398412271259419], ["Nix", 2.8222551130247577], ["NuGet", 9.482642626480086], ["Pacman", 4.566962683889487], ["Pip", 16.220398277717976], ["Podman", 4.6600287047003945], ["Pulumi", 1.2378902045209903], ["Puppet", 0.8611410118406889], ["QMake", 0.48663437387872266], ["SCons", 0.20519375672766416], ["Terraform", 11.493092931467528], ["Unity 3D", 6.338580911374238], ["Unreal Engine", 5.654601722282024], ["Visual Studio Solution", 9.373878722640832], ["Vite", 14.340016146393973], ["Wasmer", 1.3870200932902763], ["Webpack", 8.337818442770004], ["Yarn", 12.260046645138141], ["bandit", 0.3251704341585935], ["build2", 0.17491926803013993], ["cppunit", 0.3173214926444205], ["doctest", 0.431691783279512], ["lest", 0.06391280947255112], ["liblittletest", 0.04709364908503767], ["npm", 27.465688912809473], ["pnpm", 6.396887334050951], ["snitch", 0.07288302834589164], ["tunit", 0.07288302834589164]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which IDEs do people want to keep using in %?", "labels": [{"query": "SELECT NewCollabTools.name, COUNT(NewCollabTools.id) * 100.0 / count2 FROM NewCollabTools JOIN Response_NEWCollabToolsHaveWorkedWith ON Response_NEWCollabToolsHaveWorkedWith.NewCollabTools_id = NewCollabTools.id JOIN Response_NEWCollabToolsWantToWorkWith ON Response_NEWCollabToolsWantToWorkWith.Response_id = Response_NEWCollabToolsHaveWorkedWith.Response_id AND Response_NEWCollabToolsWantToWorkWith.NewCollabTools_id = NewCollabTools.id JOIN (SELECT NewCollabTools.name AS name2, COUNT(NewCollabTools.id) AS count2 FROM NewCollabTools JOIN Response_NEWCollabToolsHaveWorkedWith ON Response_NEWCollabToolsHaveWorkedWith.NewCollabTools_id = NewCollabTools.id GROUP BY NewCollabTools.id) ON NewCollabTools.name = name2 GROUP BY NewCollabTools.id", "results": [["Vim", 66.7357727791023], ["Visual Studio Code", 76.97553023058957], ["Emacs", 64.6131099063578], ["Helix", 71.81883537023724], ["IntelliJ IDEA", 66.38803912275411], ["WebStorm", 64.74639949906074], ["Neovim", 81.43357323477923], ["RubyMine", 58.29596412556054], ["Xcode", 49.119804400978], ["DataGrip", 70.51865332120109], ["IPython", 65.87789872219594], ["RStudio", 46.05206999573197], ["Jupyter Notebook/JupyterLab", 61.23911465892598], ["Android Studio", 46.71888957603243], ["Notepad++", 60.27777777777778], ["Code::Blocks", 17.6697159364468], ["Sublime Text", 52.04324720542422], ["Kate", 59.326993416239944], ["condo", 47.36842105263158], ["Goland", 69.01610017889088], ["Geany", 45.5410225921522], ["Spyder", 37.86331500392773], ["PhpStorm", 59.68904057641259], ["Rider", 73.81199418966591], ["Atom", 19.121871153057036], ["BBEdit", 56.094182825484765], ["Eclipse", 27.915936952714535], ["Nano", 57.25318573819024], ["Netbeans", 23.6231884057971], ["PyCharm", 61.518407331331964], ["CLion", 62.12264150943396], ["Fleet", 48.59926918392205], ["VSCodium", 64.26799007444168], ["Qt Creator", 41.21122599704579], ["Rad Studio (Delphi, C++ Builder)", 77.56246812850587], ["Micro", 63.70235934664247], ["TextMate", 48.141891891891895], ["Nova", 61.2], ["Visual Studio", 59.979678927047345]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which IDEs do people want to use in %?", "labels": [{"query": "SELECT NewCollabTools.name, COUNT(NewCollabTools.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_NEWCollabToolsWantToWorkWith) FROM NewCollabTools JOIN Response_NEWCollabToolsWantToWorkWith ON Response_NEWCollabToolsWantToWorkWith.NewCollabTools_id = NewCollabTools.id GROUP BY NewCollabTools.id", "results": [["Vim", 18.488173361687693], ["Visual Studio Code", 65.99955641952276], ["Emacs", 4.284465550757348], ["Helix", 2.362718365536406], ["IntelliJ IDEA", 22.031598585761067], ["WebStorm", 6.7098070424924], ["Neovim", 14.133256793956868], ["RubyMine", 1.152004592362588], ["Xcode", 7.535649519237041], ["DataGrip", 4.658899659486751], ["IPython", 4.086158984461637], ["RStudio", 1.7573614789494971], ["Jupyter Notebook/JupyterLab", 10.54155957677204], ["Android Studio", 11.750968701483385], ["Notepad++", 16.970867199833005], ["Code::Blocks", 0.6418870435361191], ["Sublime Text", 7.8800767133295935], ["Kate", 1.1794022100744954], ["condo", 0.1487299247217837], ["Goland", 3.5695181933228093], ["Geany", 0.581873214262417], ["Spyder", 0.8349750159819437], ["PhpStorm", 4.662813604874167], ["Rider", 5.951806285796292], ["Atom", 1.5851478819032212], ["BBEdit", 0.5988336442745502], ["Eclipse", 3.625618077209096], ["Nano", 5.945283043483934], ["Netbeans", 1.0398048245900142], ["PyCharm", 11.7040013568344], ["CLion", 4.362744458505656], ["Fleet", 2.5349319625826823], ["VSCodium", 4.2675051207452155], ["Qt Creator", 1.6608174927265849], ["Rad Studio (Delphi, C++ Builder)", 2.090046836879803], ["Micro", 0.5244686819136584], ["TextMate", 0.4396665318529922], ["Nova", 0.29485055251862385], ["Visual Studio", 20.554736526243005]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of people who responded want to keep using their current asynchronous communication tool by communication tool?", "labels": [{"query": "SELECT OfficeStackAsync.name, COUNT(OfficeStackAsync.id) * 100.0 / count2 FROM OfficeStackAsync JOIN Response_OfficeStackAsyncHaveWorkedWith ON Response_OfficeStackAsyncHaveWorkedWith.OfficeStackAsync_id = OfficeStackAsync.id JOIN Response_OfficeStackAsyncWantToWorkWith ON Response_OfficeStackAsyncWantToWorkWith.Response_id = Response_OfficeStackAsyncHaveWorkedWith.Response_id AND Response_OfficeStackAsyncWantToWorkWith.OfficeStackAsync_id = OfficeStackAsync.id JOIN (SELECT OfficeStackAsync.name AS name2, COUNT(OfficeStackAsync.id) AS count2 FROM OfficeStackAsync JOIN Response_OfficeStackAsyncHaveWorkedWith ON Response_OfficeStackAsyncHaveWorkedWith.OfficeStackAsync_id = OfficeStackAsync.id GROUP BY OfficeStackAsync.id) ON OfficeStackAsync.name = name2 GROUP BY OfficeStackAsync.id", "results": [["Asana", 36.94812362030905], ["Basecamp", 33.8235294117647], ["GitHub Discussions", 70.19254403932814], ["Jira", 53.100260347484195], ["Linear", 74.02684563758389], ["Notion", 64.27733916985852], ["Trello", 46.935843092176164], ["Markdown File", 81.83171211396375], ["Stack Overflow for Teams", 56.480970766685054], ["Confluence", 50.103865422997025], ["Azure Devops", 62.837475415698194], ["Microsoft Lists", 50.602409638554214], ["Microsoft Planner", 43.50213544844417], ["Miro", 51.67336010709505], ["Redmine", 39.502332814930014], ["Leankor", 60.869565217391305], ["Airtable", 38.49673202614379], ["Doxygen", 53.894893775624304], ["Nuclino", 38.4180790960452], ["Wikis", 64.46681580909768], ["Clickup", 44.57914790439903], ["Monday.com", 30.5776364599894], ["YouTrack", 50.640279394644935], ["Adobe Workfront", 50.833333333333336], ["Smartsheet", 30.095759233926128], ["Tettra", 43.29896907216495], ["Redocly", 53.7037037037037], ["Dingtalk (Teambition)", 50.467289719626166], ["Shortcut", 52.838427947598255], ["Workzone", 52.17391304347826], ["Document360", 45.19774011299435], ["Wrike", 32.975871313672926], ["Swit", 55.26315789473684], ["Planview Projectplace Or Clarizen", 44.44444444444444], ["Wimi", 54.3859649122807], ["Cerri", 54.716981132075475]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of people who responded want to use a specific asynchronous communication tool by communication tool?", "labels": [{"query": "SELECT OfficeStackAsync.name, COUNT(OfficeStackAsync.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_OfficeStackAsyncWantToWorkWith) FROM OfficeStackAsync JOIN Response_OfficeStackAsyncWantToWorkWith ON Response_OfficeStackAsyncWantToWorkWith.OfficeStackAsync_id = OfficeStackAsync.id GROUP BY OfficeStackAsync.id", "results": [["Asana", 3.226466702640344], ["Basecamp", 1.3527343095845041], ["GitHub Discussions", 19.770016560296224], ["Jira", 40.01079210315762], ["Linear", 3.1055207189773553], ["Notion", 18.61265653201347], ["Trello", 13.808309919431368], ["Markdown File", 29.23915672738775], ["Stack Overflow for Teams", 3.8795750144204826], ["Confluence", 23.99940457361889], ["Azure Devops", 15.350836387994715], ["Microsoft Lists", 0.9545429172171259], ["Microsoft Planner", 1.7862791433302943], ["Miro", 10.829317306439908], ["Redmine", 1.6634724522263364], ["Leankor", 0.09675678693039093], ["Airtable", 1.6597510373443984], ["Doxygen", 3.3474126863033327], ["Nuclino", 0.19909569618368902], ["Wikis", 7.111623839383734], ["Clickup", 2.9529427088178926], ["Monday.com", 1.7285972126602533], ["YouTrack", 2.677558007554472], ["Adobe Workfront", 0.5154159611484286], ["Smartsheet", 0.5675157694955623], ["Tettra", 0.11722456878105056], ["Redocly", 0.30143460543698714], ["Dingtalk (Teambition)", 0.13769235063171018], ["Shortcut", 0.8149898591444468], ["Workzone", 0.16560296224624602], ["Document360", 0.23817055244403923], ["Wrike", 0.30887743520086336], ["Swit", 0.2009564036246581], ["Planview Projectplace Or Clarizen", 0.10233890925329811], ["Wimi", 0.0893139571665147], ["Cerri", 0.09675678693039093]]}, {"query": "SELECT OfficeStackAsync.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_OfficeStackAsyncWantToWorkWith JOIN OfficeStackAsync ON Response_OfficeStackAsyncWantToWorkWith.OfficeStackAsync_id = OfficeStackAsync.id GROUP BY OfficeStackAsync.Name", "results": [["Adobe Workfront", 0.31059382848941514], ["Airtable", 1.0001794043774668], ["Asana", 1.9442949407965555], ["Azure Devops", 9.250538213132401], ["Basecamp", 0.8151686401148188], ["Cerri", 0.058306422676713314], ["Clickup", 1.7794671689989237], ["Confluence", 14.462235378543236], ["Dingtalk (Teambition)", 0.08297452457839971], ["Document360", 0.14352350197344815], ["Doxygen", 2.017177969142447], ["GitHub Discussions", 11.913571941155364], ["Jira", 24.11082705418012], ["Leankor", 0.058306422676713314], ["Linear", 1.8714119124506639], ["Markdown File", 17.619752421959095], ["Microsoft Lists", 0.5752152852529602], ["Microsoft Planner", 1.0764262648008611], ["Miro", 6.525834230355221], ["Monday.com", 1.0416666666666667], ["Notion", 11.216137423753139], ["Nuclino", 0.11997667743092931], ["Planview Projectplace Or Clarizen", 0.061670254754216], ["Redmine", 1.002421959095802], ["Redocly", 0.18164693218514533], ["Shortcut", 0.4911194833153929], ["Smartsheet", 0.34198959454610695], ["Stack Overflow for Teams", 2.33786329386437], ["Swit", 0.12109795479009688], ["Tettra", 0.07064047362755652], ["Trello", 8.32099928238249], ["Wikis", 4.285522066738428], ["Wimi", 0.05382131324004306], ["Workzone", 0.09979368496591316], ["Wrike", 0.18613204162181557], ["YouTrack", 1.6135181198421242]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much do people who responded to this survey want to keep using their current synchronous communication tools in % and which tools are they?", "labels": [{"query": "SELECT OfficeStackSync.name, COUNT(OfficeStackSync.id) * 100.0 / count2 FROM OfficeStackSync JOIN Response_OfficeStackSyncHaveWorkedWith ON Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id = OfficeStackSync.id JOIN Response_OfficeStackSyncWantToWorkWith ON Response_OfficeStackSyncWantToWorkWith.Response_id = Response_OfficeStackSyncHaveWorkedWith.Response_id AND Response_OfficeStackSyncWantToWorkWith.OfficeStackSync_id = OfficeStackSync.id JOIN (SELECT OfficeStackSync.name AS name2, COUNT(OfficeStackSync.id) AS count2 FROM OfficeStackSync JOIN Response_OfficeStackSyncHaveWorkedWith ON Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id = OfficeStackSync.id GROUP BY OfficeStackSync.id) ON OfficeStackSync.name = name2 GROUP BY OfficeStackSync.id", "results": [["Cisco Webex Teams", 26.811474050737854], ["Discord", 72.0146390413789], ["Google Chat", 47.58665370910269], ["Google Meet", 62.40322792284477], ["Signal", 71.90335406259558], ["Skype", 33.31302228412256], ["Slack", 69.57900519376749], ["Telegram", 66.27066440379659], ["Whatsapp", 58.701248049922], ["Zoom", 46.328588686380584], ["Microsoft Teams", 47.498333754682726], ["Matrix", 72.73378717305626], ["Jitsi", 56.71838890723011], ["Rocketchat", 42.04946996466431], ["Mattermost", 53.654791154791155], ["Zulip", 61.200716845878134], ["IRC", 60.20529016975918], ["Ringcentral", 30.786516853932586], ["Symphony", 34.11764705882353], ["Unify Circuit", 53.01204819277108], ["Wickr", 42.05607476635514], ["Wire", 40.53030303030303], ["Coolfire Core", 51.515151515151516]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much do people who responded to this survey want to use a synchronous communication tools in % and which tools are they?", "labels": [{"query": "SELECT OfficeStackSync.name, COUNT(OfficeStackSync.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_OfficeStackSyncWantToWorkWith) FROM OfficeStackSync JOIN Response_OfficeStackSyncWantToWorkWith ON Response_OfficeStackSyncWantToWorkWith.OfficeStackSync_id = OfficeStackSync.id GROUP BY OfficeStackSync.id", "results": [["Cisco Webex Teams", 2.5467209355652374], ["Discord", 38.46164870442559], ["Google Chat", 6.923584040357716], ["Google Meet", 28.23177023618436], ["Signal", 11.781988076129329], ["Skype", 5.811453795001147], ["Slack", 44.39635404723687], ["Telegram", 16.128754872735612], ["Whatsapp", 21.84705342811282], ["Zoom", 26.036172896124743], ["Microsoft Teams", 31.090919513872965], ["Matrix", 5.276886035313002], ["Jitsi", 3.1916418252694334], ["Rocketchat", 1.213884430176565], ["Mattermost", 3.333524421004357], ["Zulip", 1.5793396010089429], ["IRC", 3.419513872964916], ["Ringcentral", 0.2579683558816785], ["Symphony", 0.2436367805549186], ["Unify Circuit", 0.11321944508140334], ["Wickr", 0.2078078422380188], ["Wire", 0.2737330887411144], ["Coolfire Core", 0.09888786975464343]]}, {"query": "SELECT OfficeStackSync.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_OfficeStackSyncWantToWorkWith JOIN OfficeStackSync ON Response_OfficeStackSyncWantToWorkWith.OfficeStackSync_id = OfficeStackSync.id JOIN Responses ON Response_OfficeStackSyncWantToWorkWith.Response_id = Responses.id WHERE NOT Responses.SurveyAgreement IS NULL GROUP BY OfficeStackSync.Name", "results": [["Cisco Webex Teams", 1.9925098672407606], ["Coolfire Core", 0.0773681377825619], ["Discord", 30.091720487979906], ["Google Chat", 5.4168909221385], ["Google Meet", 22.088042698241836], ["IRC", 2.675367778973807], ["Jitsi", 2.4970846788661643], ["Matrix", 4.12854323645497], ["Mattermost", 2.608091137423753], ["Microsoft Teams", 24.324991029781128], ["Ringcentral", 0.20182992465016147], ["Rocketchat", 0.9497219232149264], ["Signal", 9.218021169716542], ["Skype", 4.5467796914244705], ["Slack", 34.73493003229279], ["Symphony", 0.19061715105848584], ["Telegram", 12.618855400071762], ["Unify Circuit", 0.08858091137423753], ["Whatsapp", 17.09275206315034], ["Wickr", 0.16258521707929674], ["Wire", 0.21416397560100467], ["Zoom", 20.37024578399713], ["Zulip", 1.2356476498026552]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of people want to keep using which AI search tool?", "labels": [{"query": "SELECT AISearch.name, COUNT(AISearch.id) * 100.0 / count2 FROM AISearch JOIN Response_AISearchHaveWorkedWith ON Response_AISearchHaveWorkedWith.AISearch_id = AISearch.id JOIN Response_AISearchWantToWorkWith ON Response_AISearchWantToWorkWith.Response_id = Response_AISearchHaveWorkedWith.Response_id AND Response_AISearchWantToWorkWith.AISearch_id = AISearch.id JOIN (SELECT AISearch.name AS name2, COUNT(AISearch.id) AS count2 FROM AISearch JOIN Response_AISearchHaveWorkedWith ON Response_AISearchHaveWorkedWith.AISearch_id = AISearch.id GROUP BY AISearch.id) ON AISearch.name = name2 GROUP BY AISearch.id", "results": [["ChatGPT", 77.73054782509244], ["Neeva AI", 48.44290657439446], ["Google Bard AI", 60.94579379121763], ["Bing AI", 62.30644788537093], ["Perplexity AI", 63.734776725304464], ["WolframAlpha", 68.17911866017342], ["Andi", 54.40414507772021], ["Phind", 77.45524915336236], ["You.com", 47.470331043098064], ["Quora Poe", 61.4307931570762], ["Metaphor", 52.38095238095238]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of people want to start using which AI search tool?", "labels": [{"query": "SELECT AISearch.name, COUNT(AISearch.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_AISearchWantToWorkWith) FROM AISearch JOIN Response_AISearchWantToWorkWith ON Response_AISearchWantToWorkWith.AISearch_id = AISearch.id GROUP BY AISearch.id", "results": [["ChatGPT", 90.36836403033585], ["Neeva AI", 1.0595882990249188], ["Google Bard AI", 26.528710725893824], ["Bing AI", 25.863488624052003], ["Perplexity AI", 2.104008667388949], ["WolframAlpha", 15.785482123510292], ["Andi", 0.8450704225352113], ["Phind", 4.734561213434453], ["You.com", 2.7388949079089926], ["Quora Poe", 1.6251354279523293], ["Metaphor", 0.914409534127844]]}, {"query": "SELECT AISearch.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_AISearchWantToWorkWith JOIN AISearch ON Response_AISearchWantToWorkWith.AISearch_id = AISearch.id GROUP BY AISearch.Name", "results": [["Andi", 0.4372981700753498], ["Bing AI", 13.38356655902404], ["ChatGPT", 46.76287226408324], ["Google Bard AI", 13.727798708288482], ["Metaphor", 0.4731790455687119], ["Neeva AI", 0.5483046286329386], ["Perplexity AI", 1.0887603157517043], ["Phind", 2.4499910297811267], ["Quora Poe", 0.8409580193756727], ["WolframAlpha", 8.168505561535701], ["You.com", 1.4172945819878005]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents in percent want to keep using the AI developer tools they are currently using and which AI tools are those?", "labels": [{"query": "SELECT AIDev.name, COUNT(AIDev.id) * 100.0 / count2 FROM AIDev JOIN Response_AIDevHaveWorkedWith ON Response_AIDevHaveWorkedWith.AIDev_id = AIDev.id JOIN Response_AIDevWantToWorkWith ON Response_AIDevWantToWorkWith.Response_id = Response_AIDevHaveWorkedWith.Response_id AND Response_AIDevWantToWorkWith.AIDev_id = AIDev.id JOIN (SELECT AIDev.name AS name2, COUNT(AIDev.id) AS count2 FROM AIDev JOIN Response_AIDevHaveWorkedWith ON Response_AIDevHaveWorkedWith.AIDev_id = AIDev.id GROUP BY AIDev.id) ON AIDev.name = name2 GROUP BY AIDev.id", "results": [["GitHub Copilot", 72.31633300117764], ["Tabnine", 36.529944155594066], ["AWS CodeWhisperer", 52.67986479961371], ["Adrenaline", 50.57471264367816], ["Replit Ghostwriter", 43.28358208955224], ["Synk Code", 51.858736059479554], ["Mintlify", 52.132701421800945], ["Whispr AI", 54.72527472527472], ["Rubber Duck.AI", 48.34437086092715], ["Codeium", 65.07936507936508]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents in percent want to use AI developer tools and which AI tools are those?", "labels": [{"query": "SELECT AIDev.name, COUNT(AIDev.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_AIDevWantToWorkWith) FROM AIDev JOIN Response_AIDevWantToWorkWith ON Response_AIDevWantToWorkWith.AIDev_id = AIDev.id GROUP BY AIDev.id", "results": [["GitHub Copilot", 88.34431000153162], ["Tabnine", 11.313626384847092], ["AWS CodeWhisperer", 15.551130852095778], ["Adrenaline", 1.3835707356920406], ["Replit Ghostwriter", 2.828406596211773], ["Synk Code", 2.700770919487415], ["Mintlify", 1.2916730484505028], ["Whispr AI", 4.191555623627917], ["Rubber Duck.AI", 1.8430591718997293], ["Codeium", 2.731403481901261]]}, {"query": "SELECT AIDev.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_AIDevWantToWorkWith JOIN AIDev ON Response_AIDevWantToWorkWith.AIDev_id = AIDev.id GROUP BY AIDev.Name", "results": [["AWS CodeWhisperer", 3.415410836024399], ["Adrenaline", 0.30386616433440977], ["Codeium", 0.5998833871546466], ["GitHub Copilot", 19.402583423035523], ["Mintlify", 0.2836831718693936], ["Replit Ghostwriter", 0.6211876569788303], ["Rubber Duck.AI", 0.4047811266594905], ["Synk Code", 0.5931557229996411], ["Tabnine", 2.484750627915321], ["Whispr AI", 0.9205687118765697]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents want to work with the various programming languages and which language are they currently using?", "labels": [{"query": "SELECT Languages1.name AS have_worked_with, Languages2.name AS want_to_work_with, COUNT(*) FROM Response_LanguageHaveWorkedWith JOIN Languages AS Languages1 ON Response_LanguageHaveWorkedWith.Languages_id = Languages1.id JOIN Response_LanguageWantToWorkWith ON Response_LanguageWantToWorkWith.Response_id = Response_LanguageHaveWorkedWith.Response_id JOIN Languages AS Languages2 ON Response_LanguageWantToWorkWith.Languages_id = Languages2.id GROUP BY Languages1.name, Languages2.name", "results": [["APL", "APL", 101], ["APL", "Ada", 48], ["APL", "Apex", 41], ["APL", "Assembly", 71], ["APL", "Bash/Shell (all shells)", 82], ["APL", "C", 79], ["APL", "C#", 59], ["APL", "C++", 68], ["APL", "Clojure", 58], ["APL", "Cobol", 42], ["APL", "Crystal", 40], ["APL", "Dart", 48], ["APL", "Delphi", 38], ["APL", "Elixir", 53], ["APL", "Erlang", 50], ["APL", "F#", 49], ["APL", "Flow", 30], ["APL", "Fortran", 39], ["APL", "GDScript", 33], ["APL", "Go", 53], ["APL", "Groovy", 31], ["APL", "HTML/CSS", 87], ["APL", "Haskell", 70], ["APL", "Java", 56], ["APL", "JavaScript", 85], ["APL", "Julia", 48], ["APL", "Kotlin", 53], ["APL", "Lisp", 60], ["APL", "Lua", 53], ["APL", "MATLAB", 28], ["APL", "Nim", 39], ["APL", "OCaml", 50], ["APL", "Objective-C", 35], ["APL", "PHP", 44], ["APL", "Perl", 37], ["APL", "PowerShell", 43], ["APL", "Prolog", 43], ["APL", "Python", 86], ["APL", "R", 33], ["APL", "Raku", 29], ["APL", "Ruby", 42], ["APL", "Rust", 88], ["APL", "SAS", 27], ["APL", "SQL", 77], ["APL", "Scala", 40], ["APL", "Solidity", 37], ["APL", "Swift", 43], ["APL", "TypeScript", 76], ["APL", "VBA", 30], ["APL", "Visual Basic (.Net)", 36], ["APL", "Zig", 53], ["Ada", "APL", 51], ["Ada", "Ada", 277], ["Ada", "Apex", 51], ["Ada", "Assembly", 107], ["Ada", "Bash/Shell (all shells)", 164], ["Ada", "C", 164], ["Ada", "C#", 113], ["Ada", "C++", 165], ["Ada", "Clojure", 49], ["Ada", "Cobol", 44], ["Ada", "Crystal", 44], ["Ada", "Dart", 70], ["Ada", "Delphi", 61], ["Ada", "Elixir", 50], ["Ada", "Erlang", 48], ["Ada", "F#", 45], ["Ada", "Flow", 29], ["Ada", "Fortran", 40], ["Ada", "GDScript", 38], ["Ada", "Go", 111], ["Ada", "Groovy", 35], ["Ada", "HTML/CSS", 147], ["Ada", "Haskell", 58], ["Ada", "Java", 123], ["Ada", "JavaScript", 164], ["Ada", "Julia", 55], ["Ada", "Kotlin", 80], ["Ada", "Lisp", 49], ["Ada", "Lua", 50], ["Ada", "MATLAB", 35], ["Ada", "Nim", 37], ["Ada", "OCaml", 51], ["Ada", "Objective-C", 44], ["Ada", "PHP", 63], ["Ada", "Perl", 34], ["Ada", "PowerShell", 65], ["Ada", "Prolog", 39], ["Ada", "Python", 230], ["Ada", "R", 48], ["Ada", "Raku", 29], ["Ada", "Ruby", 49], ["Ada", "Rust", 160], ["Ada", "SAS", 34], ["Ada", "SQL", 180], ["Ada", "Scala", 48], ["Ada", "Solidity", 39], ["Ada", "Swift", 60], ["Ada", "TypeScript", 146], ["Ada", "VBA", 35], ["Ada", "Visual Basic (.Net)", 41], ["Ada", "Zig", 54], ["Apex", "APL", 35], ["Apex", "Ada", 46], ["Apex", "Apex", 278], ["Apex", "Assembly", 37], ["Apex", "Bash/Shell (all shells)", 133], ["Apex", "C", 54], ["Apex", "C#", 126], ["Apex", "C++", 65], ["Apex", "Clojure", 42], ["Apex", "Cobol", 32], ["Apex", "Crystal", 33], ["Apex", "Dart", 52], ["Apex", "Delphi", 40], ["Apex", "Elixir", 39], ["Apex", "Erlang", 33], ["Apex", "F#", 33], ["Apex", "Flow", 33], ["Apex", "Fortran", 29], ["Apex", "GDScript", 32], ["Apex", "Go", 109], ["Apex", "Groovy", 46], ["Apex", "HTML/CSS", 242], ["Apex", "Haskell", 37], ["Apex", "Java", 134], ["Apex", "JavaScript", 284], ["Apex", "Julia", 34], ["Apex", "Kotlin", 65], ["Apex", "Lisp", 28], ["Apex", "Lua", 34], ["Apex", "MATLAB", 27], ["Apex", "Nim", 27], ["Apex", "OCaml", 25], ["Apex", "Objective-C", 32], ["Apex", "PHP", 80], ["Apex", "Perl", 38], ["Apex", "PowerShell", 71], ["Apex", "Prolog", 28], ["Apex", "Python", 208], ["Apex", "R", 42], ["Apex", "Raku", 24], ["Apex", "Ruby", 47], ["Apex", "Rust", 115], ["Apex", "SAS", 28], ["Apex", "SQL", 262], ["Apex", "Scala", 38], ["Apex", "Solidity", 36], ["Apex", "Swift", 46], ["Apex", "TypeScript", 174], ["Apex", "VBA", 30], ["Apex", "Visual Basic (.Net)", 35], ["Apex", "Zig", 44], ["Assembly", "APL", 125], ["Assembly", "Ada", 164], ["Assembly", "Apex", 74], ["Assembly", "Assembly", 1875], ["Assembly", "Bash/Shell (all shells)", 1994], ["Assembly", "C", 2130], ["Assembly", "C#", 1081], ["Assembly", "C++", 2007], ["Assembly", "Clojure", 215], ["Assembly", "Cobol", 119], ["Assembly", "Crystal", 103], ["Assembly", "Dart", 446], ["Assembly", "Delphi", 221], ["Assembly", "Elixir", 274], ["Assembly", "Erlang", 180], ["Assembly", "F#", 202], ["Assembly", "Flow", 57], ["Assembly", "Fortran", 132], ["Assembly", "GDScript", 198], ["Assembly", "Go", 1081], ["Assembly", "Groovy", 117], ["Assembly", "HTML/CSS", 1636], ["Assembly", "Haskell", 573], ["Assembly", "Java", 997], ["Assembly", "JavaScript", 1688], ["Assembly", "Julia", 262], ["Assembly", "Kotlin", 695], ["Assembly", "Lisp", 324], ["Assembly", "Lua", 570], ["Assembly", "MATLAB", 223], ["Assembly", "Nim", 153], ["Assembly", "OCaml", 190], ["Assembly", "Objective-C", 175], ["Assembly", "PHP", 533], ["Assembly", "Perl", 168], ["Assembly", "PowerShell", 488], ["Assembly", "Prolog", 134], ["Assembly", "Python", 2438], ["Assembly", "R", 259], ["Assembly", "Raku", 73], ["Assembly", "Ruby", 299], ["Assembly", "Rust", 2161], ["Assembly", "SAS", 67], ["Assembly", "SQL", 1638], ["Assembly", "Scala", 220], ["Assembly", "Solidity", 158], ["Assembly", "Swift", 423], ["Assembly", "TypeScript", 1515], ["Assembly", "VBA", 115], ["Assembly", "Visual Basic (.Net)", 153], ["Assembly", "Zig", 566], ["Bash/Shell (all shells)", "APL", 242], ["Bash/Shell (all shells)", "Ada", 288], ["Bash/Shell (all shells)", "Apex", 162], ["Bash/Shell (all shells)", "Assembly", 2354], ["Bash/Shell (all shells)", "Bash/Shell (all shells)", 17120], ["Bash/Shell (all shells)", "C", 4992], ["Bash/Shell (all shells)", "C#", 4969], ["Bash/Shell (all shells)", "C++", 5726], ["Bash/Shell (all shells)", "Clojure", 953], ["Bash/Shell (all shells)", "Cobol", 225], ["Bash/Shell (all shells)", "Crystal", 314], ["Bash/Shell (all shells)", "Dart", 1997], ["Bash/Shell (all shells)", "Delphi", 296], ["Bash/Shell (all shells)", "Elixir", 1662], ["Bash/Shell (all shells)", "Erlang", 789], ["Bash/Shell (all shells)", "F#", 785], ["Bash/Shell (all shells)", "Flow", 94], ["Bash/Shell (all shells)", "Fortran", 288], ["Bash/Shell (all shells)", "GDScript", 677], ["Bash/Shell (all shells)", "Go", 7999], ["Bash/Shell (all shells)", "Groovy", 701], ["Bash/Shell (all shells)", "HTML/CSS", 10583], ["Bash/Shell (all shells)", "Haskell", 1809], ["Bash/Shell (all shells)", "Java", 5159], ["Bash/Shell (all shells)", "JavaScript", 11355], ["Bash/Shell (all shells)", "Julia", 1017], ["Bash/Shell (all shells)", "Kotlin", 3996], ["Bash/Shell (all shells)", "Lisp", 1016], ["Bash/Shell (all shells)", "Lua", 2321], ["Bash/Shell (all shells)", "MATLAB", 460], ["Bash/Shell (all shells)", "Nim", 470], ["Bash/Shell (all shells)", "OCaml", 576], ["Bash/Shell (all shells)", "Objective-C", 408], ["Bash/Shell (all shells)", "PHP", 2789], ["Bash/Shell (all shells)", "Perl", 687], ["Bash/Shell (all shells)", "PowerShell", 2857], ["Bash/Shell (all shells)", "Prolog", 324], ["Bash/Shell (all shells)", "Python", 13871], ["Bash/Shell (all shells)", "R", 1196], ["Bash/Shell (all shells)", "Raku", 161], ["Bash/Shell (all shells)", "Ruby", 1825], ["Bash/Shell (all shells)", "Rust", 11703], ["Bash/Shell (all shells)", "SAS", 126], ["Bash/Shell (all shells)", "SQL", 11095], ["Bash/Shell (all shells)", "Scala", 1281], ["Bash/Shell (all shells)", "Solidity", 611], ["Bash/Shell (all shells)", "Swift", 1923], ["Bash/Shell (all shells)", "TypeScript", 11080], ["Bash/Shell (all shells)", "VBA", 281], ["Bash/Shell (all shells)", "Visual Basic (.Net)", 368], ["Bash/Shell (all shells)", "Zig", 1785], ["C", "APL", 210], ["C", "Ada", 309], ["C", "Apex", 125], ["C", "Assembly", 2391], ["C", "Bash/Shell (all shells)", 5193], ["C", "C", 7334], ["C", "C#", 3338], ["C", "C++", 6395], ["C", "Clojure", 498], ["C", "Cobol", 185], ["C", "Crystal", 215], ["C", "Dart", 1493], ["C", "Delphi", 397], ["C", "Elixir", 828], ["C", "Erlang", 482], ["C", "F#", 440], ["C", "Flow", 77], ["C", "Fortran", 279], ["C", "GDScript", 492], ["C", "Go", 3971], ["C", "Groovy", 280], ["C", "HTML/CSS", 5497], ["C", "Haskell", 1380], ["C", "Java", 3238], ["C", "JavaScript", 6064], ["C", "Julia", 797], ["C", "Kotlin", 2316], ["C", "Lisp", 813], ["C", "Lua", 1630], ["C", "MATLAB", 558], ["C", "Nim", 360], ["C", "OCaml", 471], ["C", "Objective-C", 431], ["C", "PHP", 1596], ["C", "Perl", 461], ["C", "PowerShell", 1343], ["C", "Prolog", 253], ["C", "Python", 8476], ["C", "R", 807], ["C", "Raku", 122], ["C", "Ruby", 942], ["C", "Rust", 7274], ["C", "SAS", 122], ["C", "SQL", 5436], ["C", "Scala", 588], ["C", "Solidity", 448], ["C", "Swift", 1317], ["C", "TypeScript", 5199], ["C", "VBA", 235], ["C", "Visual Basic (.Net)", 381], ["C", "Zig", 1586], ["C#", "APL", 125], ["C#", "Ada", 165], ["C#", "Apex", 142], ["C#", "Assembly", 1226], ["C#", "Bash/Shell (all shells)", 4253], ["C#", "C", 2704], ["C#", "C#", 15209], ["C#", "C++", 4411], ["C#", "Clojure", 374], ["C#", "Cobol", 161], ["C#", "Crystal", 181], ["C#", "Dart", 1809], ["C#", "Delphi", 508], ["C#", "Elixir", 755], ["C#", "Erlang", 305], ["C#", "F#", 1569], ["C#", "Flow", 89], ["C#", "Fortran", 142], ["C#", "GDScript", 605], ["C#", "Go", 4303], ["C#", "Groovy", 300], ["C#", "HTML/CSS", 9591], ["C#", "Haskell", 807], ["C#", "Java", 3331], ["C#", "JavaScript", 10333], ["C#", "Julia", 414], ["C#", "Kotlin", 2829], ["C#", "Lisp", 381], ["C#", "Lua", 1179], ["C#", "MATLAB", 304], ["C#", "Nim", 243], ["C#", "OCaml", 243], ["C#", "Objective-C", 331], ["C#", "PHP", 1873], ["C#", "Perl", 248], ["C#", "PowerShell", 3745], ["C#", "Prolog", 156], ["C#", "Python", 8311], ["C#", "R", 707], ["C#", "Raku", 76], ["C#", "Ruby", 896], ["C#", "Rust", 6662], ["C#", "SAS", 125], ["C#", "SQL", 10190], ["C#", "Scala", 519], ["C#", "Solidity", 403], ["C#", "Swift", 1461], ["C#", "TypeScript", 10220], ["C#", "VBA", 381], ["C#", "Visual Basic (.Net)", 775], ["C#", "Zig", 897], ["C++", "APL", 192], ["C++", "Ada", 257], ["C++", "Apex", 120], ["C++", "Assembly", 2175], ["C++", "Bash/Shell (all shells)", 5174], ["C++", "C", 5318], ["C++", "C#", 4481], ["C++", "C++", 9772], ["C++", "Clojure", 453], ["C++", "Cobol", 170], ["C++", "Crystal", 191], ["C++", "Dart", 1642], ["C++", "Delphi", 462], ["C++", "Elixir", 761], ["C++", "Erlang", 400], ["C++", "F#", 497], ["C++", "Flow", 78], ["C++", "Fortran", 272], ["C++", "GDScript", 565], ["C++", "Go", 4070], ["C++", "Groovy", 300], ["C++", "HTML/CSS", 6088], ["C++", "Haskell", 1305], ["C++", "Java", 3589], ["C++", "JavaScript", 6867], ["C++", "Julia", 856], ["C++", "Kotlin", 2551], ["C++", "Lisp", 678], ["C++", "Lua", 1561], ["C++", "MATLAB", 591], ["C++", "Nim", 332], ["C++", "OCaml", 421], ["C++", "Objective-C", 430], ["C++", "PHP", 1728], ["C++", "Perl", 390], ["C++", "PowerShell", 1619], ["C++", "Prolog", 242], ["C++", "Python", 9726], ["C++", "R", 872], ["C++", "Raku", 108], ["C++", "Ruby", 930], ["C++", "Rust", 7918], ["C++", "SAS", 126], ["C++", "SQL", 5917], ["C++", "Scala", 585], ["C++", "Solidity", 460], ["C++", "Swift", 1408], ["C++", "TypeScript", 6004], ["C++", "VBA", 246], ["C++", "Visual Basic (.Net)", 451], ["C++", "Zig", 1404], ["Clojure", "APL", 56], ["Clojure", "Ada", 42], ["Clojure", "Apex", 32], ["Clojure", "Assembly", 86], ["Clojure", "Bash/Shell (all shells)", 292], ["Clojure", "C", 146], ["Clojure", "C#", 114], ["Clojure", "C++", 106], ["Clojure", "Clojure", 757], ["Clojure", "Cobol", 32], ["Clojure", "Crystal", 43], ["Clojure", "Dart", 98], ["Clojure", "Delphi", 26], ["Clojure", "Elixir", 171], ["Clojure", "Erlang", 80], ["Clojure", "F#", 93], ["Clojure", "Flow", 26], ["Clojure", "Fortran", 38], ["Clojure", "GDScript", 56], ["Clojure", "Go", 222], ["Clojure", "Groovy", 48], ["Clojure", "HTML/CSS", 316], ["Clojure", "Haskell", 137], ["Clojure", "Java", 197], ["Clojure", "JavaScript", 318], ["Clojure", "Julia", 71], ["Clojure", "Kotlin", 164], ["Clojure", "Lisp", 178], ["Clojure", "Lua", 104], ["Clojure", "MATLAB", 26], ["Clojure", "Nim", 57], ["Clojure", "OCaml", 77], ["Clojure", "Objective-C", 32], ["Clojure", "PHP", 65], ["Clojure", "Perl", 37], ["Clojure", "PowerShell", 61], ["Clojure", "Prolog", 52], ["Clojure", "Python", 312], ["Clojure", "R", 57], ["Clojure", "Raku", 30], ["Clojure", "Ruby", 110], ["Clojure", "Rust", 392], ["Clojure", "SAS", 23], ["Clojure", "SQL", 327], ["Clojure", "Scala", 88], ["Clojure", "Solidity", 31], ["Clojure", "Swift", 68], ["Clojure", "TypeScript", 292], ["Clojure", "VBA", 26], ["Clojure", "Visual Basic (.Net)", 30], ["Clojure", "Zig", 144], ["Cobol", "APL", 45], ["Cobol", "Ada", 47], ["Cobol", "Apex", 42], ["Cobol", "Assembly", 88], ["Cobol", "Bash/Shell (all shells)", 155], ["Cobol", "C", 114], ["Cobol", "C#", 168], ["Cobol", "C++", 114], ["Cobol", "Clojure", 48], ["Cobol", "Cobol", 117], ["Cobol", "Crystal", 39], ["Cobol", "Dart", 66], ["Cobol", "Delphi", 80], ["Cobol", "Elixir", 48], ["Cobol", "Erlang", 42], ["Cobol", "F#", 47], ["Cobol", "Flow", 33], ["Cobol", "Fortran", 46], ["Cobol", "GDScript", 38], ["Cobol", "Go", 117], ["Cobol", "Groovy", 45], ["Cobol", "HTML/CSS", 229], ["Cobol", "Haskell", 47], ["Cobol", "Java", 180], ["Cobol", "JavaScript", 247], ["Cobol", "Julia", 48], ["Cobol", "Kotlin", 98], ["Cobol", "Lisp", 47], ["Cobol", "Lua", 60], ["Cobol", "MATLAB", 35], ["Cobol", "Nim", 39], ["Cobol", "OCaml", 38], ["Cobol", "Objective-C", 43], ["Cobol", "PHP", 125], ["Cobol", "Perl", 46], ["Cobol", "PowerShell", 108], ["Cobol", "Prolog", 39], ["Cobol", "Python", 241], ["Cobol", "R", 64], ["Cobol", "Raku", 28], ["Cobol", "Ruby", 62], ["Cobol", "Rust", 137], ["Cobol", "SAS", 37], ["Cobol", "SQL", 302], ["Cobol", "Scala", 45], ["Cobol", "Solidity", 45], ["Cobol", "Swift", 66], ["Cobol", "TypeScript", 158], ["Cobol", "VBA", 59], ["Cobol", "Visual Basic (.Net)", 66], ["Cobol", "Zig", 47], ["Crystal", "APL", 39], ["Crystal", "Ada", 43], ["Crystal", "Apex", 34], ["Crystal", "Assembly", 57], ["Crystal", "Bash/Shell (all shells)", 117], ["Crystal", "C", 75], ["Crystal", "C#", 126], ["Crystal", "C++", 79], ["Crystal", "Clojure", 55], ["Crystal", "Cobol", 35], ["Crystal", "Crystal", 187], ["Crystal", "Dart", 64], ["Crystal", "Delphi", 41], ["Crystal", "Elixir", 93], ["Crystal", "Erlang", 45], ["Crystal", "F#", 57], ["Crystal", "Flow", 31], ["Crystal", "Fortran", 36], ["Crystal", "GDScript", 53], ["Crystal", "Go", 102], ["Crystal", "Groovy", 34], ["Crystal", "HTML/CSS", 159], ["Crystal", "Haskell", 60], ["Crystal", "Java", 56], ["Crystal", "JavaScript", 166], ["Crystal", "Julia", 46], ["Crystal", "Kotlin", 62], ["Crystal", "Lisp", 40], ["Crystal", "Lua", 63], ["Crystal", "MATLAB", 29], ["Crystal", "Nim", 48], ["Crystal", "OCaml", 42], ["Crystal", "Objective-C", 37], ["Crystal", "PHP", 63], ["Crystal", "Perl", 37], ["Crystal", "PowerShell", 67], ["Crystal", "Prolog", 34], ["Crystal", "Python", 131], ["Crystal", "R", 46], ["Crystal", "Raku", 32], ["Crystal", "Ruby", 121], ["Crystal", "Rust", 132], ["Crystal", "SAS", 31], ["Crystal", "SQL", 173], ["Crystal", "Scala", 37], ["Crystal", "Solidity", 38], ["Crystal", "Swift", 58], ["Crystal", "TypeScript", 136], ["Crystal", "VBA", 45], ["Crystal", "Visual Basic (.Net)", 63], ["Crystal", "Zig", 73], ["Dart", "APL", 67], ["Dart", "Ada", 68], ["Dart", "Apex", 58], ["Dart", "Assembly", 302], ["Dart", "Bash/Shell (all shells)", 1108], ["Dart", "C", 664], ["Dart", "C#", 1147], ["Dart", "C++", 929], ["Dart", "Clojure", 148], ["Dart", "Cobol", 65], ["Dart", "Crystal", 87], ["Dart", "Dart", 3088], ["Dart", "Delphi", 73], ["Dart", "Elixir", 323], ["Dart", "Erlang", 124], ["Dart", "F#", 147], ["Dart", "Flow", 45], ["Dart", "Fortran", 55], ["Dart", "GDScript", 221], ["Dart", "Go", 1562], ["Dart", "Groovy", 116], ["Dart", "HTML/CSS", 2081], ["Dart", "Haskell", 276], ["Dart", "Java", 1103], ["Dart", "JavaScript", 2361], ["Dart", "Julia", 186], ["Dart", "Kotlin", 1344], ["Dart", "Lisp", 113], ["Dart", "Lua", 331], ["Dart", "MATLAB", 103], ["Dart", "Nim", 102], ["Dart", "OCaml", 87], ["Dart", "Objective-C", 127], ["Dart", "PHP", 638], ["Dart", "Perl", 71], ["Dart", "PowerShell", 401], ["Dart", "Prolog", 69], ["Dart", "Python", 2241], ["Dart", "R", 193], ["Dart", "Raku", 40], ["Dart", "Ruby", 338], ["Dart", "Rust", 1916], ["Dart", "SAS", 55], ["Dart", "SQL", 1883], ["Dart", "Scala", 208], ["Dart", "Solidity", 200], ["Dart", "Swift", 782], ["Dart", "TypeScript", 2405], ["Dart", "VBA", 54], ["Dart", "Visual Basic (.Net)", 105], ["Dart", "Zig", 350], ["Delphi", "APL", 40], ["Delphi", "Ada", 57], ["Delphi", "Apex", 51], ["Delphi", "Assembly", 168], ["Delphi", "Bash/Shell (all shells)", 370], ["Delphi", "C", 341], ["Delphi", "C#", 705], ["Delphi", "C++", 465], ["Delphi", "Clojure", 46], ["Delphi", "Cobol", 50], ["Delphi", "Crystal", 44], ["Delphi", "Dart", 135], ["Delphi", "Delphi", 1777], ["Delphi", "Elixir", 60], ["Delphi", "Erlang", 50], ["Delphi", "F#", 73], ["Delphi", "Flow", 32], ["Delphi", "Fortran", 51], ["Delphi", "GDScript", 54], ["Delphi", "Go", 279], ["Delphi", "Groovy", 61], ["Delphi", "HTML/CSS", 774], ["Delphi", "Haskell", 62], ["Delphi", "Java", 328], ["Delphi", "JavaScript", 904], ["Delphi", "Julia", 62], ["Delphi", "Kotlin", 205], ["Delphi", "Lisp", 54], ["Delphi", "Lua", 116], ["Delphi", "MATLAB", 60], ["Delphi", "Nim", 39], ["Delphi", "OCaml", 40], ["Delphi", "Objective-C", 76], ["Delphi", "PHP", 423], ["Delphi", "Perl", 70], ["Delphi", "PowerShell", 296], ["Delphi", "Prolog", 45], ["Delphi", "Python", 833], ["Delphi", "R", 107], ["Delphi", "Raku", 30], ["Delphi", "Ruby", 98], ["Delphi", "Rust", 355], ["Delphi", "SAS", 38], ["Delphi", "SQL", 1346], ["Delphi", "Scala", 57], ["Delphi", "Solidity", 51], ["Delphi", "Swift", 142], ["Delphi", "TypeScript", 484], ["Delphi", "VBA", 124], ["Delphi", "Visual Basic (.Net)", 99], ["Delphi", "Zig", 62], ["Elixir", "APL", 56], ["Elixir", "Ada", 45], ["Elixir", "Apex", 33], ["Elixir", "Assembly", 106], ["Elixir", "Bash/Shell (all shells)", 476], ["Elixir", "C", 199], ["Elixir", "C#", 182], ["Elixir", "C++", 166], ["Elixir", "Clojure", 179], ["Elixir", "Cobol", 40], ["Elixir", "Crystal", 100], ["Elixir", "Dart", 149], ["Elixir", "Delphi", 27], ["Elixir", "Elixir", 1483], ["Elixir", "Erlang", 463], ["Elixir", "F#", 121], ["Elixir", "Flow", 32], ["Elixir", "Fortran", 34], ["Elixir", "GDScript", 81], ["Elixir", "Go", 442], ["Elixir", "Groovy", 40], ["Elixir", "HTML/CSS", 676], ["Elixir", "Haskell", 229], ["Elixir", "Java", 157], ["Elixir", "JavaScript", 620], ["Elixir", "Julia", 100], ["Elixir", "Kotlin", 221], ["Elixir", "Lisp", 134], ["Elixir", "Lua", 177], ["Elixir", "MATLAB", 31], ["Elixir", "Nim", 73], ["Elixir", "OCaml", 111], ["Elixir", "Objective-C", 32], ["Elixir", "PHP", 102], ["Elixir", "Perl", 45], ["Elixir", "PowerShell", 67], ["Elixir", "Prolog", 66], ["Elixir", "Python", 496], ["Elixir", "R", 60], ["Elixir", "Raku", 31], ["Elixir", "Ruby", 284], ["Elixir", "Rust", 916], ["Elixir", "SAS", 23], ["Elixir", "SQL", 679], ["Elixir", "Scala", 110], ["Elixir", "Solidity", 63], ["Elixir", "Swift", 169], ["Elixir", "TypeScript", 680], ["Elixir", "VBA", 23], ["Elixir", "Visual Basic (.Net)", 29], ["Elixir", "Zig", 291], ["Erlang", "APL", 51], ["Erlang", "Ada", 44], ["Erlang", "Apex", 32], ["Erlang", "Assembly", 77], ["Erlang", "Bash/Shell (all shells)", 271], ["Erlang", "C", 177], ["Erlang", "C#", 99], ["Erlang", "C++", 140], ["Erlang", "Clojure", 91], ["Erlang", "Cobol", 38], ["Erlang", "Crystal", 52], ["Erlang", "Dart", 81], ["Erlang", "Delphi", 30], ["Erlang", "Elixir", 470], ["Erlang", "Erlang", 479], ["Erlang", "F#", 67], ["Erlang", "Flow", 26], ["Erlang", "Fortran", 38], ["Erlang", "GDScript", 48], ["Erlang", "Go", 183], ["Erlang", "Groovy", 45], ["Erlang", "HTML/CSS", 261], ["Erlang", "Haskell", 143], ["Erlang", "Java", 113], ["Erlang", "JavaScript", 251], ["Erlang", "Julia", 60], ["Erlang", "Kotlin", 112], ["Erlang", "Lisp", 96], ["Erlang", "Lua", 109], ["Erlang", "MATLAB", 31], ["Erlang", "Nim", 45], ["Erlang", "OCaml", 82], ["Erlang", "Objective-C", 34], ["Erlang", "PHP", 61], ["Erlang", "Perl", 42], ["Erlang", "PowerShell", 58], ["Erlang", "Prolog", 67], ["Erlang", "Python", 270], ["Erlang", "R", 49], ["Erlang", "Raku", 26], ["Erlang", "Ruby", 101], ["Erlang", "Rust", 409], ["Erlang", "SAS", 25], ["Erlang", "SQL", 314], ["Erlang", "Scala", 66], ["Erlang", "Solidity", 41], ["Erlang", "Swift", 80], ["Erlang", "TypeScript", 238], ["Erlang", "VBA", 29], ["Erlang", "Visual Basic (.Net)", 36], ["Erlang", "Zig", 136], ["F#", "APL", 39], ["F#", "Ada", 33], ["F#", "Apex", 26], ["F#", "Assembly", 80], ["F#", "Bash/Shell (all shells)", 186], ["F#", "C", 108], ["F#", "C#", 472], ["F#", "C++", 132], ["F#", "Clojure", 78], ["F#", "Cobol", 26], ["F#", "Crystal", 43], ["F#", "Dart", 70], ["F#", "Delphi", 27], ["F#", "Elixir", 109], ["F#", "Erlang", 53], ["F#", "F#", 487], ["F#", "Flow", 25], ["F#", "Fortran", 27], ["F#", "GDScript", 39], ["F#", "Go", 153], ["F#", "Groovy", 33], ["F#", "HTML/CSS", 267], ["F#", "Haskell", 145], ["F#", "Java", 82], ["F#", "JavaScript", 255], ["F#", "Julia", 70], ["F#", "Kotlin", 135], ["F#", "Lisp", 67], ["F#", "Lua", 87], ["F#", "MATLAB", 28], ["F#", "Nim", 51], ["F#", "OCaml", 80], ["F#", "Objective-C", 33], ["F#", "PHP", 61], ["F#", "Perl", 36], ["F#", "PowerShell", 193], ["F#", "Prolog", 40], ["F#", "Python", 239], ["F#", "R", 51], ["F#", "Raku", 27], ["F#", "Ruby", 51], ["F#", "Rust", 342], ["F#", "SAS", 23], ["F#", "SQL", 329], ["F#", "Scala", 81], ["F#", "Solidity", 38], ["F#", "Swift", 78], ["F#", "TypeScript", 374], ["F#", "VBA", 30], ["F#", "Visual Basic (.Net)", 45], ["F#", "Zig", 97], ["Flow", "APL", 31], ["Flow", "Ada", 31], ["Flow", "Apex", 38], ["Flow", "Assembly", 38], ["Flow", "Bash/Shell (all shells)", 63], ["Flow", "C", 38], ["Flow", "C#", 52], ["Flow", "C++", 41], ["Flow", "Clojure", 35], ["Flow", "Cobol", 31], ["Flow", "Crystal", 31], ["Flow", "Dart", 41], ["Flow", "Delphi", 30], ["Flow", "Elixir", 40], ["Flow", "Erlang", 33], ["Flow", "F#", 35], ["Flow", "Flow", 53], ["Flow", "Fortran", 29], ["Flow", "GDScript", 30], ["Flow", "Go", 53], ["Flow", "Groovy", 30], ["Flow", "HTML/CSS", 93], ["Flow", "Haskell", 37], ["Flow", "Java", 54], ["Flow", "JavaScript", 107], ["Flow", "Julia", 27], ["Flow", "Kotlin", 46], ["Flow", "Lisp", 29], ["Flow", "Lua", 33], ["Flow", "MATLAB", 30], ["Flow", "Nim", 29], ["Flow", "OCaml", 29], ["Flow", "Objective-C", 31], ["Flow", "PHP", 42], ["Flow", "Perl", 28], ["Flow", "PowerShell", 42], ["Flow", "Prolog", 31], ["Flow", "Python", 74], ["Flow", "R", 28], ["Flow", "Raku", 25], ["Flow", "Ruby", 35], ["Flow", "Rust", 79], ["Flow", "SAS", 25], ["Flow", "SQL", 77], ["Flow", "Scala", 27], ["Flow", "Solidity", 28], ["Flow", "Swift", 42], ["Flow", "TypeScript", 112], ["Flow", "VBA", 28], ["Flow", "Visual Basic (.Net)", 31], ["Flow", "Zig", 31], ["Fortran", "APL", 42], ["Fortran", "Ada", 48], ["Fortran", "Apex", 38], ["Fortran", "Assembly", 127], ["Fortran", "Bash/Shell (all shells)", 301], ["Fortran", "C", 254], ["Fortran", "C#", 168], ["Fortran", "C++", 316], ["Fortran", "Clojure", 56], ["Fortran", "Cobol", 47], ["Fortran", "Crystal", 39], ["Fortran", "Dart", 62], ["Fortran", "Delphi", 89], ["Fortran", "Elixir", 51], ["Fortran", "Erlang", 48], ["Fortran", "F#", 45], ["Fortran", "Flow", 30], ["Fortran", "Fortran", 203], ["Fortran", "GDScript", 41], ["Fortran", "Go", 141], ["Fortran", "Groovy", 41], ["Fortran", "HTML/CSS", 269], ["Fortran", "Haskell", 90], ["Fortran", "Java", 169], ["Fortran", "JavaScript", 279], ["Fortran", "Julia", 140], ["Fortran", "Kotlin", 99], ["Fortran", "Lisp", 89], ["Fortran", "Lua", 88], ["Fortran", "MATLAB", 74], ["Fortran", "Nim", 37], ["Fortran", "OCaml", 54], ["Fortran", "Objective-C", 53], ["Fortran", "PHP", 118], ["Fortran", "Perl", 65], ["Fortran", "PowerShell", 107], ["Fortran", "Prolog", 44], ["Fortran", "Python", 456], ["Fortran", "R", 112], ["Fortran", "Raku", 35], ["Fortran", "Ruby", 64], ["Fortran", "Rust", 259], ["Fortran", "SAS", 34], ["Fortran", "SQL", 320], ["Fortran", "Scala", 48], ["Fortran", "Solidity", 45], ["Fortran", "Swift", 84], ["Fortran", "TypeScript", 171], ["Fortran", "VBA", 58], ["Fortran", "Visual Basic (.Net)", 60], ["Fortran", "Zig", 61], ["GDScript", "APL", 43], ["GDScript", "Ada", 38], ["GDScript", "Apex", 34], ["GDScript", "Assembly", 176], ["GDScript", "Bash/Shell (all shells)", 430], ["GDScript", "C", 350], ["GDScript", "C#", 467], ["GDScript", "C++", 463], ["GDScript", "Clojure", 77], ["GDScript", "Cobol", 37], ["GDScript", "Crystal", 65], ["GDScript", "Dart", 208], ["GDScript", "Delphi", 34], ["GDScript", "Elixir", 131], ["GDScript", "Erlang", 62], ["GDScript", "F#", 83], ["GDScript", "Flow", 30], ["GDScript", "Fortran", 37], ["GDScript", "GDScript", 941], ["GDScript", "Go", 375], ["GDScript", "Groovy", 43], ["GDScript", "HTML/CSS", 699], ["GDScript", "Haskell", 153], ["GDScript", "Java", 234], ["GDScript", "JavaScript", 640], ["GDScript", "Julia", 90], ["GDScript", "Kotlin", 301], ["GDScript", "Lisp", 93], ["GDScript", "Lua", 253], ["GDScript", "MATLAB", 37], ["GDScript", "Nim", 95], ["GDScript", "OCaml", 63], ["GDScript", "Objective-C", 38], ["GDScript", "PHP", 158], ["GDScript", "Perl", 47], ["GDScript", "PowerShell", 111], ["GDScript", "Prolog", 45], ["GDScript", "Python", 742], ["GDScript", "R", 77], ["GDScript", "Raku", 31], ["GDScript", "Ruby", 107], ["GDScript", "Rust", 803], ["GDScript", "SAS", 29], ["GDScript", "SQL", 445], ["GDScript", "Scala", 63], ["GDScript", "Solidity", 51], ["GDScript", "Swift", 119], ["GDScript", "TypeScript", 675], ["GDScript", "VBA", 33], ["GDScript", "Visual Basic (.Net)", 44], ["GDScript", "Zig", 199], ["Go", "APL", 102], ["Go", "Ada", 103], ["Go", "Apex", 58], ["Go", "Assembly", 666], ["Go", "Bash/Shell (all shells)", 3631], ["Go", "C", 1702], ["Go", "C#", 1615], ["Go", "C++", 1754], ["Go", "Clojure", 410], ["Go", "Cobol", 89], ["Go", "Crystal", 184], ["Go", "Dart", 1082], ["Go", "Delphi", 93], ["Go", "Elixir", 930], ["Go", "Erlang", 364], ["Go", "F#", 310], ["Go", "Flow", 49], ["Go", "Fortran", 85], ["Go", "GDScript", 321], ["Go", "Go", 7239], ["Go", "Groovy", 233], ["Go", "HTML/CSS", 3646], ["Go", "Haskell", 728], ["Go", "Java", 1720], ["Go", "JavaScript", 4091], ["Go", "Julia", 383], ["Go", "Kotlin", 1681], ["Go", "Lisp", 395], ["Go", "Lua", 990], ["Go", "MATLAB", 115], ["Go", "Nim", 270], ["Go", "OCaml", 299], ["Go", "Objective-C", 153], ["Go", "PHP", 882], ["Go", "Perl", 210], ["Go", "PowerShell", 648], ["Go", "Prolog", 141], ["Go", "Python", 4816], ["Go", "R", 317], ["Go", "Raku", 70], ["Go", "Ruby", 720], ["Go", "Rust", 5623], ["Go", "SAS", 66], ["Go", "SQL", 4218], ["Go", "Scala", 496], ["Go", "Solidity", 307], ["Go", "Swift", 836], ["Go", "TypeScript", 4824], ["Go", "VBA", 74], ["Go", "Visual Basic (.Net)", 117], ["Go", "Zig", 1245], ["Groovy", "APL", 39], ["Groovy", "Ada", 41], ["Groovy", "Apex", 47], ["Groovy", "Assembly", 142], ["Groovy", "Bash/Shell (all shells)", 1148], ["Groovy", "C", 309], ["Groovy", "C#", 426], ["Groovy", "C++", 375], ["Groovy", "Clojure", 118], ["Groovy", "Cobol", 39], ["Groovy", "Crystal", 50], ["Groovy", "Dart", 234], ["Groovy", "Delphi", 47], ["Groovy", "Elixir", 145], ["Groovy", "Erlang", 79], ["Groovy", "F#", 89], ["Groovy", "Flow", 30], ["Groovy", "Fortran", 34], ["Groovy", "GDScript", 76], ["Groovy", "Go", 903], ["Groovy", "Groovy", 892], ["Groovy", "HTML/CSS", 924], ["Groovy", "Haskell", 133], ["Groovy", "Java", 1299], ["Groovy", "JavaScript", 1143], ["Groovy", "Julia", 84], ["Groovy", "Kotlin", 917], ["Groovy", "Lisp", 87], ["Groovy", "Lua", 193], ["Groovy", "MATLAB", 42], ["Groovy", "Nim", 68], ["Groovy", "OCaml", 58], ["Groovy", "Objective-C", 67], ["Groovy", "PHP", 163], ["Groovy", "Perl", 77], ["Groovy", "PowerShell", 315], ["Groovy", "Prolog", 48], ["Groovy", "Python", 1295], ["Groovy", "R", 114], ["Groovy", "Raku", 28], ["Groovy", "Ruby", 167], ["Groovy", "Rust", 959], ["Groovy", "SAS", 33], ["Groovy", "SQL", 1150], ["Groovy", "Scala", 224], ["Groovy", "Solidity", 68], ["Groovy", "Swift", 231], ["Groovy", "TypeScript", 1105], ["Groovy", "VBA", 37], ["Groovy", "Visual Basic (.Net)", 49], ["Groovy", "Zig", 147], ["HTML/CSS", "APL", 248], ["HTML/CSS", "Ada", 297], ["HTML/CSS", "Apex", 325], ["HTML/CSS", "Assembly", 2217], ["HTML/CSS", "Bash/Shell (all shells)", 11110], ["HTML/CSS", "C", 5207], ["HTML/CSS", "C#", 11307], ["HTML/CSS", "C++", 7173], ["HTML/CSS", "Clojure", 936], ["HTML/CSS", "Cobol", 280], ["HTML/CSS", "Crystal", 386], ["HTML/CSS", "Dart", 3966], ["HTML/CSS", "Delphi", 617], ["HTML/CSS", "Elixir", 2177], ["HTML/CSS", "Erlang", 767], ["HTML/CSS", "F#", 1174], ["HTML/CSS", "Flow", 143], ["HTML/CSS", "Fortran", 274], ["HTML/CSS", "GDScript", 1091], ["HTML/CSS", "Go", 10331], ["HTML/CSS", "Groovy", 706], ["HTML/CSS", "HTML/CSS", 28721], ["HTML/CSS", "Haskell", 1755], ["HTML/CSS", "Java", 8093], ["HTML/CSS", "JavaScript", 25906], ["HTML/CSS", "Julia", 992], ["HTML/CSS", "Kotlin", 5904], ["HTML/CSS", "Lisp", 911], ["HTML/CSS", "Lua", 2621], ["HTML/CSS", "MATLAB", 633], ["HTML/CSS", "Nim", 535], ["HTML/CSS", "OCaml", 543], ["HTML/CSS", "Objective-C", 611], ["HTML/CSS", "PHP", 6363], ["HTML/CSS", "Perl", 622], ["HTML/CSS", "PowerShell", 4273], ["HTML/CSS", "Prolog", 334], ["HTML/CSS", "Python", 18828], ["HTML/CSS", "R", 1654], ["HTML/CSS", "Raku", 164], ["HTML/CSS", "Ruby", 2848], ["HTML/CSS", "Rust", 14179], ["HTML/CSS", "SAS", 262], ["HTML/CSS", "SQL", 19308], ["HTML/CSS", "Scala", 1222], ["HTML/CSS", "Solidity", 1148], ["HTML/CSS", "Swift", 3193], ["HTML/CSS", "TypeScript", 23168], ["HTML/CSS", "VBA", 573], ["HTML/CSS", "Visual Basic (.Net)", 963], ["HTML/CSS", "Zig", 1988], ["Haskell", "APL", 103], ["Haskell", "Ada", 59], ["Haskell", "Apex", 35], ["Haskell", "Assembly", 269], ["Haskell", "Bash/Shell (all shells)", 626], ["Haskell", "C", 506], ["Haskell", "C#", 315], ["Haskell", "C++", 498], ["Haskell", "Clojure", 195], ["Haskell", "Cobol", 45], ["Haskell", "Crystal", 73], ["Haskell", "Dart", 169], ["Haskell", "Delphi", 34], ["Haskell", "Elixir", 259], ["Haskell", "Erlang", 133], ["Haskell", "F#", 171], ["Haskell", "Flow", 33], ["Haskell", "Fortran", 59], ["Haskell", "GDScript", 93], ["Haskell", "Go", 441], ["Haskell", "Groovy", 46], ["Haskell", "HTML/CSS", 597], ["Haskell", "Haskell", 955], ["Haskell", "Java", 316], ["Haskell", "JavaScript", 563], ["Haskell", "Julia", 180], ["Haskell", "Kotlin", 311], ["Haskell", "Lisp", 252], ["Haskell", "Lua", 269], ["Haskell", "MATLAB", 49], ["Haskell", "Nim", 99], ["Haskell", "OCaml", 204], ["Haskell", "Objective-C", 42], ["Haskell", "PHP", 124], ["Haskell", "Perl", 61], ["Haskell", "PowerShell", 137], ["Haskell", "Prolog", 112], ["Haskell", "Python", 829], ["Haskell", "R", 116], ["Haskell", "Raku", 45], ["Haskell", "Ruby", 126], ["Haskell", "Rust", 1111], ["Haskell", "SAS", 34], ["Haskell", "SQL", 561], ["Haskell", "Scala", 216], ["Haskell", "Solidity", 62], ["Haskell", "Swift", 155], ["Haskell", "TypeScript", 714], ["Haskell", "VBA", 32], ["Haskell", "Visual Basic (.Net)", 46], ["Haskell", "Zig", 291], ["Java", "APL", 182], ["Java", "Ada", 253], ["Java", "Apex", 206], ["Java", "Assembly", 1556], ["Java", "Bash/Shell (all shells)", 6447], ["Java", "C", 3760], ["Java", "C#", 5110], ["Java", "C++", 4981], ["Java", "Clojure", 815], ["Java", "Cobol", 213], ["Java", "Crystal", 196], ["Java", "Dart", 2513], ["Java", "Delphi", 291], ["Java", "Elixir", 1106], ["Java", "Erlang", 491], ["Java", "F#", 575], ["Java", "Flow", 109], ["Java", "Fortran", 205], ["Java", "GDScript", 549], ["Java", "Go", 6567], ["Java", "Groovy", 911], ["Java", "HTML/CSS", 9303], ["Java", "Haskell", 1265], ["Java", "Java", 11803], ["Java", "JavaScript", 11150], ["Java", "Julia", 681], ["Java", "Kotlin", 6648], ["Java", "Lisp", 602], ["Java", "Lua", 1482], ["Java", "MATLAB", 454], ["Java", "Nim", 333], ["Java", "OCaml", 397], ["Java", "Objective-C", 458], ["Java", "PHP", 2229], ["Java", "Perl", 402], ["Java", "PowerShell", 1953], ["Java", "Prolog", 255], ["Java", "Python", 11100], ["Java", "R", 1005], ["Java", "Raku", 113], ["Java", "Ruby", 1280], ["Java", "Rust", 8567], ["Java", "SAS", 166], ["Java", "SQL", 9954], ["Java", "Scala", 1521], ["Java", "Solidity", 608], ["Java", "Swift", 2056], ["Java", "TypeScript", 10395], ["Java", "VBA", 308], ["Java", "Visual Basic (.Net)", 540], ["Java", "Zig", 1262], ["JavaScript", "APL", 259], ["JavaScript", "Ada", 324], ["JavaScript", "Apex", 355], ["JavaScript", "Assembly", 2382], ["JavaScript", "Bash/Shell (all shells)", 12393], ["JavaScript", "C", 5844], ["JavaScript", "C#", 12743], ["JavaScript", "C++", 8175], ["JavaScript", "Clojure", 1204], ["JavaScript", "Cobol", 284], ["JavaScript", "Crystal", 440], ["JavaScript", "Dart", 4542], ["JavaScript", "Delphi", 708], ["JavaScript", "Elixir", 2696], ["JavaScript", "Erlang", 924], ["JavaScript", "F#", 1347], ["JavaScript", "Flow", 154], ["JavaScript", "Fortran", 270], ["JavaScript", "GDScript", 1150], ["JavaScript", "Go", 12836], ["JavaScript", "Groovy", 817], ["JavaScript", "HTML/CSS", 26106], ["JavaScript", "Haskell", 2084], ["JavaScript", "Java", 9686], ["JavaScript", "JavaScript", 32216], ["JavaScript", "Julia", 1098], ["JavaScript", "Kotlin", 7010], ["JavaScript", "Lisp", 1028], ["JavaScript", "Lua", 2889], ["JavaScript", "MATLAB", 632], ["JavaScript", "Nim", 575], ["JavaScript", "OCaml", 659], ["JavaScript", "Objective-C", 686], ["JavaScript", "PHP", 6887], ["JavaScript", "Perl", 713], ["JavaScript", "PowerShell", 4516], ["JavaScript", "Prolog", 379], ["JavaScript", "Python", 21857], ["JavaScript", "R", 1737], ["JavaScript", "Raku", 182], ["JavaScript", "Ruby", 3282], ["JavaScript", "Rust", 17381], ["JavaScript", "SAS", 265], ["JavaScript", "SQL", 21630], ["JavaScript", "Scala", 1546], ["JavaScript", "Solidity", 1339], ["JavaScript", "Swift", 3678], ["JavaScript", "TypeScript", 27682], ["JavaScript", "VBA", 572], ["JavaScript", "Visual Basic (.Net)", 975], ["JavaScript", "Zig", 2399], ["Julia", "APL", 60], ["Julia", "Ada", 57], ["Julia", "Apex", 38], ["Julia", "Assembly", 119], ["Julia", "Bash/Shell (all shells)", 308], ["Julia", "C", 244], ["Julia", "C#", 160], ["Julia", "C++", 304], ["Julia", "Clojure", 98], ["Julia", "Cobol", 43], ["Julia", "Crystal", 62], ["Julia", "Dart", 101], ["Julia", "Delphi", 40], ["Julia", "Elixir", 117], ["Julia", "Erlang", 60], ["Julia", "F#", 72], ["Julia", "Flow", 33], ["Julia", "Fortran", 72], ["Julia", "GDScript", 64], ["Julia", "Go", 210], ["Julia", "Groovy", 47], ["Julia", "HTML/CSS", 274], ["Julia", "Haskell", 157], ["Julia", "Java", 131], ["Julia", "JavaScript", 270], ["Julia", "Julia", 634], ["Julia", "Kotlin", 128], ["Julia", "Lisp", 113], ["Julia", "Lua", 140], ["Julia", "MATLAB", 70], ["Julia", "Nim", 67], ["Julia", "OCaml", 81], ["Julia", "Objective-C", 44], ["Julia", "PHP", 70], ["Julia", "Perl", 61], ["Julia", "PowerShell", 102], ["Julia", "Prolog", 64], ["Julia", "Python", 542], ["Julia", "R", 150], ["Julia", "Raku", 40], ["Julia", "Ruby", 78], ["Julia", "Rust", 508], ["Julia", "SAS", 33], ["Julia", "SQL", 281], ["Julia", "Scala", 91], ["Julia", "Solidity", 50], ["Julia", "Swift", 86], ["Julia", "TypeScript", 267], ["Julia", "VBA", 38], ["Julia", "Visual Basic (.Net)", 35], ["Julia", "Zig", 138], ["Kotlin", "APL", 70], ["Kotlin", "Ada", 84], ["Kotlin", "Apex", 63], ["Kotlin", "Assembly", 473], ["Kotlin", "Bash/Shell (all shells)", 1840], ["Kotlin", "C", 924], ["Kotlin", "C#", 1436], ["Kotlin", "C++", 1280], ["Kotlin", "Clojure", 269], ["Kotlin", "Cobol", 83], ["Kotlin", "Crystal", 97], ["Kotlin", "Dart", 1170], ["Kotlin", "Delphi", 77], ["Kotlin", "Elixir", 455], ["Kotlin", "Erlang", 194], ["Kotlin", "F#", 257], ["Kotlin", "Flow", 52], ["Kotlin", "Fortran", 72], ["Kotlin", "GDScript", 237], ["Kotlin", "Go", 1965], ["Kotlin", "Groovy", 279], ["Kotlin", "HTML/CSS", 2522], ["Kotlin", "Haskell", 422], ["Kotlin", "Java", 2470], ["Kotlin", "JavaScript", 2799], ["Kotlin", "Julia", 218], ["Kotlin", "Kotlin", 4822], ["Kotlin", "Lisp", 189], ["Kotlin", "Lua", 479], ["Kotlin", "MATLAB", 111], ["Kotlin", "Nim", 139], ["Kotlin", "OCaml", 149], ["Kotlin", "Objective-C", 196], ["Kotlin", "PHP", 632], ["Kotlin", "Perl", 104], ["Kotlin", "PowerShell", 526], ["Kotlin", "Prolog", 96], ["Kotlin", "Python", 2836], ["Kotlin", "R", 234], ["Kotlin", "Raku", 50], ["Kotlin", "Ruby", 422], ["Kotlin", "Rust", 2854], ["Kotlin", "SAS", 56], ["Kotlin", "SQL", 2647], ["Kotlin", "Scala", 459], ["Kotlin", "Solidity", 196], ["Kotlin", "Swift", 1228], ["Kotlin", "TypeScript", 3219], ["Kotlin", "VBA", 78], ["Kotlin", "Visual Basic (.Net)", 144], ["Kotlin", "Zig", 460], ["Lisp", "APL", 83], ["Lisp", "Ada", 66], ["Lisp", "Apex", 32], ["Lisp", "Assembly", 250], ["Lisp", "Bash/Shell (all shells)", 516], ["Lisp", "C", 432], ["Lisp", "C#", 188], ["Lisp", "C++", 337], ["Lisp", "Clojure", 264], ["Lisp", "Cobol", 47], ["Lisp", "Crystal", 60], ["Lisp", "Dart", 109], ["Lisp", "Delphi", 51], ["Lisp", "Elixir", 180], ["Lisp", "Erlang", 143], ["Lisp", "F#", 100], ["Lisp", "Flow", 30], ["Lisp", "Fortran", 71], ["Lisp", "GDScript", 76], ["Lisp", "Go", 309], ["Lisp", "Groovy", 55], ["Lisp", "HTML/CSS", 437], ["Lisp", "Haskell", 292], ["Lisp", "Java", 226], ["Lisp", "JavaScript", 409], ["Lisp", "Julia", 155], ["Lisp", "Kotlin", 169], ["Lisp", "Lisp", 732], ["Lisp", "Lua", 212], ["Lisp", "MATLAB", 50], ["Lisp", "Nim", 76], ["Lisp", "OCaml", 140], ["Lisp", "Objective-C", 58], ["Lisp", "PHP", 117], ["Lisp", "Perl", 103], ["Lisp", "PowerShell", 116], ["Lisp", "Prolog", 105], ["Lisp", "Python", 608], ["Lisp", "R", 117], ["Lisp", "Raku", 52], ["Lisp", "Ruby", 148], ["Lisp", "Rust", 648], ["Lisp", "SAS", 34], ["Lisp", "SQL", 464], ["Lisp", "Scala", 104], ["Lisp", "Solidity", 45], ["Lisp", "Swift", 142], ["Lisp", "TypeScript", 366], ["Lisp", "VBA", 45], ["Lisp", "Visual Basic (.Net)", 46], ["Lisp", "Zig", 202], ["Lua", "APL", 88], ["Lua", "Ada", 77], ["Lua", "Apex", 37], ["Lua", "Assembly", 699], ["Lua", "Bash/Shell (all shells)", 1980], ["Lua", "C", 1427], ["Lua", "C#", 1177], ["Lua", "C++", 1508], ["Lua", "Clojure", 239], ["Lua", "Cobol", 71], ["Lua", "Crystal", 113], ["Lua", "Dart", 445], ["Lua", "Delphi", 72], ["Lua", "Elixir", 442], ["Lua", "Erlang", 194], ["Lua", "F#", 207], ["Lua", "Flow", 38], ["Lua", "Fortran", 75], ["Lua", "GDScript", 327], ["Lua", "Go", 1685], ["Lua", "Groovy", 94], ["Lua", "HTML/CSS", 2052], ["Lua", "Haskell", 588], ["Lua", "Java", 795], ["Lua", "JavaScript", 2017], ["Lua", "Julia", 282], ["Lua", "Kotlin", 777], ["Lua", "Lisp", 337], ["Lua", "Lua", 2560], ["Lua", "MATLAB", 90], ["Lua", "Nim", 186], ["Lua", "OCaml", 221], ["Lua", "Objective-C", 89], ["Lua", "PHP", 504], ["Lua", "Perl", 155], ["Lua", "PowerShell", 438], ["Lua", "Prolog", 91], ["Lua", "Python", 2433], ["Lua", "R", 205], ["Lua", "Raku", 64], ["Lua", "Ruby", 329], ["Lua", "Rust", 2983], ["Lua", "SAS", 40], ["Lua", "SQL", 1805], ["Lua", "Scala", 201], ["Lua", "Solidity", 128], ["Lua", "Swift", 332], ["Lua", "TypeScript", 2260], ["Lua", "VBA", 72], ["Lua", "Visual Basic (.Net)", 88], ["Lua", "Zig", 786], ["MATLAB", "APL", 70], ["MATLAB", "Ada", 86], ["MATLAB", "Apex", 61], ["MATLAB", "Assembly", 335], ["MATLAB", "Bash/Shell (all shells)", 939], ["MATLAB", "C", 884], ["MATLAB", "C#", 692], ["MATLAB", "C++", 1206], ["MATLAB", "Clojure", 102], ["MATLAB", "Cobol", 65], ["MATLAB", "Crystal", 49], ["MATLAB", "Dart", 307], ["MATLAB", "Delphi", 83], ["MATLAB", "Elixir", 144], ["MATLAB", "Erlang", 86], ["MATLAB", "F#", 118], ["MATLAB", "Flow", 48], ["MATLAB", "Fortran", 116], ["MATLAB", "GDScript", 88], ["MATLAB", "Go", 701], ["MATLAB", "Groovy", 71], ["MATLAB", "HTML/CSS", 1105], ["MATLAB", "Haskell", 232], ["MATLAB", "Java", 667], ["MATLAB", "JavaScript", 1252], ["MATLAB", "Julia", 379], ["MATLAB", "Kotlin", 454], ["MATLAB", "Lisp", 138], ["MATLAB", "Lua", 250], ["MATLAB", "MATLAB", 612], ["MATLAB", "Nim", 68], ["MATLAB", "OCaml", 80], ["MATLAB", "Objective-C", 84], ["MATLAB", "PHP", 344], ["MATLAB", "Perl", 91], ["MATLAB", "PowerShell", 366], ["MATLAB", "Prolog", 70], ["MATLAB", "Python", 2091], ["MATLAB", "R", 365], ["MATLAB", "Raku", 45], ["MATLAB", "Ruby", 185], ["MATLAB", "Rust", 1142], ["MATLAB", "SAS", 61], ["MATLAB", "SQL", 1221], ["MATLAB", "Scala", 149], ["MATLAB", "Solidity", 150], ["MATLAB", "Swift", 264], ["MATLAB", "TypeScript", 983], ["MATLAB", "VBA", 92], ["MATLAB", "Visual Basic (.Net)", 125], ["MATLAB", "Zig", 182], ["Nim", "APL", 42], ["Nim", "Ada", 37], ["Nim", "Apex", 24], ["Nim", "Assembly", 73], ["Nim", "Bash/Shell (all shells)", 138], ["Nim", "C", 118], ["Nim", "C#", 60], ["Nim", "C++", 99], ["Nim", "Clojure", 49], ["Nim", "Cobol", 30], ["Nim", "Crystal", 48], ["Nim", "Dart", 63], ["Nim", "Delphi", 29], ["Nim", "Elixir", 64], ["Nim", "Erlang", 31], ["Nim", "F#", 44], ["Nim", "Flow", 26], ["Nim", "Fortran", 27], ["Nim", "GDScript", 59], ["Nim", "Go", 108], ["Nim", "Groovy", 36], ["Nim", "HTML/CSS", 130], ["Nim", "Haskell", 79], ["Nim", "Java", 59], ["Nim", "JavaScript", 116], ["Nim", "Julia", 48], ["Nim", "Kotlin", 76], ["Nim", "Lisp", 59], ["Nim", "Lua", 63], ["Nim", "MATLAB", 22], ["Nim", "Nim", 178], ["Nim", "OCaml", 45], ["Nim", "Objective-C", 28], ["Nim", "PHP", 47], ["Nim", "Perl", 33], ["Nim", "PowerShell", 41], ["Nim", "Prolog", 29], ["Nim", "Python", 162], ["Nim", "R", 31], ["Nim", "Raku", 28], ["Nim", "Ruby", 42], ["Nim", "Rust", 163], ["Nim", "SAS", 21], ["Nim", "SQL", 90], ["Nim", "Scala", 36], ["Nim", "Solidity", 29], ["Nim", "Swift", 44], ["Nim", "TypeScript", 122], ["Nim", "VBA", 21], ["Nim", "Visual Basic (.Net)", 24], ["Nim", "Zig", 100], ["OCaml", "APL", 46], ["OCaml", "Ada", 45], ["OCaml", "Apex", 26], ["OCaml", "Assembly", 106], ["OCaml", "Bash/Shell (all shells)", 201], ["OCaml", "C", 181], ["OCaml", "C#", 86], ["OCaml", "C++", 147], ["OCaml", "Clojure", 64], ["OCaml", "Cobol", 33], ["OCaml", "Crystal", 38], ["OCaml", "Dart", 61], ["OCaml", "Delphi", 29], ["OCaml", "Elixir", 97], ["OCaml", "Erlang", 63], ["OCaml", "F#", 70], ["OCaml", "Flow", 25], ["OCaml", "Fortran", 36], ["OCaml", "GDScript", 37], ["OCaml", "Go", 126], ["OCaml", "Groovy", 31], ["OCaml", "HTML/CSS", 167], ["OCaml", "Haskell", 149], ["OCaml", "Java", 93], ["OCaml", "JavaScript", 171], ["OCaml", "Julia", 68], ["OCaml", "Kotlin", 94], ["OCaml", "Lisp", 87], ["OCaml", "Lua", 89], ["OCaml", "MATLAB", 26], ["OCaml", "Nim", 48], ["OCaml", "OCaml", 331], ["OCaml", "Objective-C", 32], ["OCaml", "PHP", 49], ["OCaml", "Perl", 34], ["OCaml", "PowerShell", 41], ["OCaml", "Prolog", 47], ["OCaml", "Python", 241], ["OCaml", "R", 41], ["OCaml", "Raku", 25], ["OCaml", "Ruby", 48], ["OCaml", "Rust", 332], ["OCaml", "SAS", 21], ["OCaml", "SQL", 167], ["OCaml", "Scala", 64], ["OCaml", "Solidity", 31], ["OCaml", "Swift", 69], ["OCaml", "TypeScript", 199], ["OCaml", "VBA", 29], ["OCaml", "Visual Basic (.Net)", 27], ["OCaml", "Zig", 102], ["Objective-C", "APL", 46], ["Objective-C", "Ada", 54], ["Objective-C", "Apex", 42], ["Objective-C", "Assembly", 177], ["Objective-C", "Bash/Shell (all shells)", 477], ["Objective-C", "C", 365], ["Objective-C", "C#", 423], ["Objective-C", "C++", 487], ["Objective-C", "Clojure", 69], ["Objective-C", "Cobol", 43], ["Objective-C", "Crystal", 46], ["Objective-C", "Dart", 262], ["Objective-C", "Delphi", 76], ["Objective-C", "Elixir", 109], ["Objective-C", "Erlang", 74], ["Objective-C", "F#", 72], ["Objective-C", "Flow", 38], ["Objective-C", "Fortran", 40], ["Objective-C", "GDScript", 67], ["Objective-C", "Go", 405], ["Objective-C", "Groovy", 63], ["Objective-C", "HTML/CSS", 664], ["Objective-C", "Haskell", 97], ["Objective-C", "Java", 371], ["Objective-C", "JavaScript", 781], ["Objective-C", "Julia", 67], ["Objective-C", "Kotlin", 479], ["Objective-C", "Lisp", 74], ["Objective-C", "Lua", 112], ["Objective-C", "MATLAB", 39], ["Objective-C", "Nim", 46], ["Objective-C", "OCaml", 43], ["Objective-C", "Objective-C", 456], ["Objective-C", "PHP", 222], ["Objective-C", "Perl", 66], ["Objective-C", "PowerShell", 174], ["Objective-C", "Prolog", 47], ["Objective-C", "Python", 690], ["Objective-C", "R", 89], ["Objective-C", "Raku", 30], ["Objective-C", "Ruby", 174], ["Objective-C", "Rust", 554], ["Objective-C", "SAS", 41], ["Objective-C", "SQL", 626], ["Objective-C", "Scala", 77], ["Objective-C", "Solidity", 74], ["Objective-C", "Swift", 884], ["Objective-C", "TypeScript", 694], ["Objective-C", "VBA", 52], ["Objective-C", "Visual Basic (.Net)", 69], ["Objective-C", "Zig", 117], ["PHP", "APL", 111], ["PHP", "Ada", 140], ["PHP", "Apex", 150], ["PHP", "Assembly", 800], ["PHP", "Bash/Shell (all shells)", 4013], ["PHP", "C", 1942], ["PHP", "C#", 3274], ["PHP", "C++", 2538], ["PHP", "Clojure", 278], ["PHP", "Cobol", 141], ["PHP", "Crystal", 127], ["PHP", "Dart", 1644], ["PHP", "Delphi", 424], ["PHP", "Elixir", 645], ["PHP", "Erlang", 274], ["PHP", "F#", 276], ["PHP", "Flow", 81], ["PHP", "Fortran", 117], ["PHP", "GDScript", 372], ["PHP", "Go", 3902], ["PHP", "Groovy", 251], ["PHP", "HTML/CSS", 8512], ["PHP", "Haskell", 514], ["PHP", "Java", 2899], ["PHP", "JavaScript", 9434], ["PHP", "Julia", 305], ["PHP", "Kotlin", 2126], ["PHP", "Lisp", 272], ["PHP", "Lua", 934], ["PHP", "MATLAB", 234], ["PHP", "Nim", 167], ["PHP", "OCaml", 176], ["PHP", "Objective-C", 294], ["PHP", "PHP", 6808], ["PHP", "Perl", 360], ["PHP", "PowerShell", 1384], ["PHP", "Prolog", 129], ["PHP", "Python", 6444], ["PHP", "R", 643], ["PHP", "Raku", 83], ["PHP", "Ruby", 949], ["PHP", "Rust", 4186], ["PHP", "SAS", 147], ["PHP", "SQL", 7971], ["PHP", "Scala", 399], ["PHP", "Solidity", 424], ["PHP", "Swift", 1246], ["PHP", "TypeScript", 7057], ["PHP", "VBA", 300], ["PHP", "Visual Basic (.Net)", 463], ["PHP", "Zig", 536], ["Perl", "APL", 46], ["Perl", "Ada", 63], ["Perl", "Apex", 47], ["Perl", "Assembly", 199], ["Perl", "Bash/Shell (all shells)", 941], ["Perl", "C", 512], ["Perl", "C#", 312], ["Perl", "C++", 509], ["Perl", "Clojure", 94], ["Perl", "Cobol", 55], ["Perl", "Crystal", 55], ["Perl", "Dart", 136], ["Perl", "Delphi", 76], ["Perl", "Elixir", 127], ["Perl", "Erlang", 104], ["Perl", "F#", 69], ["Perl", "Flow", 34], ["Perl", "Fortran", 68], ["Perl", "GDScript", 73], ["Perl", "Go", 557], ["Perl", "Groovy", 92], ["Perl", "HTML/CSS", 728], ["Perl", "Haskell", 154], ["Perl", "Java", 429], ["Perl", "JavaScript", 848], ["Perl", "Julia", 116], ["Perl", "Kotlin", 256], ["Perl", "Lisp", 146], ["Perl", "Lua", 224], ["Perl", "MATLAB", 58], ["Perl", "Nim", 68], ["Perl", "OCaml", 65], ["Perl", "Objective-C", 85], ["Perl", "PHP", 354], ["Perl", "Perl", 746], ["Perl", "PowerShell", 226], ["Perl", "Prolog", 78], ["Perl", "Python", 1058], ["Perl", "R", 173], ["Perl", "Raku", 122], ["Perl", "Ruby", 198], ["Perl", "Rust", 709], ["Perl", "SAS", 42], ["Perl", "SQL", 963], ["Perl", "Scala", 106], ["Perl", "Solidity", 62], ["Perl", "Swift", 180], ["Perl", "TypeScript", 559], ["Perl", "VBA", 67], ["Perl", "Visual Basic (.Net)", 63], ["Perl", "Zig", 126], ["PowerShell", "APL", 97], ["PowerShell", "Ada", 125], ["PowerShell", "Apex", 107], ["PowerShell", "Assembly", 787], ["PowerShell", "Bash/Shell (all shells)", 3867], ["PowerShell", "C", 1554], ["PowerShell", "C#", 5339], ["PowerShell", "C++", 2285], ["PowerShell", "Clojure", 248], ["PowerShell", "Cobol", 139], ["PowerShell", "Crystal", 111], ["PowerShell", "Dart", 896], ["PowerShell", "Delphi", 263], ["PowerShell", "Elixir", 414], ["PowerShell", "Erlang", 208], ["PowerShell", "F#", 751], ["PowerShell", "Flow", 77], ["PowerShell", "Fortran", 134], ["PowerShell", "GDScript", 261], ["PowerShell", "Go", 2664], ["PowerShell", "Groovy", 311], ["PowerShell", "HTML/CSS", 5323], ["PowerShell", "Haskell", 495], ["PowerShell", "Java", 1973], ["PowerShell", "JavaScript", 5578], ["PowerShell", "Julia", 315], ["PowerShell", "Kotlin", 1560], ["PowerShell", "Lisp", 274], ["PowerShell", "Lua", 737], ["PowerShell", "MATLAB", 267], ["PowerShell", "Nim", 175], ["PowerShell", "OCaml", 153], ["PowerShell", "Objective-C", 229], ["PowerShell", "PHP", 1209], ["PowerShell", "Perl", 259], ["PowerShell", "PowerShell", 5156], ["PowerShell", "Prolog", 133], ["PowerShell", "Python", 5209], ["PowerShell", "R", 586], ["PowerShell", "Raku", 77], ["PowerShell", "Ruby", 570], ["PowerShell", "Rust", 3625], ["PowerShell", "SAS", 110], ["PowerShell", "SQL", 5727], ["PowerShell", "Scala", 392], ["PowerShell", "Solidity", 279], ["PowerShell", "Swift", 737], ["PowerShell", "TypeScript", 5404], ["PowerShell", "VBA", 320], ["PowerShell", "Visual Basic (.Net)", 435], ["PowerShell", "Zig", 507], ["Prolog", "APL", 52], ["Prolog", "Ada", 49], ["Prolog", "Apex", 32], ["Prolog", "Assembly", 112], ["Prolog", "Bash/Shell (all shells)", 259], ["Prolog", "C", 196], ["Prolog", "C#", 175], ["Prolog", "C++", 220], ["Prolog", "Clojure", 65], ["Prolog", "Cobol", 39], ["Prolog", "Crystal", 37], ["Prolog", "Dart", 118], ["Prolog", "Delphi", 42], ["Prolog", "Elixir", 85], ["Prolog", "Erlang", 66], ["Prolog", "F#", 66], ["Prolog", "Flow", 26], ["Prolog", "Fortran", 44], ["Prolog", "GDScript", 48], ["Prolog", "Go", 207], ["Prolog", "Groovy", 41], ["Prolog", "HTML/CSS", 309], ["Prolog", "Haskell", 155], ["Prolog", "Java", 214], ["Prolog", "JavaScript", 313], ["Prolog", "Julia", 88], ["Prolog", "Kotlin", 178], ["Prolog", "Lisp", 90], ["Prolog", "Lua", 89], ["Prolog", "MATLAB", 42], ["Prolog", "Nim", 43], ["Prolog", "OCaml", 71], ["Prolog", "Objective-C", 48], ["Prolog", "PHP", 97], ["Prolog", "Perl", 58], ["Prolog", "PowerShell", 103], ["Prolog", "Prolog", 186], ["Prolog", "Python", 404], ["Prolog", "R", 80], ["Prolog", "Raku", 35], ["Prolog", "Ruby", 79], ["Prolog", "Rust", 324], ["Prolog", "SAS", 32], ["Prolog", "SQL", 325], ["Prolog", "Scala", 73], ["Prolog", "Solidity", 49], ["Prolog", "Swift", 91], ["Prolog", "TypeScript", 281], ["Prolog", "VBA", 47], ["Prolog", "Visual Basic (.Net)", 41], ["Prolog", "Zig", 87], ["Python", "APL", 284], ["Python", "Ada", 370], ["Python", "Apex", 203], ["Python", "Assembly", 2713], ["Python", "Bash/Shell (all shells)", 11948], ["Python", "C", 6974], ["Python", "C#", 7710], ["Python", "C++", 9656], ["Python", "Clojure", 1055], ["Python", "Cobol", 260], ["Python", "Crystal", 326], ["Python", "Dart", 3318], ["Python", "Delphi", 476], ["Python", "Elixir", 2015], ["Python", "Erlang", 773], ["Python", "F#", 950], ["Python", "Flow", 120], ["Python", "Fortran", 393], ["Python", "GDScript", 1072], ["Python", "Go", 10710], ["Python", "Groovy", 719], ["Python", "HTML/CSS", 14264], ["Python", "Haskell", 2270], ["Python", "Java", 7344], ["Python", "JavaScript", 16377], ["Python", "Julia", 1773], ["Python", "Kotlin", 5594], ["Python", "Lisp", 1165], ["Python", "Lua", 2788], ["Python", "MATLAB", 901], ["Python", "Nim", 614], ["Python", "OCaml", 692], ["Python", "Objective-C", 513], ["Python", "PHP", 3361], ["Python", "Perl", 645], ["Python", "PowerShell", 3200], ["Python", "Prolog", 388], ["Python", "Python", 28278], ["Python", "R", 2243], ["Python", "Raku", 181], ["Python", "Ruby", 2096], ["Python", "Rust", 16647], ["Python", "SAS", 224], ["Python", "SQL", 15280], ["Python", "Scala", 1717], ["Python", "Solidity", 990], ["Python", "Swift", 2736], ["Python", "TypeScript", 15048], ["Python", "VBA", 498], ["Python", "Visual Basic (.Net)", 672], ["Python", "Zig", 2331], ["R", "APL", 76], ["R", "Ada", 72], ["R", "Apex", 58], ["R", "Assembly", 257], ["R", "Bash/Shell (all shells)", 1121], ["R", "C", 623], ["R", "C#", 625], ["R", "C++", 813], ["R", "Clojure", 130], ["R", "Cobol", 62], ["R", "Crystal", 58], ["R", "Dart", 273], ["R", "Delphi", 73], ["R", "Elixir", 187], ["R", "Erlang", 106], ["R", "F#", 137], ["R", "Flow", 45], ["R", "Fortran", 100], ["R", "GDScript", 95], ["R", "Go", 768], ["R", "Groovy", 93], ["R", "HTML/CSS", 1170], ["R", "Haskell", 268], ["R", "Java", 626], ["R", "JavaScript", 1326], ["R", "Julia", 482], ["R", "Kotlin", 389], ["R", "Lisp", 176], ["R", "Lua", 269], ["R", "MATLAB", 188], ["R", "Nim", 78], ["R", "OCaml", 95], ["R", "Objective-C", 73], ["R", "PHP", 304], ["R", "Perl", 133], ["R", "PowerShell", 360], ["R", "Prolog", 86], ["R", "Python", 2356], ["R", "R", 1443], ["R", "Raku", 52], ["R", "Ruby", 232], ["R", "Rust", 1207], ["R", "SAS", 90], ["R", "SQL", 1731], ["R", "Scala", 240], ["R", "Solidity", 120], ["R", "Swift", 251], ["R", "TypeScript", 1025], ["R", "VBA", 127], ["R", "Visual Basic (.Net)", 106], ["R", "Zig", 181], ["Raku", "APL", 33], ["Raku", "Ada", 30], ["Raku", "Apex", 26], ["Raku", "Assembly", 40], ["Raku", "Bash/Shell (all shells)", 64], ["Raku", "C", 53], ["Raku", "C#", 29], ["Raku", "C++", 42], ["Raku", "Clojure", 37], ["Raku", "Cobol", 30], ["Raku", "Crystal", 29], ["Raku", "Dart", 29], ["Raku", "Delphi", 25], ["Raku", "Elixir", 38], ["Raku", "Erlang", 29], ["Raku", "F#", 30], ["Raku", "Flow", 23], ["Raku", "Fortran", 28], ["Raku", "GDScript", 29], ["Raku", "Go", 40], ["Raku", "Groovy", 25], ["Raku", "HTML/CSS", 52], ["Raku", "Haskell", 37], ["Raku", "Java", 32], ["Raku", "JavaScript", 56], ["Raku", "Julia", 38], ["Raku", "Kotlin", 32], ["Raku", "Lisp", 35], ["Raku", "Lua", 45], ["Raku", "MATLAB", 22], ["Raku", "Nim", 33], ["Raku", "OCaml", 29], ["Raku", "Objective-C", 26], ["Raku", "PHP", 33], ["Raku", "Perl", 73], ["Raku", "PowerShell", 31], ["Raku", "Prolog", 29], ["Raku", "Python", 57], ["Raku", "R", 30], ["Raku", "Raku", 102], ["Raku", "Ruby", 41], ["Raku", "Rust", 71], ["Raku", "SAS", 25], ["Raku", "SQL", 59], ["Raku", "Scala", 32], ["Raku", "Solidity", 26], ["Raku", "Swift", 30], ["Raku", "TypeScript", 48], ["Raku", "VBA", 26], ["Raku", "Visual Basic (.Net)", 27], ["Raku", "Zig", 36], ["Ruby", "APL", 69], ["Ruby", "Ada", 86], ["Ruby", "Apex", 48], ["Ruby", "Assembly", 272], ["Ruby", "Bash/Shell (all shells)", 1592], ["Ruby", "C", 589], ["Ruby", "C#", 662], ["Ruby", "C++", 645], ["Ruby", "Clojure", 247], ["Ruby", "Cobol", 70], ["Ruby", "Crystal", 256], ["Ruby", "Dart", 405], ["Ruby", "Delphi", 58], ["Ruby", "Elixir", 866], ["Ruby", "Erlang", 252], ["Ruby", "F#", 129], ["Ruby", "Flow", 43], ["Ruby", "Fortran", 63], ["Ruby", "GDScript", 143], ["Ruby", "Go", 1522], ["Ruby", "Groovy", 118], ["Ruby", "HTML/CSS", 2111], ["Ruby", "Haskell", 305], ["Ruby", "Java", 704], ["Ruby", "JavaScript", 2349], ["Ruby", "Julia", 158], ["Ruby", "Kotlin", 697], ["Ruby", "Lisp", 216], ["Ruby", "Lua", 406], ["Ruby", "MATLAB", 59], ["Ruby", "Nim", 116], ["Ruby", "OCaml", 130], ["Ruby", "Objective-C", 126], ["Ruby", "PHP", 456], ["Ruby", "Perl", 157], ["Ruby", "PowerShell", 305], ["Ruby", "Prolog", 86], ["Ruby", "Python", 1861], ["Ruby", "R", 192], ["Ruby", "Raku", 58], ["Ruby", "Ruby", 2601], ["Ruby", "Rust", 1952], ["Ruby", "SAS", 49], ["Ruby", "SQL", 2093], ["Ruby", "Scala", 227], ["Ruby", "Solidity", 128], ["Ruby", "Swift", 577], ["Ruby", "TypeScript", 2139], ["Ruby", "VBA", 66], ["Ruby", "Visual Basic (.Net)", 73], ["Ruby", "Zig", 333], ["Rust", "APL", 144], ["Rust", "Ada", 142], ["Rust", "Apex", 45], ["Rust", "Assembly", 1162], ["Rust", "Bash/Shell (all shells)", 3213], ["Rust", "C", 2335], ["Rust", "C#", 1750], ["Rust", "C++", 2245], ["Rust", "Clojure", 425], ["Rust", "Cobol", 88], ["Rust", "Crystal", 197], ["Rust", "Dart", 819], ["Rust", "Delphi", 51], ["Rust", "Elixir", 992], ["Rust", "Erlang", 391], ["Rust", "F#", 405], ["Rust", "Flow", 42], ["Rust", "Fortran", 98], ["Rust", "GDScript", 493], ["Rust", "Go", 2891], ["Rust", "Groovy", 132], ["Rust", "HTML/CSS", 3477], ["Rust", "Haskell", 1272], ["Rust", "Java", 1314], ["Rust", "JavaScript", 3252], ["Rust", "Julia", 549], ["Rust", "Kotlin", 1576], ["Rust", "Lisp", 543], ["Rust", "Lua", 1201], ["Rust", "MATLAB", 120], ["Rust", "Nim", 329], ["Rust", "OCaml", 470], ["Rust", "Objective-C", 109], ["Rust", "PHP", 548], ["Rust", "Perl", 167], ["Rust", "PowerShell", 579], ["Rust", "Prolog", 176], ["Rust", "Python", 4581], ["Rust", "R", 289], ["Rust", "Raku", 69], ["Rust", "Ruby", 508], ["Rust", "Rust", 9674], ["Rust", "SAS", 45], ["Rust", "SQL", 3265], ["Rust", "Scala", 479], ["Rust", "Solidity", 269], ["Rust", "Swift", 740], ["Rust", "TypeScript", 4668], ["Rust", "VBA", 57], ["Rust", "Visual Basic (.Net)", 80], ["Rust", "Zig", 1729], ["SAS", "APL", 31], ["SAS", "Ada", 35], ["SAS", "Apex", 33], ["SAS", "Assembly", 46], ["SAS", "Bash/Shell (all shells)", 108], ["SAS", "C", 62], ["SAS", "C#", 94], ["SAS", "C++", 81], ["SAS", "Clojure", 37], ["SAS", "Cobol", 34], ["SAS", "Crystal", 31], ["SAS", "Dart", 64], ["SAS", "Delphi", 37], ["SAS", "Elixir", 36], ["SAS", "Erlang", 30], ["SAS", "F#", 31], ["SAS", "Flow", 29], ["SAS", "Fortran", 32], ["SAS", "GDScript", 34], ["SAS", "Go", 92], ["SAS", "Groovy", 34], ["SAS", "HTML/CSS", 169], ["SAS", "Haskell", 38], ["SAS", "Java", 87], ["SAS", "JavaScript", 186], ["SAS", "Julia", 50], ["SAS", "Kotlin", 64], ["SAS", "Lisp", 30], ["SAS", "Lua", 44], ["SAS", "MATLAB", 36], ["SAS", "Nim", 29], ["SAS", "OCaml", 29], ["SAS", "Objective-C", 35], ["SAS", "PHP", 87], ["SAS", "Perl", 38], ["SAS", "PowerShell", 74], ["SAS", "Prolog", 31], ["SAS", "Python", 224], ["SAS", "R", 100], ["SAS", "Raku", 28], ["SAS", "Ruby", 51], ["SAS", "Rust", 94], ["SAS", "SAS", 160], ["SAS", "SQL", 209], ["SAS", "Scala", 44], ["SAS", "Solidity", 39], ["SAS", "Swift", 47], ["SAS", "TypeScript", 130], ["SAS", "VBA", 38], ["SAS", "Visual Basic (.Net)", 44], ["SAS", "Zig", 38], ["SQL", "APL", 210], ["SQL", "Ada", 262], ["SQL", "Apex", 307], ["SQL", "Assembly", 1783], ["SQL", "Bash/Shell (all shells)", 10569], ["SQL", "C", 4423], ["SQL", "C#", 11405], ["SQL", "C++", 6013], ["SQL", "Clojure", 923], ["SQL", "Cobol", 263], ["SQL", "Crystal", 330], ["SQL", "Dart", 3273], ["SQL", "Delphi", 1073], ["SQL", "Elixir", 2021], ["SQL", "Erlang", 784], ["SQL", "F#", 1300], ["SQL", "Flow", 118], ["SQL", "Fortran", 244], ["SQL", "GDScript", 740], ["SQL", "Go", 10194], ["SQL", "Groovy", 764], ["SQL", "HTML/CSS", 17845], ["SQL", "Haskell", 1547], ["SQL", "Java", 8272], ["SQL", "JavaScript", 19784], ["SQL", "Julia", 966], ["SQL", "Kotlin", 5718], ["SQL", "Lisp", 822], ["SQL", "Lua", 2111], ["SQL", "MATLAB", 555], ["SQL", "Nim", 400], ["SQL", "OCaml", 470], ["SQL", "Objective-C", 523], ["SQL", "PHP", 5563], ["SQL", "Perl", 668], ["SQL", "PowerShell", 4366], ["SQL", "Prolog", 313], ["SQL", "Python", 18068], ["SQL", "R", 1978], ["SQL", "Raku", 154], ["SQL", "Ruby", 2518], ["SQL", "Rust", 12791], ["SQL", "SAS", 253], ["SQL", "SQL", 27389], ["SQL", "Scala", 1604], ["SQL", "Solidity", 894], ["SQL", "Swift", 2572], ["SQL", "TypeScript", 17661], ["SQL", "VBA", 662], ["SQL", "Visual Basic (.Net)", 950], ["SQL", "Zig", 1618], ["Scala", "APL", 56], ["Scala", "Ada", 46], ["Scala", "Apex", 31], ["Scala", "Assembly", 117], ["Scala", "Bash/Shell (all shells)", 669], ["Scala", "C", 238], ["Scala", "C#", 273], ["Scala", "C++", 268], ["Scala", "Clojure", 166], ["Scala", "Cobol", 37], ["Scala", "Crystal", 45], ["Scala", "Dart", 147], ["Scala", "Delphi", 28], ["Scala", "Elixir", 206], ["Scala", "Erlang", 98], ["Scala", "F#", 121], ["Scala", "Flow", 27], ["Scala", "Fortran", 37], ["Scala", "GDScript", 60], ["Scala", "Go", 579], ["Scala", "Groovy", 91], ["Scala", "HTML/CSS", 522], ["Scala", "Haskell", 269], ["Scala", "Java", 663], ["Scala", "JavaScript", 586], ["Scala", "Julia", 136], ["Scala", "Kotlin", 515], ["Scala", "Lisp", 101], ["Scala", "Lua", 154], ["Scala", "MATLAB", 32], ["Scala", "Nim", 52], ["Scala", "OCaml", 117], ["Scala", "Objective-C", 43], ["Scala", "PHP", 97], ["Scala", "Perl", 57], ["Scala", "PowerShell", 133], ["Scala", "Prolog", 68], ["Scala", "Python", 910], ["Scala", "R", 113], ["Scala", "Raku", 34], ["Scala", "Ruby", 133], ["Scala", "Rust", 1027], ["Scala", "SAS", 37], ["Scala", "SQL", 858], ["Scala", "Scala", 1266], ["Scala", "Solidity", 62], ["Scala", "Swift", 151], ["Scala", "TypeScript", 774], ["Scala", "VBA", 33], ["Scala", "Visual Basic (.Net)", 30], ["Scala", "Zig", 158], ["Solidity", "APL", 38], ["Solidity", "Ada", 41], ["Solidity", "Apex", 30], ["Solidity", "Assembly", 95], ["Solidity", "Bash/Shell (all shells)", 320], ["Solidity", "C", 158], ["Solidity", "C#", 212], ["Solidity", "C++", 219], ["Solidity", "Clojure", 49], ["Solidity", "Cobol", 35], ["Solidity", "Crystal", 35], ["Solidity", "Dart", 166], ["Solidity", "Delphi", 32], ["Solidity", "Elixir", 106], ["Solidity", "Erlang", 56], ["Solidity", "F#", 46], ["Solidity", "Flow", 29], ["Solidity", "Fortran", 30], ["Solidity", "GDScript", 48], ["Solidity", "Go", 450], ["Solidity", "Groovy", 39], ["Solidity", "HTML/CSS", 495], ["Solidity", "Haskell", 94], ["Solidity", "Java", 202], ["Solidity", "JavaScript", 600], ["Solidity", "Julia", 57], ["Solidity", "Kotlin", 178], ["Solidity", "Lisp", 56], ["Solidity", "Lua", 94], ["Solidity", "MATLAB", 45], ["Solidity", "Nim", 47], ["Solidity", "OCaml", 38], ["Solidity", "Objective-C", 43], ["Solidity", "PHP", 111], ["Solidity", "Perl", 39], ["Solidity", "PowerShell", 96], ["Solidity", "Prolog", 39], ["Solidity", "Python", 532], ["Solidity", "R", 70], ["Solidity", "Raku", 26], ["Solidity", "Ruby", 87], ["Solidity", "Rust", 575], ["Solidity", "SAS", 33], ["Solidity", "SQL", 446], ["Solidity", "Scala", 68], ["Solidity", "Solidity", 542], ["Solidity", "Swift", 127], ["Solidity", "TypeScript", 655], ["Solidity", "VBA", 33], ["Solidity", "Visual Basic (.Net)", 44], ["Solidity", "Zig", 106], ["Swift", "APL", 49], ["Swift", "Ada", 65], ["Swift", "Apex", 43], ["Swift", "Assembly", 224], ["Swift", "Bash/Shell (all shells)", 896], ["Swift", "C", 509], ["Swift", "C#", 717], ["Swift", "C++", 679], ["Swift", "Clojure", 102], ["Swift", "Cobol", 58], ["Swift", "Crystal", 62], ["Swift", "Dart", 609], ["Swift", "Delphi", 90], ["Swift", "Elixir", 215], ["Swift", "Erlang", 104], ["Swift", "F#", 104], ["Swift", "Flow", 40], ["Swift", "Fortran", 50], ["Swift", "GDScript", 109], ["Swift", "Go", 836], ["Swift", "Groovy", 80], ["Swift", "HTML/CSS", 1343], ["Swift", "Haskell", 179], ["Swift", "Java", 662], ["Swift", "JavaScript", 1534], ["Swift", "Julia", 119], ["Swift", "Kotlin", 1087], ["Swift", "Lisp", 101], ["Swift", "Lua", 200], ["Swift", "MATLAB", 75], ["Swift", "Nim", 60], ["Swift", "OCaml", 74], ["Swift", "Objective-C", 355], ["Swift", "PHP", 382], ["Swift", "Perl", 75], ["Swift", "PowerShell", 235], ["Swift", "Prolog", 58], ["Swift", "Python", 1376], ["Swift", "R", 131], ["Swift", "Raku", 32], ["Swift", "Ruby", 329], ["Swift", "Rust", 1151], ["Swift", "SAS", 45], ["Swift", "SQL", 1142], ["Swift", "Scala", 122], ["Swift", "Solidity", 110], ["Swift", "Swift", 2501], ["Swift", "TypeScript", 1449], ["Swift", "VBA", 63], ["Swift", "Visual Basic (.Net)", 80], ["Swift", "Zig", 205], ["TypeScript", "APL", 151], ["TypeScript", "Ada", 177], ["TypeScript", "Apex", 149], ["TypeScript", "Assembly", 1278], ["TypeScript", "Bash/Shell (all shells)", 7544], ["TypeScript", "C", 2918], ["TypeScript", "C#", 8329], ["TypeScript", "C++", 4146], ["TypeScript", "Clojure", 769], ["TypeScript", "Cobol", 161], ["TypeScript", "Crystal", 287], ["TypeScript", "Dart", 3037], ["TypeScript", "Delphi", 224], ["TypeScript", "Elixir", 1897], ["TypeScript", "Erlang", 593], ["TypeScript", "F#", 1112], ["TypeScript", "Flow", 92], ["TypeScript", "Fortran", 125], ["TypeScript", "GDScript", 765], ["TypeScript", "Go", 8848], ["TypeScript", "Groovy", 461], ["TypeScript", "HTML/CSS", 15964], ["TypeScript", "Haskell", 1502], ["TypeScript", "Java", 5437], ["TypeScript", "JavaScript", 17574], ["TypeScript", "Julia", 646], ["TypeScript", "Kotlin", 4878], ["TypeScript", "Lisp", 598], ["TypeScript", "Lua", 1865], ["TypeScript", "MATLAB", 254], ["TypeScript", "Nim", 374], ["TypeScript", "OCaml", 498], ["TypeScript", "Objective-C", 355], ["TypeScript", "PHP", 2729], ["TypeScript", "Perl", 269], ["TypeScript", "PowerShell", 2776], ["TypeScript", "Prolog", 216], ["TypeScript", "Python", 12018], ["TypeScript", "R", 775], ["TypeScript", "Raku", 106], ["TypeScript", "Ruby", 1734], ["TypeScript", "Rust", 12747], ["TypeScript", "SAS", 132], ["TypeScript", "SQL", 12505], ["TypeScript", "Scala", 1134], ["TypeScript", "Solidity", 925], ["TypeScript", "Swift", 2277], ["TypeScript", "TypeScript", 24409], ["TypeScript", "VBA", 199], ["TypeScript", "Visual Basic (.Net)", 382], ["TypeScript", "Zig", 1890], ["VBA", "APL", 40], ["VBA", "Ada", 49], ["VBA", "Apex", 49], ["VBA", "Assembly", 206], ["VBA", "Bash/Shell (all shells)", 723], ["VBA", "C", 426], ["VBA", "C#", 1131], ["VBA", "C++", 620], ["VBA", "Clojure", 61], ["VBA", "Cobol", 60], ["VBA", "Crystal", 43], ["VBA", "Dart", 208], ["VBA", "Delphi", 198], ["VBA", "Elixir", 84], ["VBA", "Erlang", 59], ["VBA", "F#", 122], ["VBA", "Flow", 35], ["VBA", "Fortran", 55], ["VBA", "GDScript", 60], ["VBA", "Go", 471], ["VBA", "Groovy", 81], ["VBA", "HTML/CSS", 1327], ["VBA", "Haskell", 89], ["VBA", "Java", 598], ["VBA", "JavaScript", 1419], ["VBA", "Julia", 111], ["VBA", "Kotlin", 349], ["VBA", "Lisp", 82], ["VBA", "Lua", 175], ["VBA", "MATLAB", 100], ["VBA", "Nim", 36], ["VBA", "OCaml", 42], ["VBA", "Objective-C", 89], ["VBA", "PHP", 471], ["VBA", "Perl", 85], ["VBA", "PowerShell", 628], ["VBA", "Prolog", 48], ["VBA", "Python", 1451], ["VBA", "R", 277], ["VBA", "Raku", 28], ["VBA", "Ruby", 159], ["VBA", "Rust", 641], ["VBA", "SAS", 58], ["VBA", "SQL", 1686], ["VBA", "Scala", 102], ["VBA", "Solidity", 75], ["VBA", "Swift", 203], ["VBA", "TypeScript", 942], ["VBA", "VBA", 740], ["VBA", "Visual Basic (.Net)", 320], ["VBA", "Zig", 89], ["Visual Basic (.Net)", "APL", 60], ["Visual Basic (.Net)", "Ada", 75], ["Visual Basic (.Net)", "Apex", 73], ["Visual Basic (.Net)", "Assembly", 251], ["Visual Basic (.Net)", "Bash/Shell (all shells)", 738], ["Visual Basic (.Net)", "C", 472], ["Visual Basic (.Net)", "C#", 1790], ["Visual Basic (.Net)", "C++", 690], ["Visual Basic (.Net)", "Clojure", 85], ["Visual Basic (.Net)", "Cobol", 81], ["Visual Basic (.Net)", "Crystal", 73], ["Visual Basic (.Net)", "Dart", 306], ["Visual Basic (.Net)", "Delphi", 138], ["Visual Basic (.Net)", "Elixir", 111], ["Visual Basic (.Net)", "Erlang", 80], ["Visual Basic (.Net)", "F#", 193], ["Visual Basic (.Net)", "Flow", 50], ["Visual Basic (.Net)", "Fortran", 70], ["Visual Basic (.Net)", "GDScript", 90], ["Visual Basic (.Net)", "Go", 604], ["Visual Basic (.Net)", "Groovy", 100], ["Visual Basic (.Net)", "HTML/CSS", 1658], ["Visual Basic (.Net)", "Haskell", 124], ["Visual Basic (.Net)", "Java", 702], ["Visual Basic (.Net)", "JavaScript", 1777], ["Visual Basic (.Net)", "Julia", 87], ["Visual Basic (.Net)", "Kotlin", 459], ["Visual Basic (.Net)", "Lisp", 90], ["Visual Basic (.Net)", "Lua", 194], ["Visual Basic (.Net)", "MATLAB", 124], ["Visual Basic (.Net)", "Nim", 57], ["Visual Basic (.Net)", "OCaml", 52], ["Visual Basic (.Net)", "Objective-C", 121], ["Visual Basic (.Net)", "PHP", 555], ["Visual Basic (.Net)", "Perl", 108], ["Visual Basic (.Net)", "PowerShell", 717], ["Visual Basic (.Net)", "Prolog", 65], ["Visual Basic (.Net)", "Python", 1423], ["Visual Basic (.Net)", "R", 218], ["Visual Basic (.Net)", "Raku", 42], ["Visual Basic (.Net)", "Ruby", 207], ["Visual Basic (.Net)", "Rust", 711], ["Visual Basic (.Net)", "SAS", 76], ["Visual Basic (.Net)", "SQL", 1886], ["Visual Basic (.Net)", "Scala", 124], ["Visual Basic (.Net)", "Solidity", 116], ["Visual Basic (.Net)", "Swift", 280], ["Visual Basic (.Net)", "TypeScript", 1238], ["Visual Basic (.Net)", "VBA", 256], ["Visual Basic (.Net)", "Visual Basic (.Net)", 830], ["Visual Basic (.Net)", "Zig", 102], ["Zig", "APL", 48], ["Zig", "Ada", 47], ["Zig", "Apex", 28], ["Zig", "Assembly", 169], ["Zig", "Bash/Shell (all shells)", 243], ["Zig", "C", 293], ["Zig", "C#", 123], ["Zig", "C++", 177], ["Zig", "Clojure", 79], ["Zig", "Cobol", 33], ["Zig", "Crystal", 55], ["Zig", "Dart", 92], ["Zig", "Delphi", 24], ["Zig", "Elixir", 127], ["Zig", "Erlang", 66], ["Zig", "F#", 52], ["Zig", "Flow", 25], ["Zig", "Fortran", 36], ["Zig", "GDScript", 73], ["Zig", "Go", 220], ["Zig", "Groovy", 32], ["Zig", "HTML/CSS", 222], ["Zig", "Haskell", 151], ["Zig", "Java", 87], ["Zig", "JavaScript", 195], ["Zig", "Julia", 69], ["Zig", "Kotlin", 112], ["Zig", "Lisp", 91], ["Zig", "Lua", 156], ["Zig", "MATLAB", 30], ["Zig", "Nim", 90], ["Zig", "OCaml", 84], ["Zig", "Objective-C", 40], ["Zig", "PHP", 53], ["Zig", "Perl", 36], ["Zig", "PowerShell", 65], ["Zig", "Prolog", 45], ["Zig", "Python", 253], ["Zig", "R", 36], ["Zig", "Raku", 33], ["Zig", "Ruby", 49], ["Zig", "Rust", 416], ["Zig", "SAS", 23], ["Zig", "SQL", 178], ["Zig", "Scala", 40], ["Zig", "Solidity", 35], ["Zig", "Swift", 75], ["Zig", "TypeScript", 250], ["Zig", "VBA", 28], ["Zig", "Visual Basic (.Net)", 25], ["Zig", "Zig", 520]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents who are learning to code want to work with the various DBs and which database are they currently using?", "labels": [{"query": "SELECT Databases1.name AS have_worked_with, Databases2.name AS want_to_work_with, COUNT(*) FROM Response_DatabaseHaveWorkedWith JOIN Databases AS Databases1 ON Response_DatabaseHaveWorkedWith.Databases_id = Databases1.id JOIN Response_DatabaseWantToWorkWith ON Response_DatabaseWantToWorkWith.Response_id = Response_DatabaseHaveWorkedWith.Response_id JOIN Responses ON Response_DatabaseWantToWorkWith.Response_id = Responses.id JOIN Databases AS Databases2 ON Response_DatabaseWantToWorkWith.Databases_id = Databases2.id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY Databases1.name, Databases2.name", "results": [["BigQuery", "BigQuery", 37], ["BigQuery", "Cassandra", 14], ["BigQuery", "Clickhouse", 7], ["BigQuery", "Cloud Firestore", 10], ["BigQuery", "Cockroachdb", 9], ["BigQuery", "Cosmos DB", 7], ["BigQuery", "Couch DB", 8], ["BigQuery", "Couchbase", 9], ["BigQuery", "Datomic", 7], ["BigQuery", "DuckDB", 6], ["BigQuery", "Dynamodb", 9], ["BigQuery", "Elasticsearch", 11], ["BigQuery", "Firebase Realtime Database", 14], ["BigQuery", "Firebird", 6], ["BigQuery", "H2", 7], ["BigQuery", "IBM DB2", 6], ["BigQuery", "InfluxDB", 6], ["BigQuery", "MariaDB", 16], ["BigQuery", "Microsoft Access", 12], ["BigQuery", "Microsoft SQL Server", 13], ["BigQuery", "MongoDB", 28], ["BigQuery", "MySQL", 36], ["BigQuery", "Neo4J", 8], ["BigQuery", "Oracle", 15], ["BigQuery", "PostgreSQL", 25], ["BigQuery", "RavenDB", 5], ["BigQuery", "Redis", 16], ["BigQuery", "SQLite", 22], ["BigQuery", "Snowflake", 7], ["BigQuery", "Solr", 5], ["BigQuery", "Supabase", 11], ["BigQuery", "TiDB", 5], ["Cassandra", "BigQuery", 4], ["Cassandra", "Cassandra", 14], ["Cassandra", "Clickhouse", 4], ["Cassandra", "Cloud Firestore", 3], ["Cassandra", "Cockroachdb", 5], ["Cassandra", "Cosmos DB", 4], ["Cassandra", "Couch DB", 5], ["Cassandra", "Couchbase", 3], ["Cassandra", "Datomic", 4], ["Cassandra", "DuckDB", 3], ["Cassandra", "Dynamodb", 4], ["Cassandra", "Elasticsearch", 5], ["Cassandra", "Firebase Realtime Database", 6], ["Cassandra", "Firebird", 4], ["Cassandra", "H2", 3], ["Cassandra", "IBM DB2", 3], ["Cassandra", "InfluxDB", 5], ["Cassandra", "MariaDB", 7], ["Cassandra", "Microsoft Access", 3], ["Cassandra", "Microsoft SQL Server", 3], ["Cassandra", "MongoDB", 14], ["Cassandra", "MySQL", 12], ["Cassandra", "Neo4J", 8], ["Cassandra", "Oracle", 3], ["Cassandra", "PostgreSQL", 15], ["Cassandra", "RavenDB", 2], ["Cassandra", "Redis", 10], ["Cassandra", "SQLite", 7], ["Cassandra", "Snowflake", 2], ["Cassandra", "Solr", 2], ["Cassandra", "Supabase", 4], ["Cassandra", "TiDB", 3], ["Clickhouse", "BigQuery", 5], ["Clickhouse", "Cassandra", 3], ["Clickhouse", "Clickhouse", 10], ["Clickhouse", "Cloud Firestore", 2], ["Clickhouse", "Cockroachdb", 5], ["Clickhouse", "Cosmos DB", 4], ["Clickhouse", "Couch DB", 3], ["Clickhouse", "Couchbase", 2], ["Clickhouse", "Datomic", 4], ["Clickhouse", "DuckDB", 3], ["Clickhouse", "Dynamodb", 3], ["Clickhouse", "Elasticsearch", 4], ["Clickhouse", "Firebase Realtime Database", 3], ["Clickhouse", "Firebird", 3], ["Clickhouse", "H2", 3], ["Clickhouse", "IBM DB2", 3], ["Clickhouse", "InfluxDB", 4], ["Clickhouse", "MariaDB", 3], ["Clickhouse", "Microsoft Access", 3], ["Clickhouse", "Microsoft SQL Server", 3], ["Clickhouse", "MongoDB", 5], ["Clickhouse", "MySQL", 5], ["Clickhouse", "Neo4J", 4], ["Clickhouse", "Oracle", 3], ["Clickhouse", "PostgreSQL", 7], ["Clickhouse", "RavenDB", 3], ["Clickhouse", "Redis", 7], ["Clickhouse", "SQLite", 4], ["Clickhouse", "Snowflake", 3], ["Clickhouse", "Solr", 3], ["Clickhouse", "Supabase", 4], ["Clickhouse", "TiDB", 5], ["Cloud Firestore", "BigQuery", 15], ["Cloud Firestore", "Cassandra", 34], ["Cloud Firestore", "Clickhouse", 6], ["Cloud Firestore", "Cloud Firestore", 144], ["Cloud Firestore", "Cockroachdb", 17], ["Cloud Firestore", "Cosmos DB", 12], ["Cloud Firestore", "Couch DB", 7], ["Cloud Firestore", "Couchbase", 4], ["Cloud Firestore", "Datomic", 5], ["Cloud Firestore", "DuckDB", 5], ["Cloud Firestore", "Dynamodb", 12], ["Cloud Firestore", "Elasticsearch", 21], ["Cloud Firestore", "Firebase Realtime Database", 76], ["Cloud Firestore", "Firebird", 5], ["Cloud Firestore", "H2", 6], ["Cloud Firestore", "IBM DB2", 3], ["Cloud Firestore", "InfluxDB", 4], ["Cloud Firestore", "MariaDB", 29], ["Cloud Firestore", "Microsoft Access", 9], ["Cloud Firestore", "Microsoft SQL Server", 24], ["Cloud Firestore", "MongoDB", 132], ["Cloud Firestore", "MySQL", 103], ["Cloud Firestore", "Neo4J", 17], ["Cloud Firestore", "Oracle", 20], ["Cloud Firestore", "PostgreSQL", 94], ["Cloud Firestore", "RavenDB", 5], ["Cloud Firestore", "Redis", 55], ["Cloud Firestore", "SQLite", 72], ["Cloud Firestore", "Snowflake", 8], ["Cloud Firestore", "Solr", 5], ["Cloud Firestore", "Supabase", 66], ["Cloud Firestore", "TiDB", 5], ["Cockroachdb", "BigQuery", 4], ["Cockroachdb", "Cassandra", 5], ["Cockroachdb", "Clickhouse", 5], ["Cockroachdb", "Cloud Firestore", 2], ["Cockroachdb", "Cockroachdb", 10], ["Cockroachdb", "Cosmos DB", 3], ["Cockroachdb", "Couch DB", 4], ["Cockroachdb", "Couchbase", 4], ["Cockroachdb", "Datomic", 3], ["Cockroachdb", "DuckDB", 4], ["Cockroachdb", "Dynamodb", 4], ["Cockroachdb", "Elasticsearch", 4], ["Cockroachdb", "Firebase Realtime Database", 4], ["Cockroachdb", "Firebird", 3], ["Cockroachdb", "H2", 5], ["Cockroachdb", "IBM DB2", 4], ["Cockroachdb", "InfluxDB", 4], ["Cockroachdb", "MariaDB", 5], ["Cockroachdb", "Microsoft Access", 5], ["Cockroachdb", "Microsoft SQL Server", 4], ["Cockroachdb", "MongoDB", 8], ["Cockroachdb", "MySQL", 7], ["Cockroachdb", "Neo4J", 6], ["Cockroachdb", "Oracle", 4], ["Cockroachdb", "PostgreSQL", 17], ["Cockroachdb", "RavenDB", 4], ["Cockroachdb", "Redis", 12], ["Cockroachdb", "SQLite", 9], ["Cockroachdb", "Snowflake", 4], ["Cockroachdb", "Solr", 4], ["Cockroachdb", "Supabase", 8], ["Cockroachdb", "TiDB", 5], ["Cosmos DB", "BigQuery", 7], ["Cosmos DB", "Cassandra", 9], ["Cosmos DB", "Clickhouse", 3], ["Cosmos DB", "Cloud Firestore", 5], ["Cosmos DB", "Cockroachdb", 6], ["Cosmos DB", "Cosmos DB", 14], ["Cosmos DB", "Couch DB", 3], ["Cosmos DB", "Couchbase", 2], ["Cosmos DB", "Datomic", 4], ["Cosmos DB", "DuckDB", 2], ["Cosmos DB", "Dynamodb", 3], ["Cosmos DB", "Elasticsearch", 6], ["Cosmos DB", "Firebase Realtime Database", 7], ["Cosmos DB", "Firebird", 3], ["Cosmos DB", "H2", 2], ["Cosmos DB", "IBM DB2", 2], ["Cosmos DB", "InfluxDB", 2], ["Cosmos DB", "MariaDB", 8], ["Cosmos DB", "Microsoft Access", 5], ["Cosmos DB", "Microsoft SQL Server", 7], ["Cosmos DB", "MongoDB", 12], ["Cosmos DB", "MySQL", 12], ["Cosmos DB", "Neo4J", 7], ["Cosmos DB", "Oracle", 6], ["Cosmos DB", "PostgreSQL", 10], ["Cosmos DB", "RavenDB", 2], ["Cosmos DB", "Redis", 13], ["Cosmos DB", "SQLite", 12], ["Cosmos DB", "Snowflake", 2], ["Cosmos DB", "Solr", 2], ["Cosmos DB", "Supabase", 7], ["Cosmos DB", "TiDB", 4], ["Couch DB", "BigQuery", 3], ["Couch DB", "Cassandra", 5], ["Couch DB", "Clickhouse", 2], ["Couch DB", "Cloud Firestore", 6], ["Couch DB", "Cockroachdb", 4], ["Couch DB", "Cosmos DB", 3], ["Couch DB", "Couch DB", 3], ["Couch DB", "Couchbase", 2], ["Couch DB", "Datomic", 3], ["Couch DB", "DuckDB", 2], ["Couch DB", "Dynamodb", 3], ["Couch DB", "Elasticsearch", 2], ["Couch DB", "Firebase Realtime Database", 5], ["Couch DB", "Firebird", 2], ["Couch DB", "H2", 2], ["Couch DB", "IBM DB2", 2], ["Couch DB", "InfluxDB", 2], ["Couch DB", "MariaDB", 5], ["Couch DB", "Microsoft Access", 3], ["Couch DB", "Microsoft SQL Server", 5], ["Couch DB", "MongoDB", 6], ["Couch DB", "MySQL", 5], ["Couch DB", "Neo4J", 4], ["Couch DB", "Oracle", 3], ["Couch DB", "PostgreSQL", 9], ["Couch DB", "RavenDB", 2], ["Couch DB", "Redis", 6], ["Couch DB", "SQLite", 7], ["Couch DB", "Snowflake", 2], ["Couch DB", "Solr", 2], ["Couch DB", "Supabase", 3], ["Couch DB", "TiDB", 2], ["Couchbase", "BigQuery", 3], ["Couchbase", "Cassandra", 2], ["Couchbase", "Clickhouse", 2], ["Couchbase", "Cloud Firestore", 2], ["Couchbase", "Cockroachdb", 4], ["Couchbase", "Cosmos DB", 3], ["Couchbase", "Couch DB", 3], ["Couchbase", "Couchbase", 4], ["Couchbase", "Datomic", 3], ["Couchbase", "DuckDB", 2], ["Couchbase", "Dynamodb", 3], ["Couchbase", "Elasticsearch", 2], ["Couchbase", "Firebase Realtime Database", 2], ["Couchbase", "Firebird", 2], ["Couchbase", "H2", 2], ["Couchbase", "IBM DB2", 2], ["Couchbase", "InfluxDB", 2], ["Couchbase", "MariaDB", 2], ["Couchbase", "Microsoft Access", 3], ["Couchbase", "Microsoft SQL Server", 3], ["Couchbase", "MongoDB", 4], ["Couchbase", "MySQL", 3], ["Couchbase", "Neo4J", 4], ["Couchbase", "Oracle", 4], ["Couchbase", "PostgreSQL", 3], ["Couchbase", "RavenDB", 2], ["Couchbase", "Redis", 4], ["Couchbase", "SQLite", 4], ["Couchbase", "Snowflake", 2], ["Couchbase", "Solr", 2], ["Couchbase", "Supabase", 3], ["Couchbase", "TiDB", 4], ["Datomic", "BigQuery", 4], ["Datomic", "Cassandra", 2], ["Datomic", "Clickhouse", 4], ["Datomic", "Cloud Firestore", 2], ["Datomic", "Cockroachdb", 4], ["Datomic", "Cosmos DB", 4], ["Datomic", "Couch DB", 4], ["Datomic", "Couchbase", 3], ["Datomic", "Datomic", 8], ["Datomic", "DuckDB", 3], ["Datomic", "Dynamodb", 2], ["Datomic", "Elasticsearch", 2], ["Datomic", "Firebase Realtime Database", 3], ["Datomic", "Firebird", 3], ["Datomic", "H2", 3], ["Datomic", "IBM DB2", 2], ["Datomic", "InfluxDB", 2], ["Datomic", "MariaDB", 3], ["Datomic", "Microsoft Access", 2], ["Datomic", "Microsoft SQL Server", 5], ["Datomic", "MongoDB", 4], ["Datomic", "MySQL", 5], ["Datomic", "Neo4J", 3], ["Datomic", "Oracle", 3], ["Datomic", "PostgreSQL", 5], ["Datomic", "RavenDB", 2], ["Datomic", "Redis", 6], ["Datomic", "SQLite", 4], ["Datomic", "Snowflake", 2], ["Datomic", "Solr", 2], ["Datomic", "Supabase", 4], ["Datomic", "TiDB", 5], ["DuckDB", "BigQuery", 5], ["DuckDB", "Cassandra", 2], ["DuckDB", "Clickhouse", 5], ["DuckDB", "Cloud Firestore", 2], ["DuckDB", "Cockroachdb", 4], ["DuckDB", "Cosmos DB", 2], ["DuckDB", "Couch DB", 5], ["DuckDB", "Couchbase", 3], ["DuckDB", "Datomic", 3], ["DuckDB", "DuckDB", 4], ["DuckDB", "Dynamodb", 3], ["DuckDB", "Elasticsearch", 3], ["DuckDB", "Firebase Realtime Database", 4], ["DuckDB", "Firebird", 4], ["DuckDB", "H2", 4], ["DuckDB", "IBM DB2", 3], ["DuckDB", "InfluxDB", 3], ["DuckDB", "MariaDB", 4], ["DuckDB", "Microsoft Access", 3], ["DuckDB", "Microsoft SQL Server", 6], ["DuckDB", "MongoDB", 5], ["DuckDB", "MySQL", 6], ["DuckDB", "Neo4J", 4], ["DuckDB", "Oracle", 4], ["DuckDB", "PostgreSQL", 5], ["DuckDB", "RavenDB", 3], ["DuckDB", "Redis", 5], ["DuckDB", "SQLite", 4], ["DuckDB", "Snowflake", 3], ["DuckDB", "Solr", 3], ["DuckDB", "Supabase", 4], ["DuckDB", "TiDB", 5], ["Dynamodb", "BigQuery", 6], ["Dynamodb", "Cassandra", 7], ["Dynamodb", "Clickhouse", 4], ["Dynamodb", "Cloud Firestore", 8], ["Dynamodb", "Cockroachdb", 6], ["Dynamodb", "Cosmos DB", 3], ["Dynamodb", "Couch DB", 4], ["Dynamodb", "Couchbase", 2], ["Dynamodb", "Datomic", 2], ["Dynamodb", "DuckDB", 3], ["Dynamodb", "Dynamodb", 15], ["Dynamodb", "Elasticsearch", 10], ["Dynamodb", "Firebase Realtime Database", 8], ["Dynamodb", "Firebird", 3], ["Dynamodb", "H2", 3], ["Dynamodb", "IBM DB2", 3], ["Dynamodb", "InfluxDB", 3], ["Dynamodb", "MariaDB", 9], ["Dynamodb", "Microsoft Access", 3], ["Dynamodb", "Microsoft SQL Server", 7], ["Dynamodb", "MongoDB", 19], ["Dynamodb", "MySQL", 14], ["Dynamodb", "Neo4J", 4], ["Dynamodb", "Oracle", 8], ["Dynamodb", "PostgreSQL", 22], ["Dynamodb", "RavenDB", 3], ["Dynamodb", "Redis", 9], ["Dynamodb", "SQLite", 13], ["Dynamodb", "Snowflake", 4], ["Dynamodb", "Solr", 3], ["Dynamodb", "Supabase", 7], ["Dynamodb", "TiDB", 5], ["Elasticsearch", "BigQuery", 8], ["Elasticsearch", "Cassandra", 10], ["Elasticsearch", "Clickhouse", 4], ["Elasticsearch", "Cloud Firestore", 4], ["Elasticsearch", "Cockroachdb", 6], ["Elasticsearch", "Cosmos DB", 4], ["Elasticsearch", "Couch DB", 3], ["Elasticsearch", "Couchbase", 2], ["Elasticsearch", "Datomic", 2], ["Elasticsearch", "DuckDB", 3], ["Elasticsearch", "Dynamodb", 7], ["Elasticsearch", "Elasticsearch", 26], ["Elasticsearch", "Firebase Realtime Database", 11], ["Elasticsearch", "Firebird", 4], ["Elasticsearch", "H2", 3], ["Elasticsearch", "IBM DB2", 3], ["Elasticsearch", "InfluxDB", 8], ["Elasticsearch", "MariaDB", 12], ["Elasticsearch", "Microsoft Access", 3], ["Elasticsearch", "Microsoft SQL Server", 7], ["Elasticsearch", "MongoDB", 25], ["Elasticsearch", "MySQL", 19], ["Elasticsearch", "Neo4J", 6], ["Elasticsearch", "Oracle", 5], ["Elasticsearch", "PostgreSQL", 31], ["Elasticsearch", "RavenDB", 3], ["Elasticsearch", "Redis", 20], ["Elasticsearch", "SQLite", 21], ["Elasticsearch", "Snowflake", 4], ["Elasticsearch", "Solr", 3], ["Elasticsearch", "Supabase", 8], ["Elasticsearch", "TiDB", 4], ["Firebase Realtime Database", "BigQuery", 20], ["Firebase Realtime Database", "Cassandra", 34], ["Firebase Realtime Database", "Clickhouse", 6], ["Firebase Realtime Database", "Cloud Firestore", 69], ["Firebase Realtime Database", "Cockroachdb", 11], ["Firebase Realtime Database", "Cosmos DB", 11], ["Firebase Realtime Database", "Couch DB", 8], ["Firebase Realtime Database", "Couchbase", 7], ["Firebase Realtime Database", "Datomic", 5], ["Firebase Realtime Database", "DuckDB", 8], ["Firebase Realtime Database", "Dynamodb", 21], ["Firebase Realtime Database", "Elasticsearch", 25], ["Firebase Realtime Database", "Firebase Realtime Database", 172], ["Firebase Realtime Database", "Firebird", 8], ["Firebase Realtime Database", "H2", 6], ["Firebase Realtime Database", "IBM DB2", 6], ["Firebase Realtime Database", "InfluxDB", 6], ["Firebase Realtime Database", "MariaDB", 34], ["Firebase Realtime Database", "Microsoft Access", 17], ["Firebase Realtime Database", "Microsoft SQL Server", 44], ["Firebase Realtime Database", "MongoDB", 146], ["Firebase Realtime Database", "MySQL", 124], ["Firebase Realtime Database", "Neo4J", 16], ["Firebase Realtime Database", "Oracle", 27], ["Firebase Realtime Database", "PostgreSQL", 106], ["Firebase Realtime Database", "RavenDB", 4], ["Firebase Realtime Database", "Redis", 50], ["Firebase Realtime Database", "SQLite", 67], ["Firebase Realtime Database", "Snowflake", 8], ["Firebase Realtime Database", "Solr", 6], ["Firebase Realtime Database", "Supabase", 60], ["Firebase Realtime Database", "TiDB", 6], ["Firebird", "BigQuery", 6], ["Firebird", "Cassandra", 6], ["Firebird", "Clickhouse", 4], ["Firebird", "Cloud Firestore", 4], ["Firebird", "Cockroachdb", 4], ["Firebird", "Cosmos DB", 4], ["Firebird", "Couch DB", 5], ["Firebird", "Couchbase", 3], ["Firebird", "Datomic", 4], ["Firebird", "DuckDB", 5], ["Firebird", "Dynamodb", 5], ["Firebird", "Elasticsearch", 6], ["Firebird", "Firebase Realtime Database", 8], ["Firebird", "Firebird", 14], ["Firebird", "H2", 4], ["Firebird", "IBM DB2", 5], ["Firebird", "InfluxDB", 4], ["Firebird", "MariaDB", 8], ["Firebird", "Microsoft Access", 5], ["Firebird", "Microsoft SQL Server", 8], ["Firebird", "MongoDB", 16], ["Firebird", "MySQL", 12], ["Firebird", "Neo4J", 6], ["Firebird", "Oracle", 6], ["Firebird", "PostgreSQL", 16], ["Firebird", "RavenDB", 4], ["Firebird", "Redis", 8], ["Firebird", "SQLite", 7], ["Firebird", "Snowflake", 5], ["Firebird", "Solr", 4], ["Firebird", "Supabase", 7], ["Firebird", "TiDB", 5], ["H2", "BigQuery", 5], ["H2", "Cassandra", 8], ["H2", "Clickhouse", 3], ["H2", "Cloud Firestore", 6], ["H2", "Cockroachdb", 4], ["H2", "Cosmos DB", 3], ["H2", "Couch DB", 5], ["H2", "Couchbase", 3], ["H2", "Datomic", 2], ["H2", "DuckDB", 3], ["H2", "Dynamodb", 5], ["H2", "Elasticsearch", 9], ["H2", "Firebase Realtime Database", 7], ["H2", "Firebird", 3], ["H2", "H2", 17], ["H2", "IBM DB2", 3], ["H2", "InfluxDB", 4], ["H2", "MariaDB", 17], ["H2", "Microsoft Access", 3], ["H2", "Microsoft SQL Server", 7], ["H2", "MongoDB", 25], ["H2", "MySQL", 26], ["H2", "Neo4J", 5], ["H2", "Oracle", 9], ["H2", "PostgreSQL", 24], ["H2", "RavenDB", 4], ["H2", "Redis", 16], ["H2", "SQLite", 16], ["H2", "Snowflake", 4], ["H2", "Solr", 3], ["H2", "Supabase", 4], ["H2", "TiDB", 4], ["IBM DB2", "BigQuery", 5], ["IBM DB2", "Cassandra", 4], ["IBM DB2", "Clickhouse", 6], ["IBM DB2", "Cloud Firestore", 4], ["IBM DB2", "Cockroachdb", 5], ["IBM DB2", "Cosmos DB", 5], ["IBM DB2", "Couch DB", 4], ["IBM DB2", "Couchbase", 4], ["IBM DB2", "Datomic", 4], ["IBM DB2", "DuckDB", 5], ["IBM DB2", "Dynamodb", 5], ["IBM DB2", "Elasticsearch", 6], ["IBM DB2", "Firebase Realtime Database", 5], ["IBM DB2", "Firebird", 5], ["IBM DB2", "H2", 5], ["IBM DB2", "IBM DB2", 5], ["IBM DB2", "InfluxDB", 5], ["IBM DB2", "MariaDB", 5], ["IBM DB2", "Microsoft Access", 3], ["IBM DB2", "Microsoft SQL Server", 4], ["IBM DB2", "MongoDB", 6], ["IBM DB2", "MySQL", 5], ["IBM DB2", "Neo4J", 5], ["IBM DB2", "Oracle", 6], ["IBM DB2", "PostgreSQL", 7], ["IBM DB2", "RavenDB", 5], ["IBM DB2", "Redis", 7], ["IBM DB2", "SQLite", 7], ["IBM DB2", "Snowflake", 5], ["IBM DB2", "Solr", 5], ["IBM DB2", "Supabase", 5], ["IBM DB2", "TiDB", 5], ["InfluxDB", "BigQuery", 7], ["InfluxDB", "Cassandra", 5], ["InfluxDB", "Clickhouse", 5], ["InfluxDB", "Cloud Firestore", 6], ["InfluxDB", "Cockroachdb", 5], ["InfluxDB", "Cosmos DB", 3], ["InfluxDB", "Couch DB", 4], ["InfluxDB", "Couchbase", 4], ["InfluxDB", "Datomic", 3], ["InfluxDB", "DuckDB", 4], ["InfluxDB", "Dynamodb", 4], ["InfluxDB", "Elasticsearch", 5], ["InfluxDB", "Firebase Realtime Database", 6], ["InfluxDB", "Firebird", 4], ["InfluxDB", "H2", 4], ["InfluxDB", "IBM DB2", 4], ["InfluxDB", "InfluxDB", 14], ["InfluxDB", "MariaDB", 8], ["InfluxDB", "Microsoft Access", 5], ["InfluxDB", "Microsoft SQL Server", 5], ["InfluxDB", "MongoDB", 12], ["InfluxDB", "MySQL", 10], ["InfluxDB", "Neo4J", 5], ["InfluxDB", "Oracle", 6], ["InfluxDB", "PostgreSQL", 14], ["InfluxDB", "RavenDB", 4], ["InfluxDB", "Redis", 13], ["InfluxDB", "SQLite", 8], ["InfluxDB", "Snowflake", 4], ["InfluxDB", "Solr", 4], ["InfluxDB", "Supabase", 6], ["InfluxDB", "TiDB", 5], ["MariaDB", "BigQuery", 25], ["MariaDB", "Cassandra", 41], ["MariaDB", "Clickhouse", 7], ["MariaDB", "Cloud Firestore", 42], ["MariaDB", "Cockroachdb", 13], ["MariaDB", "Cosmos DB", 14], ["MariaDB", "Couch DB", 10], ["MariaDB", "Couchbase", 7], ["MariaDB", "Datomic", 5], ["MariaDB", "DuckDB", 7], ["MariaDB", "Dynamodb", 25], ["MariaDB", "Elasticsearch", 41], ["MariaDB", "Firebase Realtime Database", 56], ["MariaDB", "Firebird", 10], ["MariaDB", "H2", 12], ["MariaDB", "IBM DB2", 8], ["MariaDB", "InfluxDB", 14], ["MariaDB", "MariaDB", 218], ["MariaDB", "Microsoft Access", 18], ["MariaDB", "Microsoft SQL Server", 52], ["MariaDB", "MongoDB", 186], ["MariaDB", "MySQL", 197], ["MariaDB", "Neo4J", 23], ["MariaDB", "Oracle", 39], ["MariaDB", "PostgreSQL", 196], ["MariaDB", "RavenDB", 5], ["MariaDB", "Redis", 82], ["MariaDB", "SQLite", 141], ["MariaDB", "Snowflake", 13], ["MariaDB", "Solr", 5], ["MariaDB", "Supabase", 40], ["MariaDB", "TiDB", 6], ["Microsoft Access", "BigQuery", 27], ["Microsoft Access", "Cassandra", 20], ["Microsoft Access", "Clickhouse", 9], ["Microsoft Access", "Cloud Firestore", 24], ["Microsoft Access", "Cockroachdb", 9], ["Microsoft Access", "Cosmos DB", 13], ["Microsoft Access", "Couch DB", 8], ["Microsoft Access", "Couchbase", 7], ["Microsoft Access", "Datomic", 7], ["Microsoft Access", "DuckDB", 8], ["Microsoft Access", "Dynamodb", 12], ["Microsoft Access", "Elasticsearch", 17], ["Microsoft Access", "Firebase Realtime Database", 38], ["Microsoft Access", "Firebird", 9], ["Microsoft Access", "H2", 8], ["Microsoft Access", "IBM DB2", 8], ["Microsoft Access", "InfluxDB", 9], ["Microsoft Access", "MariaDB", 29], ["Microsoft Access", "Microsoft Access", 57], ["Microsoft Access", "Microsoft SQL Server", 66], ["Microsoft Access", "MongoDB", 80], ["Microsoft Access", "MySQL", 92], ["Microsoft Access", "Neo4J", 11], ["Microsoft Access", "Oracle", 42], ["Microsoft Access", "PostgreSQL", 70], ["Microsoft Access", "RavenDB", 6], ["Microsoft Access", "Redis", 28], ["Microsoft Access", "SQLite", 64], ["Microsoft Access", "Snowflake", 11], ["Microsoft Access", "Solr", 7], ["Microsoft Access", "Supabase", 19], ["Microsoft Access", "TiDB", 7], ["Microsoft SQL Server", "BigQuery", 37], ["Microsoft SQL Server", "Cassandra", 37], ["Microsoft SQL Server", "Clickhouse", 15], ["Microsoft SQL Server", "Cloud Firestore", 40], ["Microsoft SQL Server", "Cockroachdb", 15], ["Microsoft SQL Server", "Cosmos DB", 28], ["Microsoft SQL Server", "Couch DB", 14], ["Microsoft SQL Server", "Couchbase", 9], ["Microsoft SQL Server", "Datomic", 10], ["Microsoft SQL Server", "DuckDB", 11], ["Microsoft SQL Server", "Dynamodb", 20], ["Microsoft SQL Server", "Elasticsearch", 37], ["Microsoft SQL Server", "Firebase Realtime Database", 63], ["Microsoft SQL Server", "Firebird", 11], ["Microsoft SQL Server", "H2", 11], ["Microsoft SQL Server", "IBM DB2", 11], ["Microsoft SQL Server", "InfluxDB", 14], ["Microsoft SQL Server", "MariaDB", 64], ["Microsoft SQL Server", "Microsoft Access", 27], ["Microsoft SQL Server", "Microsoft SQL Server", 211], ["Microsoft SQL Server", "MongoDB", 165], ["Microsoft SQL Server", "MySQL", 203], ["Microsoft SQL Server", "Neo4J", 24], ["Microsoft SQL Server", "Oracle", 64], ["Microsoft SQL Server", "PostgreSQL", 159], ["Microsoft SQL Server", "RavenDB", 10], ["Microsoft SQL Server", "Redis", 72], ["Microsoft SQL Server", "SQLite", 123], ["Microsoft SQL Server", "Snowflake", 21], ["Microsoft SQL Server", "Solr", 10], ["Microsoft SQL Server", "Supabase", 32], ["Microsoft SQL Server", "TiDB", 9], ["MongoDB", "BigQuery", 54], ["MongoDB", "Cassandra", 101], ["MongoDB", "Clickhouse", 19], ["MongoDB", "Cloud Firestore", 112], ["MongoDB", "Cockroachdb", 39], ["MongoDB", "Cosmos DB", 32], ["MongoDB", "Couch DB", 21], ["MongoDB", "Couchbase", 14], ["MongoDB", "Datomic", 9], ["MongoDB", "DuckDB", 12], ["MongoDB", "Dynamodb", 58], ["MongoDB", "Elasticsearch", 65], ["MongoDB", "Firebase Realtime Database", 151], ["MongoDB", "Firebird", 17], ["MongoDB", "H2", 15], ["MongoDB", "IBM DB2", 9], ["MongoDB", "InfluxDB", 19], ["MongoDB", "MariaDB", 117], ["MongoDB", "Microsoft Access", 29], ["MongoDB", "Microsoft SQL Server", 87], ["MongoDB", "MongoDB", 658], ["MongoDB", "MySQL", 423], ["MongoDB", "Neo4J", 49], ["MongoDB", "Oracle", 60], ["MongoDB", "PostgreSQL", 454], ["MongoDB", "RavenDB", 10], ["MongoDB", "Redis", 230], ["MongoDB", "SQLite", 248], ["MongoDB", "Snowflake", 23], ["MongoDB", "Solr", 12], ["MongoDB", "Supabase", 131], ["MongoDB", "TiDB", 10], ["MySQL", "BigQuery", 98], ["MySQL", "Cassandra", 121], ["MySQL", "Clickhouse", 18], ["MySQL", "Cloud Firestore", 127], ["MySQL", "Cockroachdb", 40], ["MySQL", "Cosmos DB", 40], ["MySQL", "Couch DB", 26], ["MySQL", "Couchbase", 16], ["MySQL", "Datomic", 14], ["MySQL", "DuckDB", 15], ["MySQL", "Dynamodb", 63], ["MySQL", "Elasticsearch", 104], ["MySQL", "Firebase Realtime Database", 224], ["MySQL", "Firebird", 28], ["MySQL", "H2", 21], ["MySQL", "IBM DB2", 21], ["MySQL", "InfluxDB", 23], ["MySQL", "MariaDB", 226], ["MySQL", "Microsoft Access", 59], ["MySQL", "Microsoft SQL Server", 197], ["MySQL", "MongoDB", 676], ["MySQL", "MySQL", 951], ["MySQL", "Neo4J", 53], ["MySQL", "Oracle", 162], ["MySQL", "PostgreSQL", 592], ["MySQL", "RavenDB", 13], ["MySQL", "Redis", 242], ["MySQL", "SQLite", 428], ["MySQL", "Snowflake", 41], ["MySQL", "Solr", 16], ["MySQL", "Supabase", 130], ["MySQL", "TiDB", 13], ["Neo4J", "BigQuery", 7], ["Neo4J", "Cassandra", 9], ["Neo4J", "Clickhouse", 4], ["Neo4J", "Cloud Firestore", 6], ["Neo4J", "Cockroachdb", 9], ["Neo4J", "Cosmos DB", 4], ["Neo4J", "Couch DB", 4], ["Neo4J", "Couchbase", 4], ["Neo4J", "Datomic", 3], ["Neo4J", "DuckDB", 4], ["Neo4J", "Dynamodb", 6], ["Neo4J", "Elasticsearch", 9], ["Neo4J", "Firebase Realtime Database", 8], ["Neo4J", "Firebird", 5], ["Neo4J", "H2", 4], ["Neo4J", "IBM DB2", 5], ["Neo4J", "InfluxDB", 7], ["Neo4J", "MariaDB", 9], ["Neo4J", "Microsoft Access", 6], ["Neo4J", "Microsoft SQL Server", 8], ["Neo4J", "MongoDB", 18], ["Neo4J", "MySQL", 20], ["Neo4J", "Neo4J", 26], ["Neo4J", "Oracle", 10], ["Neo4J", "PostgreSQL", 24], ["Neo4J", "RavenDB", 4], ["Neo4J", "Redis", 15], ["Neo4J", "SQLite", 12], ["Neo4J", "Snowflake", 5], ["Neo4J", "Solr", 4], ["Neo4J", "Supabase", 11], ["Neo4J", "TiDB", 4], ["Oracle", "BigQuery", 25], ["Oracle", "Cassandra", 18], ["Oracle", "Clickhouse", 9], ["Oracle", "Cloud Firestore", 13], ["Oracle", "Cockroachdb", 10], ["Oracle", "Cosmos DB", 11], ["Oracle", "Couch DB", 8], ["Oracle", "Couchbase", 8], ["Oracle", "Datomic", 6], ["Oracle", "DuckDB", 6], ["Oracle", "Dynamodb", 13], ["Oracle", "Elasticsearch", 17], ["Oracle", "Firebase Realtime Database", 30], ["Oracle", "Firebird", 7], ["Oracle", "H2", 6], ["Oracle", "IBM DB2", 7], ["Oracle", "InfluxDB", 5], ["Oracle", "MariaDB", 28], ["Oracle", "Microsoft Access", 18], ["Oracle", "Microsoft SQL Server", 43], ["Oracle", "MongoDB", 82], ["Oracle", "MySQL", 102], ["Oracle", "Neo4J", 19], ["Oracle", "Oracle", 95], ["Oracle", "PostgreSQL", 66], ["Oracle", "RavenDB", 5], ["Oracle", "Redis", 33], ["Oracle", "SQLite", 61], ["Oracle", "Snowflake", 8], ["Oracle", "Solr", 4], ["Oracle", "Supabase", 19], ["Oracle", "TiDB", 6], ["PostgreSQL", "BigQuery", 52], ["PostgreSQL", "Cassandra", 93], ["PostgreSQL", "Clickhouse", 21], ["PostgreSQL", "Cloud Firestore", 52], ["PostgreSQL", "Cockroachdb", 37], ["PostgreSQL", "Cosmos DB", 22], ["PostgreSQL", "Couch DB", 20], ["PostgreSQL", "Couchbase", 15], ["PostgreSQL", "Datomic", 13], ["PostgreSQL", "DuckDB", 14], ["PostgreSQL", "Dynamodb", 34], ["PostgreSQL", "Elasticsearch", 76], ["PostgreSQL", "Firebase Realtime Database", 93], ["PostgreSQL", "Firebird", 18], ["PostgreSQL", "H2", 21], ["PostgreSQL", "IBM DB2", 10], ["PostgreSQL", "InfluxDB", 18], ["PostgreSQL", "MariaDB", 101], ["PostgreSQL", "Microsoft Access", 17], ["PostgreSQL", "Microsoft SQL Server", 79], ["PostgreSQL", "MongoDB", 321], ["PostgreSQL", "MySQL", 293], ["PostgreSQL", "Neo4J", 51], ["PostgreSQL", "Oracle", 55], ["PostgreSQL", "PostgreSQL", 610], ["PostgreSQL", "RavenDB", 8], ["PostgreSQL", "Redis", 208], ["PostgreSQL", "SQLite", 250], ["PostgreSQL", "Snowflake", 24], ["PostgreSQL", "Solr", 9], ["PostgreSQL", "Supabase", 117], ["PostgreSQL", "TiDB", 10], ["RavenDB", "BigQuery", 5], ["RavenDB", "Cassandra", 4], ["RavenDB", "Clickhouse", 4], ["RavenDB", "Cloud Firestore", 4], ["RavenDB", "Cockroachdb", 4], ["RavenDB", "Cosmos DB", 3], ["RavenDB", "Couch DB", 3], ["RavenDB", "Couchbase", 3], ["RavenDB", "Datomic", 3], ["RavenDB", "DuckDB", 4], ["RavenDB", "Dynamodb", 5], ["RavenDB", "Elasticsearch", 4], ["RavenDB", "Firebase Realtime Database", 4], ["RavenDB", "Firebird", 4], ["RavenDB", "H2", 4], ["RavenDB", "IBM DB2", 3], ["RavenDB", "InfluxDB", 4], ["RavenDB", "MariaDB", 4], ["RavenDB", "Microsoft Access", 3], ["RavenDB", "Microsoft SQL Server", 3], ["RavenDB", "MongoDB", 3], ["RavenDB", "MySQL", 4], ["RavenDB", "Neo4J", 4], ["RavenDB", "Oracle", 4], ["RavenDB", "PostgreSQL", 3], ["RavenDB", "RavenDB", 3], ["RavenDB", "Redis", 3], ["RavenDB", "SQLite", 3], ["RavenDB", "Snowflake", 4], ["RavenDB", "Solr", 4], ["RavenDB", "Supabase", 4], ["RavenDB", "TiDB", 4], ["Redis", "BigQuery", 16], ["Redis", "Cassandra", 37], ["Redis", "Clickhouse", 14], ["Redis", "Cloud Firestore", 23], ["Redis", "Cockroachdb", 15], ["Redis", "Cosmos DB", 12], ["Redis", "Couch DB", 9], ["Redis", "Couchbase", 6], ["Redis", "Datomic", 5], ["Redis", "DuckDB", 4], ["Redis", "Dynamodb", 15], ["Redis", "Elasticsearch", 40], ["Redis", "Firebase Realtime Database", 29], ["Redis", "Firebird", 7], ["Redis", "H2", 7], ["Redis", "IBM DB2", 4], ["Redis", "InfluxDB", 12], ["Redis", "MariaDB", 32], ["Redis", "Microsoft Access", 8], ["Redis", "Microsoft SQL Server", 22], ["Redis", "MongoDB", 80], ["Redis", "MySQL", 82], ["Redis", "Neo4J", 20], ["Redis", "Oracle", 20], ["Redis", "PostgreSQL", 115], ["Redis", "RavenDB", 4], ["Redis", "Redis", 132], ["Redis", "SQLite", 71], ["Redis", "Snowflake", 7], ["Redis", "Solr", 5], ["Redis", "Supabase", 35], ["Redis", "TiDB", 5], ["SQLite", "BigQuery", 55], ["SQLite", "Cassandra", 97], ["SQLite", "Clickhouse", 17], ["SQLite", "Cloud Firestore", 85], ["SQLite", "Cockroachdb", 31], ["SQLite", "Cosmos DB", 27], ["SQLite", "Couch DB", 21], ["SQLite", "Couchbase", 10], ["SQLite", "Datomic", 13], ["SQLite", "DuckDB", 14], ["SQLite", "Dynamodb", 28], ["SQLite", "Elasticsearch", 69], ["SQLite", "Firebase Realtime Database", 120], ["SQLite", "Firebird", 16], ["SQLite", "H2", 17], ["SQLite", "IBM DB2", 11], ["SQLite", "InfluxDB", 20], ["SQLite", "MariaDB", 126], ["SQLite", "Microsoft Access", 32], ["SQLite", "Microsoft SQL Server", 108], ["SQLite", "MongoDB", 368], ["SQLite", "MySQL", 388], ["SQLite", "Neo4J", 40], ["SQLite", "Oracle", 70], ["SQLite", "PostgreSQL", 398], ["SQLite", "RavenDB", 8], ["SQLite", "Redis", 171], ["SQLite", "SQLite", 544], ["SQLite", "Snowflake", 19], ["SQLite", "Solr", 9], ["SQLite", "Supabase", 96], ["SQLite", "TiDB", 9], ["Snowflake", "BigQuery", 6], ["Snowflake", "Cassandra", 3], ["Snowflake", "Clickhouse", 4], ["Snowflake", "Cloud Firestore", 4], ["Snowflake", "Cockroachdb", 4], ["Snowflake", "Cosmos DB", 3], ["Snowflake", "Couch DB", 3], ["Snowflake", "Couchbase", 2], ["Snowflake", "Datomic", 2], ["Snowflake", "DuckDB", 3], ["Snowflake", "Dynamodb", 3], ["Snowflake", "Elasticsearch", 4], ["Snowflake", "Firebase Realtime Database", 4], ["Snowflake", "Firebird", 4], ["Snowflake", "H2", 3], ["Snowflake", "IBM DB2", 3], ["Snowflake", "InfluxDB", 3], ["Snowflake", "MariaDB", 6], ["Snowflake", "Microsoft Access", 5], ["Snowflake", "Microsoft SQL Server", 7], ["Snowflake", "MongoDB", 7], ["Snowflake", "MySQL", 9], ["Snowflake", "Neo4J", 6], ["Snowflake", "Oracle", 4], ["Snowflake", "PostgreSQL", 8], ["Snowflake", "RavenDB", 4], ["Snowflake", "Redis", 7], ["Snowflake", "SQLite", 5], ["Snowflake", "Snowflake", 8], ["Snowflake", "Solr", 3], ["Snowflake", "Supabase", 3], ["Snowflake", "TiDB", 4], ["Solr", "BigQuery", 4], ["Solr", "Cassandra", 3], ["Solr", "Clickhouse", 3], ["Solr", "Cloud Firestore", 4], ["Solr", "Cockroachdb", 5], ["Solr", "Cosmos DB", 2], ["Solr", "Couch DB", 3], ["Solr", "Couchbase", 2], ["Solr", "Datomic", 2], ["Solr", "DuckDB", 3], ["Solr", "Dynamodb", 4], ["Solr", "Elasticsearch", 4], ["Solr", "Firebase Realtime Database", 5], ["Solr", "Firebird", 3], ["Solr", "H2", 3], ["Solr", "IBM DB2", 3], ["Solr", "InfluxDB", 4], ["Solr", "MariaDB", 3], ["Solr", "Microsoft Access", 3], ["Solr", "Microsoft SQL Server", 4], ["Solr", "MongoDB", 7], ["Solr", "MySQL", 5], ["Solr", "Neo4J", 4], ["Solr", "Oracle", 3], ["Solr", "PostgreSQL", 6], ["Solr", "RavenDB", 3], ["Solr", "Redis", 8], ["Solr", "SQLite", 4], ["Solr", "Snowflake", 3], ["Solr", "Solr", 5], ["Solr", "Supabase", 4], ["Solr", "TiDB", 4], ["Supabase", "BigQuery", 10], ["Supabase", "Cassandra", 14], ["Supabase", "Clickhouse", 5], ["Supabase", "Cloud Firestore", 17], ["Supabase", "Cockroachdb", 12], ["Supabase", "Cosmos DB", 2], ["Supabase", "Couch DB", 3], ["Supabase", "Couchbase", 2], ["Supabase", "Datomic", 3], ["Supabase", "DuckDB", 3], ["Supabase", "Dynamodb", 9], ["Supabase", "Elasticsearch", 11], ["Supabase", "Firebase Realtime Database", 24], ["Supabase", "Firebird", 3], ["Supabase", "H2", 3], ["Supabase", "IBM DB2", 3], ["Supabase", "InfluxDB", 4], ["Supabase", "MariaDB", 16], ["Supabase", "Microsoft Access", 5], ["Supabase", "Microsoft SQL Server", 11], ["Supabase", "MongoDB", 49], ["Supabase", "MySQL", 42], ["Supabase", "Neo4J", 9], ["Supabase", "Oracle", 8], ["Supabase", "PostgreSQL", 67], ["Supabase", "RavenDB", 3], ["Supabase", "Redis", 39], ["Supabase", "SQLite", 33], ["Supabase", "Snowflake", 3], ["Supabase", "Solr", 4], ["Supabase", "Supabase", 71], ["Supabase", "TiDB", 4], ["TiDB", "BigQuery", 3], ["TiDB", "Cassandra", 2], ["TiDB", "Clickhouse", 4], ["TiDB", "Cloud Firestore", 2], ["TiDB", "Cockroachdb", 3], ["TiDB", "Cosmos DB", 3], ["TiDB", "Couch DB", 2], ["TiDB", "Couchbase", 2], ["TiDB", "Datomic", 3], ["TiDB", "DuckDB", 3], ["TiDB", "Dynamodb", 3], ["TiDB", "Elasticsearch", 3], ["TiDB", "Firebase Realtime Database", 3], ["TiDB", "Firebird", 3], ["TiDB", "H2", 3], ["TiDB", "IBM DB2", 3], ["TiDB", "InfluxDB", 3], ["TiDB", "MariaDB", 3], ["TiDB", "Microsoft Access", 3], ["TiDB", "Microsoft SQL Server", 3], ["TiDB", "MongoDB", 3], ["TiDB", "MySQL", 4], ["TiDB", "Neo4J", 3], ["TiDB", "Oracle", 4], ["TiDB", "PostgreSQL", 5], ["TiDB", "RavenDB", 3], ["TiDB", "Redis", 3], ["TiDB", "SQLite", 4], ["TiDB", "Snowflake", 3], ["TiDB", "Solr", 3], ["TiDB", "Supabase", 4], ["TiDB", "TiDB", 5]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What cloud platform do how many professional developers want to use and what are they currently using?", "labels": [{"query": "SELECT Platforms1.name AS have_worked_with, Platforms2.name AS want_to_work_with, COUNT(*) FROM Response_PlatformHaveWorkedWith JOIN Platforms AS Platforms1 ON Response_PlatformHaveWorkedWith.Platforms_id = Platforms1.id JOIN Response_PlatformWantToWorkWith ON Response_PlatformWantToWorkWith.Response_id = Response_PlatformHaveWorkedWith.Response_id JOIN Platforms AS Platforms2 ON Response_PlatformWantToWorkWith.Platforms_id = Platforms2.id JOIN Responses ON Response_PlatformWantToWorkWith.Response_id = Responses.id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY Platforms1.name, Platforms2.name", "results": [["Amazon Web Services (AWS)", "Amazon Web Services (AWS)", 18529], ["Amazon Web Services (AWS)", "Cloudflare", 4784], ["Amazon Web Services (AWS)", "Colocation", 186], ["Amazon Web Services (AWS)", "Digital Ocean", 3421], ["Amazon Web Services (AWS)", "Firebase", 3374], ["Amazon Web Services (AWS)", "Fly.io", 1488], ["Amazon Web Services (AWS)", "Google Cloud", 6478], ["Amazon Web Services (AWS)", "Heroku", 1306], ["Amazon Web Services (AWS)", "Hetzner", 1094], ["Amazon Web Services (AWS)", "IBM Cloud Or Watson", 302], ["Amazon Web Services (AWS)", "Linode, now Akamai", 1184], ["Amazon Web Services (AWS)", "Managed Hosting", 545], ["Amazon Web Services (AWS)", "Microsoft Azure", 5370], ["Amazon Web Services (AWS)", "Netlify", 1916], ["Amazon Web Services (AWS)", "OVH", 600], ["Amazon Web Services (AWS)", "OpenShift", 576], ["Amazon Web Services (AWS)", "OpenStack", 489], ["Amazon Web Services (AWS)", "Oracle Cloud Infrastructure (OCI)", 485], ["Amazon Web Services (AWS)", "Render", 508], ["Amazon Web Services (AWS)", "Scaleway", 260], ["Amazon Web Services (AWS)", "VMware", 876], ["Amazon Web Services (AWS)", "Vercel", 3763], ["Amazon Web Services (AWS)", "Vultr", 468], ["Cloudflare", "Amazon Web Services (AWS)", 3828], ["Cloudflare", "Cloudflare", 5466], ["Cloudflare", "Colocation", 121], ["Cloudflare", "Digital Ocean", 1628], ["Cloudflare", "Firebase", 1260], ["Cloudflare", "Fly.io", 677], ["Cloudflare", "Google Cloud", 2031], ["Cloudflare", "Heroku", 458], ["Cloudflare", "Hetzner", 718], ["Cloudflare", "IBM Cloud Or Watson", 124], ["Cloudflare", "Linode, now Akamai", 551], ["Cloudflare", "Managed Hosting", 322], ["Cloudflare", "Microsoft Azure", 1526], ["Cloudflare", "Netlify", 867], ["Cloudflare", "OVH", 343], ["Cloudflare", "OpenShift", 162], ["Cloudflare", "OpenStack", 185], ["Cloudflare", "Oracle Cloud Infrastructure (OCI)", 228], ["Cloudflare", "Render", 241], ["Cloudflare", "Scaleway", 147], ["Cloudflare", "VMware", 368], ["Cloudflare", "Vercel", 1646], ["Cloudflare", "Vultr", 283], ["Colocation", "Amazon Web Services (AWS)", 130], ["Colocation", "Cloudflare", 121], ["Colocation", "Colocation", 227], ["Colocation", "Digital Ocean", 69], ["Colocation", "Firebase", 26], ["Colocation", "Fly.io", 39], ["Colocation", "Google Cloud", 88], ["Colocation", "Heroku", 15], ["Colocation", "Hetzner", 65], ["Colocation", "IBM Cloud Or Watson", 15], ["Colocation", "Linode, now Akamai", 27], ["Colocation", "Managed Hosting", 50], ["Colocation", "Microsoft Azure", 85], ["Colocation", "Netlify", 29], ["Colocation", "OVH", 34], ["Colocation", "OpenShift", 25], ["Colocation", "OpenStack", 34], ["Colocation", "Oracle Cloud Infrastructure (OCI)", 25], ["Colocation", "Render", 12], ["Colocation", "Scaleway", 19], ["Colocation", "VMware", 35], ["Colocation", "Vercel", 35], ["Colocation", "Vultr", 28], ["Digital Ocean", "Amazon Web Services (AWS)", 3456], ["Digital Ocean", "Cloudflare", 2162], ["Digital Ocean", "Colocation", 104], ["Digital Ocean", "Digital Ocean", 4213], ["Digital Ocean", "Firebase", 1196], ["Digital Ocean", "Fly.io", 595], ["Digital Ocean", "Google Cloud", 1825], ["Digital Ocean", "Heroku", 463], ["Digital Ocean", "Hetzner", 579], ["Digital Ocean", "IBM Cloud Or Watson", 105], ["Digital Ocean", "Linode, now Akamai", 543], ["Digital Ocean", "Managed Hosting", 245], ["Digital Ocean", "Microsoft Azure", 1228], ["Digital Ocean", "Netlify", 858], ["Digital Ocean", "OVH", 264], ["Digital Ocean", "OpenShift", 147], ["Digital Ocean", "OpenStack", 144], ["Digital Ocean", "Oracle Cloud Infrastructure (OCI)", 152], ["Digital Ocean", "Render", 220], ["Digital Ocean", "Scaleway", 122], ["Digital Ocean", "VMware", 281], ["Digital Ocean", "Vercel", 1496], ["Digital Ocean", "Vultr", 314], ["Firebase", "Amazon Web Services (AWS)", 3810], ["Firebase", "Cloudflare", 1774], ["Firebase", "Colocation", 44], ["Firebase", "Digital Ocean", 1308], ["Firebase", "Firebase", 4623], ["Firebase", "Fly.io", 348], ["Firebase", "Google Cloud", 2739], ["Firebase", "Heroku", 633], ["Firebase", "Hetzner", 258], ["Firebase", "IBM Cloud Or Watson", 147], ["Firebase", "Linode, now Akamai", 413], ["Firebase", "Managed Hosting", 229], ["Firebase", "Microsoft Azure", 1702], ["Firebase", "Netlify", 1071], ["Firebase", "OVH", 216], ["Firebase", "OpenShift", 158], ["Firebase", "OpenStack", 140], ["Firebase", "Oracle Cloud Infrastructure (OCI)", 171], ["Firebase", "Render", 270], ["Firebase", "Scaleway", 73], ["Firebase", "VMware", 349], ["Firebase", "Vercel", 2011], ["Firebase", "Vultr", 140], ["Fly.io", "Amazon Web Services (AWS)", 495], ["Fly.io", "Cloudflare", 385], ["Fly.io", "Colocation", 19], ["Fly.io", "Digital Ocean", 242], ["Fly.io", "Firebase", 127], ["Fly.io", "Fly.io", 869], ["Fly.io", "Google Cloud", 243], ["Fly.io", "Heroku", 79], ["Fly.io", "Hetzner", 145], ["Fly.io", "IBM Cloud Or Watson", 16], ["Fly.io", "Linode, now Akamai", 89], ["Fly.io", "Managed Hosting", 39], ["Fly.io", "Microsoft Azure", 141], ["Fly.io", "Netlify", 196], ["Fly.io", "OVH", 40], ["Fly.io", "OpenShift", 24], ["Fly.io", "OpenStack", 23], ["Fly.io", "Oracle Cloud Infrastructure (OCI)", 29], ["Fly.io", "Render", 97], ["Fly.io", "Scaleway", 49], ["Fly.io", "VMware", 32], ["Fly.io", "Vercel", 342], ["Fly.io", "Vultr", 57], ["Google Cloud", "Amazon Web Services (AWS)", 5899], ["Google Cloud", "Cloudflare", 2526], ["Google Cloud", "Colocation", 110], ["Google Cloud", "Digital Ocean", 1736], ["Google Cloud", "Firebase", 2451], ["Google Cloud", "Fly.io", 670], ["Google Cloud", "Google Cloud", 7348], ["Google Cloud", "Heroku", 657], ["Google Cloud", "Hetzner", 536], ["Google Cloud", "IBM Cloud Or Watson", 217], ["Google Cloud", "Linode, now Akamai", 564], ["Google Cloud", "Managed Hosting", 327], ["Google Cloud", "Microsoft Azure", 2602], ["Google Cloud", "Netlify", 984], ["Google Cloud", "OVH", 339], ["Google Cloud", "OpenShift", 295], ["Google Cloud", "OpenStack", 287], ["Google Cloud", "Oracle Cloud Infrastructure (OCI)", 307], ["Google Cloud", "Render", 243], ["Google Cloud", "Scaleway", 158], ["Google Cloud", "VMware", 521], ["Google Cloud", "Vercel", 1913], ["Google Cloud", "Vultr", 217], ["Heroku", "Amazon Web Services (AWS)", 3286], ["Heroku", "Cloudflare", 1453], ["Heroku", "Colocation", 35], ["Heroku", "Digital Ocean", 1197], ["Heroku", "Firebase", 1442], ["Heroku", "Fly.io", 516], ["Heroku", "Google Cloud", 1750], ["Heroku", "Heroku", 1478], ["Heroku", "Hetzner", 221], ["Heroku", "IBM Cloud Or Watson", 100], ["Heroku", "Linode, now Akamai", 409], ["Heroku", "Managed Hosting", 173], ["Heroku", "Microsoft Azure", 1240], ["Heroku", "Netlify", 1069], ["Heroku", "OVH", 173], ["Heroku", "OpenShift", 150], ["Heroku", "OpenStack", 124], ["Heroku", "Oracle Cloud Infrastructure (OCI)", 152], ["Heroku", "Render", 396], ["Heroku", "Scaleway", 84], ["Heroku", "VMware", 265], ["Heroku", "Vercel", 1683], ["Heroku", "Vultr", 123], ["Hetzner", "Amazon Web Services (AWS)", 785], ["Hetzner", "Cloudflare", 705], ["Hetzner", "Colocation", 80], ["Hetzner", "Digital Ocean", 371], ["Hetzner", "Firebase", 179], ["Hetzner", "Fly.io", 181], ["Hetzner", "Google Cloud", 414], ["Hetzner", "Heroku", 73], ["Hetzner", "Hetzner", 1739], ["Hetzner", "IBM Cloud Or Watson", 24], ["Hetzner", "Linode, now Akamai", 122], ["Hetzner", "Managed Hosting", 115], ["Hetzner", "Microsoft Azure", 360], ["Hetzner", "Netlify", 147], ["Hetzner", "OVH", 172], ["Hetzner", "OpenShift", 72], ["Hetzner", "OpenStack", 71], ["Hetzner", "Oracle Cloud Infrastructure (OCI)", 64], ["Hetzner", "Render", 41], ["Hetzner", "Scaleway", 86], ["Hetzner", "VMware", 111], ["Hetzner", "Vercel", 309], ["Hetzner", "Vultr", 82], ["IBM Cloud Or Watson", "Amazon Web Services (AWS)", 296], ["IBM Cloud Or Watson", "Cloudflare", 112], ["IBM Cloud Or Watson", "Colocation", 13], ["IBM Cloud Or Watson", "Digital Ocean", 78], ["IBM Cloud Or Watson", "Firebase", 116], ["IBM Cloud Or Watson", "Fly.io", 33], ["IBM Cloud Or Watson", "Google Cloud", 200], ["IBM Cloud Or Watson", "Heroku", 43], ["IBM Cloud Or Watson", "Hetzner", 25], ["IBM Cloud Or Watson", "IBM Cloud Or Watson", 184], ["IBM Cloud Or Watson", "Linode, now Akamai", 40], ["IBM Cloud Or Watson", "Managed Hosting", 26], ["IBM Cloud Or Watson", "Microsoft Azure", 168], ["IBM Cloud Or Watson", "Netlify", 47], ["IBM Cloud Or Watson", "OVH", 28], ["IBM Cloud Or Watson", "OpenShift", 82], ["IBM Cloud Or Watson", "OpenStack", 29], ["IBM Cloud Or Watson", "Oracle Cloud Infrastructure (OCI)", 37], ["IBM Cloud Or Watson", "Render", 20], ["IBM Cloud Or Watson", "Scaleway", 15], ["IBM Cloud Or Watson", "VMware", 62], ["IBM Cloud Or Watson", "Vercel", 66], ["IBM Cloud Or Watson", "Vultr", 19], ["Linode, now Akamai", "Amazon Web Services (AWS)", 835], ["Linode, now Akamai", "Cloudflare", 568], ["Linode, now Akamai", "Colocation", 37], ["Linode, now Akamai", "Digital Ocean", 478], ["Linode, now Akamai", "Firebase", 260], ["Linode, now Akamai", "Fly.io", 153], ["Linode, now Akamai", "Google Cloud", 456], ["Linode, now Akamai", "Heroku", 119], ["Linode, now Akamai", "Hetzner", 190], ["Linode, now Akamai", "IBM Cloud Or Watson", 35], ["Linode, now Akamai", "Linode, now Akamai", 1060], ["Linode, now Akamai", "Managed Hosting", 93], ["Linode, now Akamai", "Microsoft Azure", 330], ["Linode, now Akamai", "Netlify", 208], ["Linode, now Akamai", "OVH", 87], ["Linode, now Akamai", "OpenShift", 60], ["Linode, now Akamai", "OpenStack", 60], ["Linode, now Akamai", "Oracle Cloud Infrastructure (OCI)", 58], ["Linode, now Akamai", "Render", 66], ["Linode, now Akamai", "Scaleway", 28], ["Linode, now Akamai", "VMware", 122], ["Linode, now Akamai", "Vercel", 354], ["Linode, now Akamai", "Vultr", 117], ["Managed Hosting", "Amazon Web Services (AWS)", 748], ["Managed Hosting", "Cloudflare", 466], ["Managed Hosting", "Colocation", 56], ["Managed Hosting", "Digital Ocean", 336], ["Managed Hosting", "Firebase", 293], ["Managed Hosting", "Fly.io", 83], ["Managed Hosting", "Google Cloud", 424], ["Managed Hosting", "Heroku", 85], ["Managed Hosting", "Hetzner", 137], ["Managed Hosting", "IBM Cloud Or Watson", 38], ["Managed Hosting", "Linode, now Akamai", 137], ["Managed Hosting", "Managed Hosting", 1025], ["Managed Hosting", "Microsoft Azure", 458], ["Managed Hosting", "Netlify", 156], ["Managed Hosting", "OVH", 106], ["Managed Hosting", "OpenShift", 68], ["Managed Hosting", "OpenStack", 84], ["Managed Hosting", "Oracle Cloud Infrastructure (OCI)", 50], ["Managed Hosting", "Render", 45], ["Managed Hosting", "Scaleway", 49], ["Managed Hosting", "VMware", 160], ["Managed Hosting", "Vercel", 249], ["Managed Hosting", "Vultr", 59], ["Microsoft Azure", "Amazon Web Services (AWS)", 5746], ["Microsoft Azure", "Cloudflare", 1918], ["Microsoft Azure", "Colocation", 95], ["Microsoft Azure", "Digital Ocean", 1279], ["Microsoft Azure", "Firebase", 1571], ["Microsoft Azure", "Fly.io", 378], ["Microsoft Azure", "Google Cloud", 2984], ["Microsoft Azure", "Heroku", 493], ["Microsoft Azure", "Hetzner", 479], ["Microsoft Azure", "IBM Cloud Or Watson", 191], ["Microsoft Azure", "Linode, now Akamai", 497], ["Microsoft Azure", "Managed Hosting", 312], ["Microsoft Azure", "Microsoft Azure", 9353], ["Microsoft Azure", "Netlify", 714], ["Microsoft Azure", "OVH", 288], ["Microsoft Azure", "OpenShift", 386], ["Microsoft Azure", "OpenStack", 255], ["Microsoft Azure", "Oracle Cloud Infrastructure (OCI)", 277], ["Microsoft Azure", "Render", 151], ["Microsoft Azure", "Scaleway", 99], ["Microsoft Azure", "VMware", 628], ["Microsoft Azure", "Vercel", 1347], ["Microsoft Azure", "Vultr", 176], ["Netlify", "Amazon Web Services (AWS)", 2148], ["Netlify", "Cloudflare", 1296], ["Netlify", "Colocation", 29], ["Netlify", "Digital Ocean", 969], ["Netlify", "Firebase", 1125], ["Netlify", "Fly.io", 492], ["Netlify", "Google Cloud", 1183], ["Netlify", "Heroku", 458], ["Netlify", "Hetzner", 213], ["Netlify", "IBM Cloud Or Watson", 77], ["Netlify", "Linode, now Akamai", 313], ["Netlify", "Managed Hosting", 118], ["Netlify", "Microsoft Azure", 831], ["Netlify", "Netlify", 2479], ["Netlify", "OVH", 116], ["Netlify", "OpenShift", 76], ["Netlify", "OpenStack", 67], ["Netlify", "Oracle Cloud Infrastructure (OCI)", 78], ["Netlify", "Render", 325], ["Netlify", "Scaleway", 72], ["Netlify", "VMware", 152], ["Netlify", "Vercel", 1822], ["Netlify", "Vultr", 130], ["OVH", "Amazon Web Services (AWS)", 709], ["OVH", "Cloudflare", 503], ["OVH", "Colocation", 45], ["OVH", "Digital Ocean", 264], ["OVH", "Firebase", 248], ["OVH", "Fly.io", 102], ["OVH", "Google Cloud", 410], ["OVH", "Heroku", 87], ["OVH", "Hetzner", 232], ["OVH", "IBM Cloud Or Watson", 28], ["OVH", "Linode, now Akamai", 102], ["OVH", "Managed Hosting", 102], ["OVH", "Microsoft Azure", 310], ["OVH", "Netlify", 141], ["OVH", "OVH", 957], ["OVH", "OpenShift", 53], ["OVH", "OpenStack", 74], ["OVH", "Oracle Cloud Infrastructure (OCI)", 51], ["OVH", "Render", 29], ["OVH", "Scaleway", 131], ["OVH", "VMware", 117], ["OVH", "Vercel", 259], ["OVH", "Vultr", 72], ["OpenShift", "Amazon Web Services (AWS)", 615], ["OpenShift", "Cloudflare", 168], ["OpenShift", "Colocation", 23], ["OpenShift", "Digital Ocean", 127], ["OpenShift", "Firebase", 130], ["OpenShift", "Fly.io", 56], ["OpenShift", "Google Cloud", 348], ["OpenShift", "Heroku", 62], ["OpenShift", "Hetzner", 76], ["OpenShift", "IBM Cloud Or Watson", 58], ["OpenShift", "Linode, now Akamai", 67], ["OpenShift", "Managed Hosting", 48], ["OpenShift", "Microsoft Azure", 393], ["OpenShift", "Netlify", 54], ["OpenShift", "OVH", 46], ["OpenShift", "OpenShift", 695], ["OpenShift", "OpenStack", 79], ["OpenShift", "Oracle Cloud Infrastructure (OCI)", 50], ["OpenShift", "Render", 19], ["OpenShift", "Scaleway", 28], ["OpenShift", "VMware", 126], ["OpenShift", "Vercel", 102], ["OpenShift", "Vultr", 28], ["OpenStack", "Amazon Web Services (AWS)", 310], ["OpenStack", "Cloudflare", 135], ["OpenStack", "Colocation", 34], ["OpenStack", "Digital Ocean", 101], ["OpenStack", "Firebase", 89], ["OpenStack", "Fly.io", 43], ["OpenStack", "Google Cloud", 223], ["OpenStack", "Heroku", 50], ["OpenStack", "Hetzner", 70], ["OpenStack", "IBM Cloud Or Watson", 30], ["OpenStack", "Linode, now Akamai", 53], ["OpenStack", "Managed Hosting", 54], ["OpenStack", "Microsoft Azure", 167], ["OpenStack", "Netlify", 45], ["OpenStack", "OVH", 55], ["OpenStack", "OpenShift", 79], ["OpenStack", "OpenStack", 328], ["OpenStack", "Oracle Cloud Infrastructure (OCI)", 36], ["OpenStack", "Render", 17], ["OpenStack", "Scaleway", 31], ["OpenStack", "VMware", 81], ["OpenStack", "Vercel", 66], ["OpenStack", "Vultr", 27], ["Oracle Cloud Infrastructure (OCI)", "Amazon Web Services (AWS)", 455], ["Oracle Cloud Infrastructure (OCI)", "Cloudflare", 281], ["Oracle Cloud Infrastructure (OCI)", "Colocation", 24], ["Oracle Cloud Infrastructure (OCI)", "Digital Ocean", 155], ["Oracle Cloud Infrastructure (OCI)", "Firebase", 151], ["Oracle Cloud Infrastructure (OCI)", "Fly.io", 65], ["Oracle Cloud Infrastructure (OCI)", "Google Cloud", 293], ["Oracle Cloud Infrastructure (OCI)", "Heroku", 53], ["Oracle Cloud Infrastructure (OCI)", "Hetzner", 103], ["Oracle Cloud Infrastructure (OCI)", "IBM Cloud Or Watson", 48], ["Oracle Cloud Infrastructure (OCI)", "Linode, now Akamai", 71], ["Oracle Cloud Infrastructure (OCI)", "Managed Hosting", 47], ["Oracle Cloud Infrastructure (OCI)", "Microsoft Azure", 275], ["Oracle Cloud Infrastructure (OCI)", "Netlify", 74], ["Oracle Cloud Infrastructure (OCI)", "OVH", 60], ["Oracle Cloud Infrastructure (OCI)", "OpenShift", 55], ["Oracle Cloud Infrastructure (OCI)", "OpenStack", 49], ["Oracle Cloud Infrastructure (OCI)", "Oracle Cloud Infrastructure (OCI)", 618], ["Oracle Cloud Infrastructure (OCI)", "Render", 25], ["Oracle Cloud Infrastructure (OCI)", "Scaleway", 22], ["Oracle Cloud Infrastructure (OCI)", "VMware", 81], ["Oracle Cloud Infrastructure (OCI)", "Vercel", 122], ["Oracle Cloud Infrastructure (OCI)", "Vultr", 42], ["Render", "Amazon Web Services (AWS)", 410], ["Render", "Cloudflare", 251], ["Render", "Colocation", 15], ["Render", "Digital Ocean", 214], ["Render", "Firebase", 227], ["Render", "Fly.io", 139], ["Render", "Google Cloud", 214], ["Render", "Heroku", 86], ["Render", "Hetzner", 52], ["Render", "IBM Cloud Or Watson", 21], ["Render", "Linode, now Akamai", 75], ["Render", "Managed Hosting", 28], ["Render", "Microsoft Azure", 154], ["Render", "Netlify", 228], ["Render", "OVH", 22], ["Render", "OpenShift", 16], ["Render", "OpenStack", 18], ["Render", "Oracle Cloud Infrastructure (OCI)", 22], ["Render", "Render", 478], ["Render", "Scaleway", 23], ["Render", "VMware", 29], ["Render", "Vercel", 372], ["Render", "Vultr", 34], ["Scaleway", "Amazon Web Services (AWS)", 195], ["Scaleway", "Cloudflare", 156], ["Scaleway", "Colocation", 20], ["Scaleway", "Digital Ocean", 79], ["Scaleway", "Firebase", 54], ["Scaleway", "Fly.io", 71], ["Scaleway", "Google Cloud", 120], ["Scaleway", "Heroku", 33], ["Scaleway", "Hetzner", 114], ["Scaleway", "IBM Cloud Or Watson", 14], ["Scaleway", "Linode, now Akamai", 35], ["Scaleway", "Managed Hosting", 38], ["Scaleway", "Microsoft Azure", 73], ["Scaleway", "Netlify", 45], ["Scaleway", "OVH", 83], ["Scaleway", "OpenShift", 27], ["Scaleway", "OpenStack", 25], ["Scaleway", "Oracle Cloud Infrastructure (OCI)", 17], ["Scaleway", "Render", 21], ["Scaleway", "Scaleway", 275], ["Scaleway", "VMware", 24], ["Scaleway", "Vercel", 74], ["Scaleway", "Vultr", 21], ["VMware", "Amazon Web Services (AWS)", 1501], ["VMware", "Cloudflare", 648], ["VMware", "Colocation", 53], ["VMware", "Digital Ocean", 417], ["VMware", "Firebase", 500], ["VMware", "Fly.io", 84], ["VMware", "Google Cloud", 893], ["VMware", "Heroku", 201], ["VMware", "Hetzner", 174], ["VMware", "IBM Cloud Or Watson", 100], ["VMware", "Linode, now Akamai", 195], ["VMware", "Managed Hosting", 197], ["VMware", "Microsoft Azure", 1049], ["VMware", "Netlify", 195], ["VMware", "OVH", 142], ["VMware", "OpenShift", 196], ["VMware", "OpenStack", 167], ["VMware", "Oracle Cloud Infrastructure (OCI)", 123], ["VMware", "Render", 49], ["VMware", "Scaleway", 42], ["VMware", "VMware", 1451], ["VMware", "Vercel", 248], ["VMware", "Vultr", 63], ["Vercel", "Amazon Web Services (AWS)", 2670], ["Vercel", "Cloudflare", 1668], ["Vercel", "Colocation", 38], ["Vercel", "Digital Ocean", 1105], ["Vercel", "Firebase", 1323], ["Vercel", "Fly.io", 575], ["Vercel", "Google Cloud", 1411], ["Vercel", "Heroku", 403], ["Vercel", "Hetzner", 287], ["Vercel", "IBM Cloud Or Watson", 68], ["Vercel", "Linode, now Akamai", 361], ["Vercel", "Managed Hosting", 137], ["Vercel", "Microsoft Azure", 897], ["Vercel", "Netlify", 1177], ["Vercel", "OVH", 132], ["Vercel", "OpenShift", 58], ["Vercel", "OpenStack", 64], ["Vercel", "Oracle Cloud Infrastructure (OCI)", 81], ["Vercel", "Render", 361], ["Vercel", "Scaleway", 79], ["Vercel", "VMware", 134], ["Vercel", "Vercel", 3945], ["Vercel", "Vultr", 141], ["Vultr", "Amazon Web Services (AWS)", 388], ["Vultr", "Cloudflare", 348], ["Vultr", "Colocation", 36], ["Vultr", "Digital Ocean", 268], ["Vultr", "Firebase", 126], ["Vultr", "Fly.io", 94], ["Vultr", "Google Cloud", 185], ["Vultr", "Heroku", 38], ["Vultr", "Hetzner", 110], ["Vultr", "IBM Cloud Or Watson", 18], ["Vultr", "Linode, now Akamai", 108], ["Vultr", "Managed Hosting", 55], ["Vultr", "Microsoft Azure", 167], ["Vultr", "Netlify", 100], ["Vultr", "OVH", 71], ["Vultr", "OpenShift", 23], ["Vultr", "OpenStack", 28], ["Vultr", "Oracle Cloud Infrastructure (OCI)", 31], ["Vultr", "Render", 37], ["Vultr", "Scaleway", 28], ["Vultr", "VMware", 45], ["Vultr", "Vercel", 181], ["Vultr", "Vultr", 516]]}, {"query": "SELECT Platforms.Name AS CloudPlatform, COUNT(*) AS NumberOfDevelopers FROM Response_PlatformWantToWorkWith JOIN Responses ON Responses.id = Response_PlatformWantToWorkWith.Response_id JOIN Platforms ON Platforms.id = Response_PlatformWantToWorkWith.Platforms_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY Platforms.Name UNION SELECT Platforms.Name AS CloudPlatform, COUNT(*) AS NumberOfDevelopers FROM Response_PlatformHaveWorkedWith JOIN Responses ON Responses.id = Response_PlatformHaveWorkedWith.Response_id JOIN Platforms ON Platforms.id = Response_PlatformHaveWorkedWith.Platforms_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY Platforms.Name", "results": [["Amazon Web Services (AWS)", 23228], ["Amazon Web Services (AWS)", 29479], ["Cloudflare", 7683], ["Cloudflare", 8326], ["Colocation", 348], ["Colocation", 385], ["Digital Ocean", 5897], ["Digital Ocean", 7838], ["Firebase", 6431], ["Firebase", 8550], ["Fly.io", 1342], ["Fly.io", 2201], ["Google Cloud", 11138], ["Google Cloud", 13304], ["Heroku", 2220], ["Heroku", 6535], ["Hetzner", 2249], ["Hetzner", 2465], ["IBM Cloud Or Watson", 493], ["IBM Cloud Or Watson", 571], ["Linode, now Akamai", 2077], ["Linode, now Akamai", 2104], ["Managed Hosting", 1184], ["Managed Hosting", 1889], ["Microsoft Azure", 12276], ["Microsoft Azure", 15441], ["Netlify", 3453], ["Netlify", 4708], ["OVH", 1197], ["OVH", 1912], ["OpenShift", 1173], ["OpenShift", 1432], ["OpenStack", 802], ["OpenStack", 868], ["Oracle Cloud Infrastructure (OCI)", 952], ["Oracle Cloud Infrastructure (OCI)", 1146], ["Render", 876], ["Render", 920], ["Scaleway", 469], ["Scaleway", 520], ["VMware", 1824], ["VMware", 3584], ["Vercel", 5727], ["Vercel", 6437], ["Vultr", 792], ["Vultr", 1021]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many developers want to use which web framework or technology and what are they currently using?", "labels": [{"query": "SELECT WebFrameworks1.name AS have_worked_with, WebFrameworks2.name AS want_to_work_with, COUNT(*) FROM Response_WebframeHaveWorkedWith JOIN WebFrameworks AS WebFrameworks1 ON Response_WebframeHaveWorkedWith.WebFrameworks_id = WebFrameworks1.id JOIN Response_WebframeWantToWorkWith ON Response_WebframeWantToWorkWith.Response_id = Response_WebframeHaveWorkedWith.Response_id JOIN WebFrameworks AS WebFrameworks2 ON Response_WebframeWantToWorkWith.WebFrameworks_id = WebFrameworks2.id GROUP BY WebFrameworks1.name, WebFrameworks2.name", "results": [["ASP.NET", "ASP.NET", 3514], ["ASP.NET", "ASP.NET CORE", 5277], ["ASP.NET", "Angular", 2156], ["ASP.NET", "AngularJS", 637], ["ASP.NET", "Blazor", 2393], ["ASP.NET", "CodeIgniter", 89], ["ASP.NET", "Deno", 398], ["ASP.NET", "Django", 612], ["ASP.NET", "Drupal", 95], ["ASP.NET", "Elm", 117], ["ASP.NET", "Express", 910], ["ASP.NET", "FastAPI", 428], ["ASP.NET", "Fastify", 129], ["ASP.NET", "Flask", 473], ["ASP.NET", "Gatsby", 134], ["ASP.NET", "Laravel", 401], ["ASP.NET", "Lit", 80], ["ASP.NET", "NestJS", 385], ["ASP.NET", "Next.js", 1455], ["ASP.NET", "Node.js", 2857], ["ASP.NET", "Nuxt.js", 386], ["ASP.NET", "Phoenix", 153], ["ASP.NET", "Play Framework", 44], ["ASP.NET", "Qwik", 237], ["ASP.NET", "React", 3115], ["ASP.NET", "Remix", 179], ["ASP.NET", "Ruby on Rails", 350], ["ASP.NET", "Solid.js", 329], ["ASP.NET", "Spring Boot", 517], ["ASP.NET", "Svelte", 947], ["ASP.NET", "Symfony", 139], ["ASP.NET", "Vue.js", 1700], ["ASP.NET", "WordPress", 547], ["ASP.NET", "jQuery", 1380], ["ASP.NET CORE", "ASP.NET", 2724], ["ASP.NET CORE", "ASP.NET CORE", 8433], ["ASP.NET CORE", "Angular", 2778], ["ASP.NET CORE", "AngularJS", 560], ["ASP.NET CORE", "Blazor", 3532], ["ASP.NET CORE", "CodeIgniter", 70], ["ASP.NET CORE", "Deno", 608], ["ASP.NET CORE", "Django", 613], ["ASP.NET CORE", "Drupal", 77], ["ASP.NET CORE", "Elm", 164], ["ASP.NET CORE", "Express", 1023], ["ASP.NET CORE", "FastAPI", 539], ["ASP.NET CORE", "Fastify", 169], ["ASP.NET CORE", "Flask", 504], ["ASP.NET CORE", "Gatsby", 155], ["ASP.NET CORE", "Laravel", 402], ["ASP.NET CORE", "Lit", 115], ["ASP.NET CORE", "NestJS", 482], ["ASP.NET CORE", "Next.js", 1850], ["ASP.NET CORE", "Node.js", 3305], ["ASP.NET CORE", "Nuxt.js", 463], ["ASP.NET CORE", "Phoenix", 221], ["ASP.NET CORE", "Play Framework", 46], ["ASP.NET CORE", "Qwik", 288], ["ASP.NET CORE", "React", 3960], ["ASP.NET CORE", "Remix", 246], ["ASP.NET CORE", "Ruby on Rails", 347], ["ASP.NET CORE", "Solid.js", 457], ["ASP.NET CORE", "Spring Boot", 576], ["ASP.NET CORE", "Svelte", 1380], ["ASP.NET CORE", "Symfony", 137], ["ASP.NET CORE", "Vue.js", 2096], ["ASP.NET CORE", "WordPress", 518], ["ASP.NET CORE", "jQuery", 1245], ["Angular", "ASP.NET", 1234], ["Angular", "ASP.NET CORE", 3004], ["Angular", "Angular", 6363], ["Angular", "AngularJS", 678], ["Angular", "Blazor", 1274], ["Angular", "CodeIgniter", 113], ["Angular", "Deno", 960], ["Angular", "Django", 1031], ["Angular", "Drupal", 124], ["Angular", "Elm", 171], ["Angular", "Express", 2070], ["Angular", "FastAPI", 871], ["Angular", "Fastify", 373], ["Angular", "Flask", 794], ["Angular", "Gatsby", 236], ["Angular", "Laravel", 721], ["Angular", "Lit", 195], ["Angular", "NestJS", 1322], ["Angular", "Next.js", 2542], ["Angular", "Node.js", 4915], ["Angular", "Nuxt.js", 700], ["Angular", "Phoenix", 294], ["Angular", "Play Framework", 93], ["Angular", "Qwik", 590], ["Angular", "React", 4482], ["Angular", "Remix", 393], ["Angular", "Ruby on Rails", 553], ["Angular", "Solid.js", 666], ["Angular", "Spring Boot", 1979], ["Angular", "Svelte", 1828], ["Angular", "Symfony", 283], ["Angular", "Vue.js", 2485], ["Angular", "WordPress", 716], ["Angular", "jQuery", 1056], ["AngularJS", "ASP.NET", 615], ["AngularJS", "ASP.NET CORE", 1124], ["AngularJS", "Angular", 1500], ["AngularJS", "AngularJS", 995], ["AngularJS", "Blazor", 455], ["AngularJS", "CodeIgniter", 93], ["AngularJS", "Deno", 380], ["AngularJS", "Django", 544], ["AngularJS", "Drupal", 94], ["AngularJS", "Elm", 92], ["AngularJS", "Express", 939], ["AngularJS", "FastAPI", 412], ["AngularJS", "Fastify", 184], ["AngularJS", "Flask", 428], ["AngularJS", "Gatsby", 139], ["AngularJS", "Laravel", 462], ["AngularJS", "Lit", 69], ["AngularJS", "NestJS", 472], ["AngularJS", "Next.js", 1204], ["AngularJS", "Node.js", 2238], ["AngularJS", "Nuxt.js", 370], ["AngularJS", "Phoenix", 152], ["AngularJS", "Play Framework", 55], ["AngularJS", "Qwik", 207], ["AngularJS", "React", 2210], ["AngularJS", "Remix", 203], ["AngularJS", "Ruby on Rails", 324], ["AngularJS", "Solid.js", 254], ["AngularJS", "Spring Boot", 745], ["AngularJS", "Svelte", 689], ["AngularJS", "Symfony", 185], ["AngularJS", "Vue.js", 1316], ["AngularJS", "WordPress", 431], ["AngularJS", "jQuery", 772], ["Blazor", "ASP.NET", 802], ["Blazor", "ASP.NET CORE", 2173], ["Blazor", "Angular", 667], ["Blazor", "AngularJS", 149], ["Blazor", "Blazor", 2136], ["Blazor", "CodeIgniter", 32], ["Blazor", "Deno", 192], ["Blazor", "Django", 188], ["Blazor", "Drupal", 36], ["Blazor", "Elm", 53], ["Blazor", "Express", 283], ["Blazor", "FastAPI", 164], ["Blazor", "Fastify", 60], ["Blazor", "Flask", 147], ["Blazor", "Gatsby", 54], ["Blazor", "Laravel", 129], ["Blazor", "Lit", 51], ["Blazor", "NestJS", 132], ["Blazor", "Next.js", 492], ["Blazor", "Node.js", 820], ["Blazor", "Nuxt.js", 156], ["Blazor", "Phoenix", 74], ["Blazor", "Play Framework", 29], ["Blazor", "Qwik", 109], ["Blazor", "React", 954], ["Blazor", "Remix", 72], ["Blazor", "Ruby on Rails", 114], ["Blazor", "Solid.js", 158], ["Blazor", "Spring Boot", 151], ["Blazor", "Svelte", 425], ["Blazor", "Symfony", 61], ["Blazor", "Vue.js", 569], ["Blazor", "WordPress", 194], ["Blazor", "jQuery", 400], ["CodeIgniter", "ASP.NET", 123], ["CodeIgniter", "ASP.NET CORE", 158], ["CodeIgniter", "Angular", 262], ["CodeIgniter", "AngularJS", 167], ["CodeIgniter", "Blazor", 68], ["CodeIgniter", "CodeIgniter", 316], ["CodeIgniter", "Deno", 100], ["CodeIgniter", "Django", 240], ["CodeIgniter", "Drupal", 60], ["CodeIgniter", "Elm", 29], ["CodeIgniter", "Express", 302], ["CodeIgniter", "FastAPI", 141], ["CodeIgniter", "Fastify", 78], ["CodeIgniter", "Flask", 158], ["CodeIgniter", "Gatsby", 62], ["CodeIgniter", "Laravel", 470], ["CodeIgniter", "Lit", 34], ["CodeIgniter", "NestJS", 160], ["CodeIgniter", "Next.js", 380], ["CodeIgniter", "Node.js", 569], ["CodeIgniter", "Nuxt.js", 160], ["CodeIgniter", "Phoenix", 51], ["CodeIgniter", "Play Framework", 32], ["CodeIgniter", "Qwik", 74], ["CodeIgniter", "React", 546], ["CodeIgniter", "Remix", 76], ["CodeIgniter", "Ruby on Rails", 99], ["CodeIgniter", "Solid.js", 85], ["CodeIgniter", "Spring Boot", 151], ["CodeIgniter", "Svelte", 201], ["CodeIgniter", "Symfony", 151], ["CodeIgniter", "Vue.js", 443], ["CodeIgniter", "WordPress", 267], ["CodeIgniter", "jQuery", 353], ["Deno", "ASP.NET", 68], ["Deno", "ASP.NET CORE", 129], ["Deno", "Angular", 171], ["Deno", "AngularJS", 46], ["Deno", "Blazor", 66], ["Deno", "CodeIgniter", 22], ["Deno", "Deno", 1083], ["Deno", "Django", 124], ["Deno", "Drupal", 26], ["Deno", "Elm", 77], ["Deno", "Express", 377], ["Deno", "FastAPI", 178], ["Deno", "Fastify", 165], ["Deno", "Flask", 132], ["Deno", "Gatsby", 61], ["Deno", "Laravel", 96], ["Deno", "Lit", 76], ["Deno", "NestJS", 165], ["Deno", "Next.js", 582], ["Deno", "Node.js", 833], ["Deno", "Nuxt.js", 184], ["Deno", "Phoenix", 122], ["Deno", "Play Framework", 26], ["Deno", "Qwik", 228], ["Deno", "React", 693], ["Deno", "Remix", 208], ["Deno", "Ruby on Rails", 93], ["Deno", "Solid.js", 346], ["Deno", "Spring Boot", 85], ["Deno", "Svelte", 679], ["Deno", "Symfony", 41], ["Deno", "Vue.js", 382], ["Deno", "WordPress", 67], ["Deno", "jQuery", 77], ["Django", "ASP.NET", 396], ["Django", "ASP.NET CORE", 608], ["Django", "Angular", 953], ["Django", "AngularJS", 444], ["Django", "Blazor", 284], ["Django", "CodeIgniter", 90], ["Django", "Deno", 588], ["Django", "Django", 4161], ["Django", "Drupal", 88], ["Django", "Elm", 135], ["Django", "Express", 1234], ["Django", "FastAPI", 2052], ["Django", "Fastify", 219], ["Django", "Flask", 1856], ["Django", "Gatsby", 201], ["Django", "Laravel", 510], ["Django", "Lit", 84], ["Django", "NestJS", 555], ["Django", "Next.js", 1912], ["Django", "Node.js", 2698], ["Django", "Nuxt.js", 548], ["Django", "Phoenix", 325], ["Django", "Play Framework", 72], ["Django", "Qwik", 291], ["Django", "React", 3094], ["Django", "Remix", 315], ["Django", "Ruby on Rails", 492], ["Django", "Solid.js", 419], ["Django", "Spring Boot", 717], ["Django", "Svelte", 1278], ["Django", "Symfony", 166], ["Django", "Vue.js", 1697], ["Django", "WordPress", 542], ["Django", "jQuery", 840], ["Drupal", "ASP.NET", 109], ["Drupal", "ASP.NET CORE", 158], ["Drupal", "Angular", 239], ["Drupal", "AngularJS", 133], ["Drupal", "Blazor", 78], ["Drupal", "CodeIgniter", 53], ["Drupal", "Deno", 98], ["Drupal", "Django", 189], ["Drupal", "Drupal", 345], ["Drupal", "Elm", 35], ["Drupal", "Express", 201], ["Drupal", "FastAPI", 109], ["Drupal", "Fastify", 58], ["Drupal", "Flask", 139], ["Drupal", "Gatsby", 103], ["Drupal", "Laravel", 276], ["Drupal", "Lit", 38], ["Drupal", "NestJS", 110], ["Drupal", "Next.js", 325], ["Drupal", "Node.js", 558], ["Drupal", "Nuxt.js", 138], ["Drupal", "Phoenix", 53], ["Drupal", "Play Framework", 32], ["Drupal", "Qwik", 65], ["Drupal", "React", 541], ["Drupal", "Remix", 80], ["Drupal", "Ruby on Rails", 106], ["Drupal", "Solid.js", 85], ["Drupal", "Spring Boot", 148], ["Drupal", "Svelte", 200], ["Drupal", "Symfony", 200], ["Drupal", "Vue.js", 353], ["Drupal", "WordPress", 278], ["Drupal", "jQuery", 280], ["Elm", "ASP.NET", 33], ["Elm", "ASP.NET CORE", 72], ["Elm", "Angular", 47], ["Elm", "AngularJS", 28], ["Elm", "Blazor", 36], ["Elm", "CodeIgniter", 18], ["Elm", "Deno", 104], ["Elm", "Django", 57], ["Elm", "Drupal", 25], ["Elm", "Elm", 308], ["Elm", "Express", 58], ["Elm", "FastAPI", 61], ["Elm", "Fastify", 37], ["Elm", "Flask", 50], ["Elm", "Gatsby", 33], ["Elm", "Laravel", 37], ["Elm", "Lit", 34], ["Elm", "NestJS", 43], ["Elm", "Next.js", 103], ["Elm", "Node.js", 124], ["Elm", "Nuxt.js", 34], ["Elm", "Phoenix", 127], ["Elm", "Play Framework", 26], ["Elm", "Qwik", 49], ["Elm", "React", 137], ["Elm", "Remix", 48], ["Elm", "Ruby on Rails", 56], ["Elm", "Solid.js", 64], ["Elm", "Spring Boot", 34], ["Elm", "Svelte", 135], ["Elm", "Symfony", 25], ["Elm", "Vue.js", 68], ["Elm", "WordPress", 31], ["Elm", "jQuery", 34], ["Express", "ASP.NET", 707], ["Express", "ASP.NET CORE", 1391], ["Express", "Angular", 2225], ["Express", "AngularJS", 684], ["Express", "Blazor", 553], ["Express", "CodeIgniter", 125], ["Express", "Deno", 2271], ["Express", "Django", 1593], ["Express", "Drupal", 102], ["Express", "Elm", 215], ["Express", "Express", 7511], ["Express", "FastAPI", 1328], ["Express", "Fastify", 1163], ["Express", "Flask", 1267], ["Express", "Gatsby", 493], ["Express", "Laravel", 975], ["Express", "Lit", 236], ["Express", "NestJS", 2311], ["Express", "Next.js", 5823], ["Express", "Node.js", 9028], ["Express", "Nuxt.js", 1425], ["Express", "Phoenix", 441], ["Express", "Play Framework", 77], ["Express", "Qwik", 1047], ["Express", "React", 7374], ["Express", "Remix", 1108], ["Express", "Ruby on Rails", 781], ["Express", "Solid.js", 1511], ["Express", "Spring Boot", 1337], ["Express", "Svelte", 3513], ["Express", "Symfony", 276], ["Express", "Vue.js", 3343], ["Express", "WordPress", 835], ["Express", "jQuery", 971], ["FastAPI", "ASP.NET", 206], ["FastAPI", "ASP.NET CORE", 393], ["FastAPI", "Angular", 504], ["FastAPI", "AngularJS", 172], ["FastAPI", "Blazor", 181], ["FastAPI", "CodeIgniter", 53], ["FastAPI", "Deno", 487], ["FastAPI", "Django", 1141], ["FastAPI", "Drupal", 41], ["FastAPI", "Elm", 117], ["FastAPI", "Express", 706], ["FastAPI", "FastAPI", 3434], ["FastAPI", "Fastify", 182], ["FastAPI", "Flask", 1019], ["FastAPI", "Gatsby", 122], ["FastAPI", "Laravel", 204], ["FastAPI", "Lit", 63], ["FastAPI", "NestJS", 373], ["FastAPI", "Next.js", 1190], ["FastAPI", "Node.js", 1474], ["FastAPI", "Nuxt.js", 318], ["FastAPI", "Phoenix", 240], ["FastAPI", "Play Framework", 49], ["FastAPI", "Qwik", 230], ["FastAPI", "React", 1762], ["FastAPI", "Remix", 211], ["FastAPI", "Ruby on Rails", 234], ["FastAPI", "Solid.js", 333], ["FastAPI", "Spring Boot", 421], ["FastAPI", "Svelte", 963], ["FastAPI", "Symfony", 77], ["FastAPI", "Vue.js", 950], ["FastAPI", "WordPress", 225], ["FastAPI", "jQuery", 297], ["Fastify", "ASP.NET", 65], ["Fastify", "ASP.NET CORE", 137], ["Fastify", "Angular", 198], ["Fastify", "AngularJS", 64], ["Fastify", "Blazor", 66], ["Fastify", "CodeIgniter", 34], ["Fastify", "Deno", 404], ["Fastify", "Django", 127], ["Fastify", "Drupal", 32], ["Fastify", "Elm", 54], ["Fastify", "Express", 446], ["Fastify", "FastAPI", 168], ["Fastify", "Fastify", 852], ["Fastify", "Flask", 109], ["Fastify", "Gatsby", 73], ["Fastify", "Laravel", 125], ["Fastify", "Lit", 55], ["Fastify", "NestJS", 353], ["Fastify", "Next.js", 637], ["Fastify", "Node.js", 986], ["Fastify", "Nuxt.js", 228], ["Fastify", "Phoenix", 102], ["Fastify", "Play Framework", 30], ["Fastify", "Qwik", 211], ["Fastify", "React", 719], ["Fastify", "Remix", 196], ["Fastify", "Ruby on Rails", 97], ["Fastify", "Solid.js", 282], ["Fastify", "Spring Boot", 124], ["Fastify", "Svelte", 465], ["Fastify", "Symfony", 51], ["Fastify", "Vue.js", 368], ["Fastify", "WordPress", 82], ["Fastify", "jQuery", 75], ["Flask", "ASP.NET", 374], ["Flask", "ASP.NET CORE", 617], ["Flask", "Angular", 902], ["Flask", "AngularJS", 369], ["Flask", "Blazor", 275], ["Flask", "CodeIgniter", 73], ["Flask", "Deno", 714], ["Flask", "Django", 2232], ["Flask", "Drupal", 60], ["Flask", "Elm", 168], ["Flask", "Express", 1289], ["Flask", "FastAPI", 2391], ["Flask", "Fastify", 221], ["Flask", "Flask", 3962], ["Flask", "Gatsby", 182], ["Flask", "Laravel", 393], ["Flask", "Lit", 77], ["Flask", "NestJS", 468], ["Flask", "Next.js", 1795], ["Flask", "Node.js", 2787], ["Flask", "Nuxt.js", 486], ["Flask", "Phoenix", 306], ["Flask", "Play Framework", 79], ["Flask", "Qwik", 299], ["Flask", "React", 2989], ["Flask", "Remix", 287], ["Flask", "Ruby on Rails", 449], ["Flask", "Solid.js", 432], ["Flask", "Spring Boot", 727], ["Flask", "Svelte", 1373], ["Flask", "Symfony", 135], ["Flask", "Vue.js", 1595], ["Flask", "WordPress", 477], ["Flask", "jQuery", 749], ["Gatsby", "ASP.NET", 93], ["Gatsby", "ASP.NET CORE", 179], ["Gatsby", "Angular", 203], ["Gatsby", "AngularJS", 82], ["Gatsby", "Blazor", 83], ["Gatsby", "CodeIgniter", 28], ["Gatsby", "Deno", 308], ["Gatsby", "Django", 204], ["Gatsby", "Drupal", 58], ["Gatsby", "Elm", 65], ["Gatsby", "Express", 489], ["Gatsby", "FastAPI", 197], ["Gatsby", "Fastify", 143], ["Gatsby", "Flask", 170], ["Gatsby", "Gatsby", 480], ["Gatsby", "Laravel", 121], ["Gatsby", "Lit", 54], ["Gatsby", "NestJS", 241], ["Gatsby", "Next.js", 846], ["Gatsby", "Node.js", 946], ["Gatsby", "Nuxt.js", 171], ["Gatsby", "Phoenix", 95], ["Gatsby", "Play Framework", 28], ["Gatsby", "Qwik", 156], ["Gatsby", "React", 1091], ["Gatsby", "Remix", 250], ["Gatsby", "Ruby on Rails", 169], ["Gatsby", "Solid.js", 227], ["Gatsby", "Spring Boot", 156], ["Gatsby", "Svelte", 462], ["Gatsby", "Symfony", 60], ["Gatsby", "Vue.js", 370], ["Gatsby", "WordPress", 164], ["Gatsby", "jQuery", 112], ["Laravel", "ASP.NET", 336], ["Laravel", "ASP.NET CORE", 518], ["Laravel", "Angular", 807], ["Laravel", "AngularJS", 379], ["Laravel", "Blazor", 213], ["Laravel", "CodeIgniter", 214], ["Laravel", "Deno", 427], ["Laravel", "Django", 750], ["Laravel", "Drupal", 120], ["Laravel", "Elm", 77], ["Laravel", "Express", 1085], ["Laravel", "FastAPI", 405], ["Laravel", "Fastify", 203], ["Laravel", "Flask", 481], ["Laravel", "Gatsby", 178], ["Laravel", "Laravel", 2863], ["Laravel", "Lit", 70], ["Laravel", "NestJS", 567], ["Laravel", "Next.js", 1492], ["Laravel", "Node.js", 2288], ["Laravel", "Nuxt.js", 749], ["Laravel", "Phoenix", 184], ["Laravel", "Play Framework", 45], ["Laravel", "Qwik", 236], ["Laravel", "React", 2179], ["Laravel", "Remix", 257], ["Laravel", "Ruby on Rails", 349], ["Laravel", "Solid.js", 331], ["Laravel", "Spring Boot", 482], ["Laravel", "Svelte", 943], ["Laravel", "Symfony", 592], ["Laravel", "Vue.js", 2097], ["Laravel", "WordPress", 786], ["Laravel", "jQuery", 916], ["Lit", "ASP.NET", 32], ["Lit", "ASP.NET CORE", 73], ["Lit", "Angular", 84], ["Lit", "AngularJS", 30], ["Lit", "Blazor", 43], ["Lit", "CodeIgniter", 20], ["Lit", "Deno", 105], ["Lit", "Django", 47], ["Lit", "Drupal", 25], ["Lit", "Elm", 42], ["Lit", "Express", 111], ["Lit", "FastAPI", 50], ["Lit", "Fastify", 47], ["Lit", "Flask", 41], ["Lit", "Gatsby", 30], ["Lit", "Laravel", 43], ["Lit", "Lit", 273], ["Lit", "NestJS", 49], ["Lit", "Next.js", 117], ["Lit", "Node.js", 227], ["Lit", "Nuxt.js", 58], ["Lit", "Phoenix", 32], ["Lit", "Play Framework", 24], ["Lit", "Qwik", 72], ["Lit", "React", 167], ["Lit", "Remix", 46], ["Lit", "Ruby on Rails", 33], ["Lit", "Solid.js", 98], ["Lit", "Spring Boot", 53], ["Lit", "Svelte", 156], ["Lit", "Symfony", 28], ["Lit", "Vue.js", 106], ["Lit", "WordPress", 42], ["Lit", "jQuery", 37], ["NestJS", "ASP.NET", 197], ["NestJS", "ASP.NET CORE", 385], ["NestJS", "Angular", 851], ["NestJS", "AngularJS", 178], ["NestJS", "Blazor", 147], ["NestJS", "CodeIgniter", 40], ["NestJS", "Deno", 606], ["NestJS", "Django", 362], ["NestJS", "Drupal", 44], ["NestJS", "Elm", 66], ["NestJS", "Express", 1155], ["NestJS", "FastAPI", 368], ["NestJS", "Fastify", 436], ["NestJS", "Flask", 234], ["NestJS", "Gatsby", 121], ["NestJS", "Laravel", 238], ["NestJS", "Lit", 78], ["NestJS", "NestJS", 2216], ["NestJS", "Next.js", 1565], ["NestJS", "Node.js", 2240], ["NestJS", "Nuxt.js", 394], ["NestJS", "Phoenix", 168], ["NestJS", "Play Framework", 39], ["NestJS", "Qwik", 331], ["NestJS", "React", 1871], ["NestJS", "Remix", 323], ["NestJS", "Ruby on Rails", 194], ["NestJS", "Solid.js", 442], ["NestJS", "Spring Boot", 387], ["NestJS", "Svelte", 792], ["NestJS", "Symfony", 95], ["NestJS", "Vue.js", 766], ["NestJS", "WordPress", 180], ["NestJS", "jQuery", 147], ["Next.js", "ASP.NET", 551], ["Next.js", "ASP.NET CORE", 1130], ["Next.js", "Angular", 1285], ["Next.js", "AngularJS", 486], ["Next.js", "Blazor", 467], ["Next.js", "CodeIgniter", 93], ["Next.js", "Deno", 1833], ["Next.js", "Django", 1233], ["Next.js", "Drupal", 102], ["Next.js", "Elm", 204], ["Next.js", "Express", 3200], ["Next.js", "FastAPI", 1179], ["Next.js", "Fastify", 793], ["Next.js", "Flask", 904], ["Next.js", "Gatsby", 438], ["Next.js", "Laravel", 786], ["Next.js", "Lit", 177], ["Next.js", "NestJS", 1601], ["Next.js", "Next.js", 7896], ["Next.js", "Node.js", 6626], ["Next.js", "Nuxt.js", 1151], ["Next.js", "Phoenix", 474], ["Next.js", "Play Framework", 66], ["Next.js", "Qwik", 1073], ["Next.js", "React", 7280], ["Next.js", "Remix", 1241], ["Next.js", "Ruby on Rails", 720], ["Next.js", "Solid.js", 1673], ["Next.js", "Spring Boot", 886], ["Next.js", "Svelte", 3115], ["Next.js", "Symfony", 253], ["Next.js", "Vue.js", 2260], ["Next.js", "WordPress", 680], ["Next.js", "jQuery", 570], ["Node.js", "ASP.NET", 1808], ["Node.js", "ASP.NET CORE", 3710], ["Node.js", "Angular", 4650], ["Node.js", "AngularJS", 1475], ["Node.js", "Blazor", 1560], ["Node.js", "CodeIgniter", 224], ["Node.js", "Deno", 3711], ["Node.js", "Django", 3019], ["Node.js", "Drupal", 268], ["Node.js", "Elm", 461], ["Node.js", "Express", 7547], ["Node.js", "FastAPI", 2416], ["Node.js", "Fastify", 1433], ["Node.js", "Flask", 2424], ["Node.js", "Gatsby", 757], ["Node.js", "Laravel", 1877], ["Node.js", "Lit", 413], ["Node.js", "NestJS", 3200], ["Node.js", "Next.js", 9783], ["Node.js", "Node.js", 19793], ["Node.js", "Nuxt.js", 2258], ["Node.js", "Phoenix", 802], ["Node.js", "Play Framework", 138], ["Node.js", "Qwik", 1570], ["Node.js", "React", 14208], ["Node.js", "Remix", 1688], ["Node.js", "Ruby on Rails", 1589], ["Node.js", "Solid.js", 2421], ["Node.js", "Spring Boot", 2816], ["Node.js", "Svelte", 6037], ["Node.js", "Symfony", 699], ["Node.js", "Vue.js", 6735], ["Node.js", "WordPress", 1859], ["Node.js", "jQuery", 2592], ["Nuxt.js", "ASP.NET", 144], ["Nuxt.js", "ASP.NET CORE", 275], ["Nuxt.js", "Angular", 321], ["Nuxt.js", "AngularJS", 117], ["Nuxt.js", "Blazor", 132], ["Nuxt.js", "CodeIgniter", 46], ["Nuxt.js", "Deno", 425], ["Nuxt.js", "Django", 300], ["Nuxt.js", "Drupal", 52], ["Nuxt.js", "Elm", 46], ["Nuxt.js", "Express", 662], ["Nuxt.js", "FastAPI", 282], ["Nuxt.js", "Fastify", 208], ["Nuxt.js", "Flask", 231], ["Nuxt.js", "Gatsby", 96], ["Nuxt.js", "Laravel", 395], ["Nuxt.js", "Lit", 53], ["Nuxt.js", "NestJS", 396], ["Nuxt.js", "Next.js", 917], ["Nuxt.js", "Node.js", 1362], ["Nuxt.js", "Nuxt.js", 1518], ["Nuxt.js", "Phoenix", 110], ["Nuxt.js", "Play Framework", 34], ["Nuxt.js", "Qwik", 224], ["Nuxt.js", "React", 963], ["Nuxt.js", "Remix", 201], ["Nuxt.js", "Ruby on Rails", 177], ["Nuxt.js", "Solid.js", 294], ["Nuxt.js", "Spring Boot", 209], ["Nuxt.js", "Svelte", 754], ["Nuxt.js", "Symfony", 136], ["Nuxt.js", "Vue.js", 1627], ["Nuxt.js", "WordPress", 213], ["Nuxt.js", "jQuery", 170], ["Phoenix", "ASP.NET", 40], ["Phoenix", "ASP.NET CORE", 88], ["Phoenix", "Angular", 69], ["Phoenix", "AngularJS", 30], ["Phoenix", "Blazor", 51], ["Phoenix", "CodeIgniter", 22], ["Phoenix", "Deno", 136], ["Phoenix", "Django", 86], ["Phoenix", "Drupal", 27], ["Phoenix", "Elm", 150], ["Phoenix", "Express", 112], ["Phoenix", "FastAPI", 95], ["Phoenix", "Fastify", 57], ["Phoenix", "Flask", 62], ["Phoenix", "Gatsby", 38], ["Phoenix", "Laravel", 63], ["Phoenix", "Lit", 34], ["Phoenix", "NestJS", 72], ["Phoenix", "Next.js", 206], ["Phoenix", "Node.js", 206], ["Phoenix", "Nuxt.js", 56], ["Phoenix", "Phoenix", 1205], ["Phoenix", "Play Framework", 34], ["Phoenix", "Qwik", 62], ["Phoenix", "React", 343], ["Phoenix", "Remix", 70], ["Phoenix", "Ruby on Rails", 198], ["Phoenix", "Solid.js", 102], ["Phoenix", "Spring Boot", 64], ["Phoenix", "Svelte", 241], ["Phoenix", "Symfony", 37], ["Phoenix", "Vue.js", 161], ["Phoenix", "WordPress", 46], ["Phoenix", "jQuery", 40], ["Play Framework", "ASP.NET", 36], ["Play Framework", "ASP.NET CORE", 46], ["Play Framework", "Angular", 85], ["Play Framework", "AngularJS", 41], ["Play Framework", "Blazor", 29], ["Play Framework", "CodeIgniter", 24], ["Play Framework", "Deno", 49], ["Play Framework", "Django", 51], ["Play Framework", "Drupal", 27], ["Play Framework", "Elm", 43], ["Play Framework", "Express", 74], ["Play Framework", "FastAPI", 58], ["Play Framework", "Fastify", 34], ["Play Framework", "Flask", 59], ["Play Framework", "Gatsby", 33], ["Play Framework", "Laravel", 38], ["Play Framework", "Lit", 26], ["Play Framework", "NestJS", 46], ["Play Framework", "Next.js", 75], ["Play Framework", "Node.js", 134], ["Play Framework", "Nuxt.js", 38], ["Play Framework", "Phoenix", 45], ["Play Framework", "Play Framework", 184], ["Play Framework", "Qwik", 32], ["Play Framework", "React", 174], ["Play Framework", "Remix", 37], ["Play Framework", "Ruby on Rails", 42], ["Play Framework", "Solid.js", 39], ["Play Framework", "Spring Boot", 146], ["Play Framework", "Svelte", 64], ["Play Framework", "Symfony", 22], ["Play Framework", "Vue.js", 92], ["Play Framework", "WordPress", 47], ["Play Framework", "jQuery", 60], ["Qwik", "ASP.NET", 37], ["Qwik", "ASP.NET CORE", 51], ["Qwik", "Angular", 85], ["Qwik", "AngularJS", 31], ["Qwik", "Blazor", 33], ["Qwik", "CodeIgniter", 21], ["Qwik", "Deno", 116], ["Qwik", "Django", 52], ["Qwik", "Drupal", 23], ["Qwik", "Elm", 24], ["Qwik", "Express", 117], ["Qwik", "FastAPI", 52], ["Qwik", "Fastify", 60], ["Qwik", "Flask", 45], ["Qwik", "Gatsby", 34], ["Qwik", "Laravel", 54], ["Qwik", "Lit", 34], ["Qwik", "NestJS", 77], ["Qwik", "Next.js", 178], ["Qwik", "Node.js", 209], ["Qwik", "Nuxt.js", 72], ["Qwik", "Phoenix", 33], ["Qwik", "Play Framework", 25], ["Qwik", "Qwik", 259], ["Qwik", "React", 167], ["Qwik", "Remix", 73], ["Qwik", "Ruby on Rails", 34], ["Qwik", "Solid.js", 125], ["Qwik", "Spring Boot", 46], ["Qwik", "Svelte", 161], ["Qwik", "Symfony", 27], ["Qwik", "Vue.js", 108], ["Qwik", "WordPress", 44], ["Qwik", "jQuery", 28], ["React", "ASP.NET", 1537], ["React", "ASP.NET CORE", 3517], ["React", "Angular", 3287], ["React", "AngularJS", 1155], ["React", "Blazor", 1441], ["React", "CodeIgniter", 167], ["React", "Deno", 3093], ["React", "Django", 2982], ["React", "Drupal", 201], ["React", "Elm", 518], ["React", "Express", 6103], ["React", "FastAPI", 2532], ["React", "Fastify", 1155], ["React", "Flask", 2218], ["React", "Gatsby", 803], ["React", "Laravel", 1604], ["React", "Lit", 358], ["React", "NestJS", 2671], ["React", "Next.js", 10825], ["React", "Node.js", 13323], ["React", "Nuxt.js", 1734], ["React", "Phoenix", 1038], ["React", "Play Framework", 136], ["React", "Qwik", 1547], ["React", "React", 18534], ["React", "Remix", 1917], ["React", "Ruby on Rails", 1716], ["React", "Solid.js", 2615], ["React", "Spring Boot", 2672], ["React", "Svelte", 5696], ["React", "Symfony", 562], ["React", "Vue.js", 5139], ["React", "WordPress", 1527], ["React", "jQuery", 1792], ["Remix", "ASP.NET", 60], ["Remix", "ASP.NET CORE", 94], ["Remix", "Angular", 120], ["Remix", "AngularJS", 59], ["Remix", "Blazor", 53], ["Remix", "CodeIgniter", 25], ["Remix", "Deno", 248], ["Remix", "Django", 104], ["Remix", "Drupal", 30], ["Remix", "Elm", 42], ["Remix", "Express", 279], ["Remix", "FastAPI", 102], ["Remix", "Fastify", 119], ["Remix", "Flask", 78], ["Remix", "Gatsby", 68], ["Remix", "Laravel", 72], ["Remix", "Lit", 41], ["Remix", "NestJS", 135], ["Remix", "Next.js", 476], ["Remix", "Node.js", 539], ["Remix", "Nuxt.js", 102], ["Remix", "Phoenix", 74], ["Remix", "Play Framework", 25], ["Remix", "Qwik", 157], ["Remix", "React", 605], ["Remix", "Remix", 520], ["Remix", "Ruby on Rails", 96], ["Remix", "Solid.js", 209], ["Remix", "Spring Boot", 85], ["Remix", "Svelte", 271], ["Remix", "Symfony", 32], ["Remix", "Vue.js", 183], ["Remix", "WordPress", 76], ["Remix", "jQuery", 62], ["Ruby on Rails", "ASP.NET", 142], ["Ruby on Rails", "ASP.NET CORE", 250], ["Ruby on Rails", "Angular", 296], ["Ruby on Rails", "AngularJS", 135], ["Ruby on Rails", "Blazor", 134], ["Ruby on Rails", "CodeIgniter", 35], ["Ruby on Rails", "Deno", 301], ["Ruby on Rails", "Django", 371], ["Ruby on Rails", "Drupal", 54], ["Ruby on Rails", "Elm", 127], ["Ruby on Rails", "Express", 458], ["Ruby on Rails", "FastAPI", 265], ["Ruby on Rails", "Fastify", 115], ["Ruby on Rails", "Flask", 281], ["Ruby on Rails", "Gatsby", 105], ["Ruby on Rails", "Laravel", 214], ["Ruby on Rails", "Lit", 59], ["Ruby on Rails", "NestJS", 218], ["Ruby on Rails", "Next.js", 824], ["Ruby on Rails", "Node.js", 1101], ["Ruby on Rails", "Nuxt.js", 204], ["Ruby on Rails", "Phoenix", 538], ["Ruby on Rails", "Play Framework", 47], ["Ruby on Rails", "Qwik", 120], ["Ruby on Rails", "React", 1407], ["Ruby on Rails", "Remix", 187], ["Ruby on Rails", "Ruby on Rails", 2087], ["Ruby on Rails", "Solid.js", 169], ["Ruby on Rails", "Spring Boot", 234], ["Ruby on Rails", "Svelte", 537], ["Ruby on Rails", "Symfony", 76], ["Ruby on Rails", "Vue.js", 652], ["Ruby on Rails", "WordPress", 201], ["Ruby on Rails", "jQuery", 328], ["Solid.js", "ASP.NET", 54], ["Solid.js", "ASP.NET CORE", 91], ["Solid.js", "Angular", 111], ["Solid.js", "AngularJS", 42], ["Solid.js", "Blazor", 56], ["Solid.js", "CodeIgniter", 26], ["Solid.js", "Deno", 271], ["Solid.js", "Django", 85], ["Solid.js", "Drupal", 28], ["Solid.js", "Elm", 40], ["Solid.js", "Express", 204], ["Solid.js", "FastAPI", 92], ["Solid.js", "Fastify", 115], ["Solid.js", "Flask", 75], ["Solid.js", "Gatsby", 40], ["Solid.js", "Laravel", 68], ["Solid.js", "Lit", 53], ["Solid.js", "NestJS", 105], ["Solid.js", "Next.js", 386], ["Solid.js", "Node.js", 474], ["Solid.js", "Nuxt.js", 122], ["Solid.js", "Phoenix", 69], ["Solid.js", "Play Framework", 26], ["Solid.js", "Qwik", 222], ["Solid.js", "React", 414], ["Solid.js", "Remix", 135], ["Solid.js", "Ruby on Rails", 50], ["Solid.js", "Solid.js", 702], ["Solid.js", "Spring Boot", 69], ["Solid.js", "Svelte", 343], ["Solid.js", "Symfony", 33], ["Solid.js", "Vue.js", 202], ["Solid.js", "WordPress", 53], ["Solid.js", "jQuery", 56], ["Spring Boot", "ASP.NET", 349], ["Spring Boot", "ASP.NET CORE", 638], ["Spring Boot", "Angular", 1854], ["Spring Boot", "AngularJS", 405], ["Spring Boot", "Blazor", 267], ["Spring Boot", "CodeIgniter", 53], ["Spring Boot", "Deno", 462], ["Spring Boot", "Django", 734], ["Spring Boot", "Drupal", 58], ["Spring Boot", "Elm", 125], ["Spring Boot", "Express", 1049], ["Spring Boot", "FastAPI", 664], ["Spring Boot", "Fastify", 178], ["Spring Boot", "Flask", 643], ["Spring Boot", "Gatsby", 139], ["Spring Boot", "Laravel", 303], ["Spring Boot", "Lit", 79], ["Spring Boot", "NestJS", 551], ["Spring Boot", "Next.js", 1443], ["Spring Boot", "Node.js", 2669], ["Spring Boot", "Nuxt.js", 349], ["Spring Boot", "Phoenix", 206], ["Spring Boot", "Play Framework", 126], ["Spring Boot", "Qwik", 213], ["Spring Boot", "React", 3110], ["Spring Boot", "Remix", 225], ["Spring Boot", "Ruby on Rails", 317], ["Spring Boot", "Solid.js", 327], ["Spring Boot", "Spring Boot", 5106], ["Spring Boot", "Svelte", 919], ["Spring Boot", "Symfony", 127], ["Spring Boot", "Vue.js", 1471], ["Spring Boot", "WordPress", 350], ["Spring Boot", "jQuery", 647], ["Svelte", "ASP.NET", 168], ["Svelte", "ASP.NET CORE", 425], ["Svelte", "Angular", 450], ["Svelte", "AngularJS", 105], ["Svelte", "Blazor", 232], ["Svelte", "CodeIgniter", 38], ["Svelte", "Deno", 1007], ["Svelte", "Django", 396], ["Svelte", "Drupal", 40], ["Svelte", "Elm", 131], ["Svelte", "Express", 892], ["Svelte", "FastAPI", 491], ["Svelte", "Fastify", 301], ["Svelte", "Flask", 343], ["Svelte", "Gatsby", 100], ["Svelte", "Laravel", 295], ["Svelte", "Lit", 126], ["Svelte", "NestJS", 355], ["Svelte", "Next.js", 1282], ["Svelte", "Node.js", 2071], ["Svelte", "Nuxt.js", 410], ["Svelte", "Phoenix", 264], ["Svelte", "Play Framework", 33], ["Svelte", "Qwik", 494], ["Svelte", "React", 1366], ["Svelte", "Remix", 305], ["Svelte", "Ruby on Rails", 222], ["Svelte", "Solid.js", 708], ["Svelte", "Spring Boot", 236], ["Svelte", "Svelte", 3541], ["Svelte", "Symfony", 85], ["Svelte", "Vue.js", 926], ["Svelte", "WordPress", 187], ["Svelte", "jQuery", 195], ["Symfony", "ASP.NET", 114], ["Symfony", "ASP.NET CORE", 190], ["Symfony", "Angular", 332], ["Symfony", "AngularJS", 129], ["Symfony", "Blazor", 85], ["Symfony", "CodeIgniter", 63], ["Symfony", "Deno", 173], ["Symfony", "Django", 226], ["Symfony", "Drupal", 121], ["Symfony", "Elm", 44], ["Symfony", "Express", 343], ["Symfony", "FastAPI", 147], ["Symfony", "Fastify", 83], ["Symfony", "Flask", 184], ["Symfony", "Gatsby", 81], ["Symfony", "Laravel", 588], ["Symfony", "Lit", 44], ["Symfony", "NestJS", 201], ["Symfony", "Next.js", 480], ["Symfony", "Node.js", 847], ["Symfony", "Nuxt.js", 235], ["Symfony", "Phoenix", 87], ["Symfony", "Play Framework", 28], ["Symfony", "Qwik", 92], ["Symfony", "React", 789], ["Symfony", "Remix", 103], ["Symfony", "Ruby on Rails", 125], ["Symfony", "Solid.js", 114], ["Symfony", "Spring Boot", 196], ["Symfony", "Svelte", 308], ["Symfony", "Symfony", 1194], ["Symfony", "Vue.js", 699], ["Symfony", "WordPress", 257], ["Symfony", "jQuery", 374], ["Vue.js", "ASP.NET", 687], ["Vue.js", "ASP.NET CORE", 1575], ["Vue.js", "Angular", 1437], ["Vue.js", "AngularJS", 469], ["Vue.js", "Blazor", 699], ["Vue.js", "CodeIgniter", 135], ["Vue.js", "Deno", 1189], ["Vue.js", "Django", 1255], ["Vue.js", "Drupal", 126], ["Vue.js", "Elm", 177], ["Vue.js", "Express", 2074], ["Vue.js", "FastAPI", 1111], ["Vue.js", "Fastify", 475], ["Vue.js", "Flask", 946], ["Vue.js", "Gatsby", 236], ["Vue.js", "Laravel", 1651], ["Vue.js", "Lit", 171], ["Vue.js", "NestJS", 948], ["Vue.js", "Next.js", 2530], ["Vue.js", "Node.js", 4923], ["Vue.js", "Nuxt.js", 2178], ["Vue.js", "Phoenix", 378], ["Vue.js", "Play Framework", 72], ["Vue.js", "Qwik", 535], ["Vue.js", "React", 3821], ["Vue.js", "Remix", 447], ["Vue.js", "Ruby on Rails", 666], ["Vue.js", "Solid.js", 748], ["Vue.js", "Spring Boot", 1000], ["Vue.js", "Svelte", 2376], ["Vue.js", "Symfony", 536], ["Vue.js", "Vue.js", 6804], ["Vue.js", "WordPress", 814], ["Vue.js", "jQuery", 1015], ["WordPress", "ASP.NET", 771], ["WordPress", "ASP.NET CORE", 1179], ["WordPress", "Angular", 1457], ["WordPress", "AngularJS", 653], ["WordPress", "Blazor", 554], ["WordPress", "CodeIgniter", 224], ["WordPress", "Deno", 692], ["WordPress", "Django", 1238], ["WordPress", "Drupal", 240], ["WordPress", "Elm", 120], ["WordPress", "Express", 1597], ["WordPress", "FastAPI", 753], ["WordPress", "Fastify", 266], ["WordPress", "Flask", 922], ["WordPress", "Gatsby", 329], ["WordPress", "Laravel", 1460], ["WordPress", "Lit", 117], ["WordPress", "NestJS", 671], ["WordPress", "Next.js", 2330], ["WordPress", "Node.js", 3897], ["WordPress", "Nuxt.js", 759], ["WordPress", "Phoenix", 223], ["WordPress", "Play Framework", 80], ["WordPress", "Qwik", 352], ["WordPress", "React", 3645], ["WordPress", "Remix", 393], ["WordPress", "Ruby on Rails", 581], ["WordPress", "Solid.js", 458], ["WordPress", "Spring Boot", 720], ["WordPress", "Svelte", 1336], ["WordPress", "Symfony", 522], ["WordPress", "Vue.js", 2275], ["WordPress", "WordPress", 3123], ["WordPress", "jQuery", 1659], ["jQuery", "ASP.NET", 1768], ["jQuery", "ASP.NET CORE", 3166], ["jQuery", "Angular", 2736], ["jQuery", "AngularJS", 1237], ["jQuery", "Blazor", 1499], ["jQuery", "CodeIgniter", 284], ["jQuery", "Deno", 933], ["jQuery", "Django", 1918], ["jQuery", "Drupal", 284], ["jQuery", "Elm", 176], ["jQuery", "Express", 2446], ["jQuery", "FastAPI", 1124], ["jQuery", "Fastify", 339], ["jQuery", "Flask", 1405], ["jQuery", "Gatsby", 388], ["jQuery", "Laravel", 1921], ["jQuery", "Lit", 140], ["jQuery", "NestJS", 899], ["jQuery", "Next.js", 3246], ["jQuery", "Node.js", 6385], ["jQuery", "Nuxt.js", 1032], ["jQuery", "Phoenix", 331], ["jQuery", "Play Framework", 96], ["jQuery", "Qwik", 449], ["jQuery", "React", 6126], ["jQuery", "Remix", 490], ["jQuery", "Ruby on Rails", 1075], ["jQuery", "Solid.js", 655], ["jQuery", "Spring Boot", 1538], ["jQuery", "Svelte", 2031], ["jQuery", "Symfony", 814], ["jQuery", "Vue.js", 3944], ["jQuery", "WordPress", 1806], ["jQuery", "jQuery", 5192]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What miscellaneous framework do how many participants want to use and what are they using currently?", "labels": [{"query": "SELECT MiscTech1.name AS have_worked_with, MiscTech2.name AS want_to_work_with, COUNT(*) FROM Response_MiscTechHaveWorkedWith JOIN MiscTech AS MiscTech1 ON Response_MiscTechHaveWorkedWith.MiscTech_id = MiscTech1.id JOIN Response_MiscTechWantToWorkWith ON Response_MiscTechWantToWorkWith.Response_id = Response_MiscTechHaveWorkedWith.Response_id JOIN MiscTech AS MiscTech2 ON Response_MiscTechWantToWorkWith.MiscTech_id = MiscTech2.id GROUP BY MiscTech1.name, MiscTech2.name", "results": [[".NET (5+) ", ".NET (5+) ", 11942], [".NET (5+) ", ".NET Framework (1.0 - 4.8)", 2586], [".NET (5+) ", ".NET MAUI", 3245], [".NET (5+) ", "Apache Kafka", 1457], [".NET (5+) ", "Apache Spark", 554], [".NET (5+) ", "CUDA", 820], [".NET (5+) ", "Capacitor", 244], [".NET (5+) ", "Cordova", 150], [".NET (5+) ", "Electron", 1178], [".NET (5+) ", "Flutter", 1786], [".NET (5+) ", "GTK", 386], [".NET (5+) ", "Hadoop", 310], [".NET (5+) ", "Hugging Face Transformers", 532], [".NET (5+) ", "Ionic", 335], [".NET (5+) ", "JAX", 98], [".NET (5+) ", "Keras", 456], [".NET (5+) ", "Ktor", 171], [".NET (5+) ", "MFC", 137], [".NET (5+) ", "Micronaut", 96], [".NET (5+) ", "NumPy", 1552], [".NET (5+) ", "OpenGL", 1335], [".NET (5+) ", "Opencv", 1002], [".NET (5+) ", "Pandas", 1356], [".NET (5+) ", "Qt", 711], [".NET (5+) ", "Quarkus", 165], [".NET (5+) ", "RabbitMQ", 2224], [".NET (5+) ", "React Native", 1498], [".NET (5+) ", "Scikit-Learn", 717], [".NET (5+) ", "Spring Framework", 692], [".NET (5+) ", "SwiftUI", 746], [".NET (5+) ", "Tauri", 745], [".NET (5+) ", "TensorFlow", 1907], [".NET (5+) ", "Tidyverse", 79], [".NET (5+) ", "Torch/PyTorch", 1411], [".NET (5+) ", "Uno Platform", 418], [".NET (5+) ", "Xamarin", 931], [".NET Framework (1.0 - 4.8)", ".NET (5+) ", 7566], [".NET Framework (1.0 - 4.8)", ".NET Framework (1.0 - 4.8)", 3591], [".NET Framework (1.0 - 4.8)", ".NET MAUI", 2307], [".NET Framework (1.0 - 4.8)", "Apache Kafka", 861], [".NET Framework (1.0 - 4.8)", "Apache Spark", 346], [".NET Framework (1.0 - 4.8)", "CUDA", 527], [".NET Framework (1.0 - 4.8)", "Capacitor", 165], [".NET Framework (1.0 - 4.8)", "Cordova", 129], [".NET Framework (1.0 - 4.8)", "Electron", 786], [".NET Framework (1.0 - 4.8)", "Flutter", 1110], [".NET Framework (1.0 - 4.8)", "GTK", 238], [".NET Framework (1.0 - 4.8)", "Hadoop", 249], [".NET Framework (1.0 - 4.8)", "Hugging Face Transformers", 310], [".NET Framework (1.0 - 4.8)", "Ionic", 242], [".NET Framework (1.0 - 4.8)", "JAX", 72], [".NET Framework (1.0 - 4.8)", "Keras", 258], [".NET Framework (1.0 - 4.8)", "Ktor", 90], [".NET Framework (1.0 - 4.8)", "MFC", 132], [".NET Framework (1.0 - 4.8)", "Micronaut", 64], [".NET Framework (1.0 - 4.8)", "NumPy", 935], [".NET Framework (1.0 - 4.8)", "OpenGL", 833], [".NET Framework (1.0 - 4.8)", "Opencv", 665], [".NET Framework (1.0 - 4.8)", "Pandas", 832], [".NET Framework (1.0 - 4.8)", "Qt", 495], [".NET Framework (1.0 - 4.8)", "Quarkus", 100], [".NET Framework (1.0 - 4.8)", "RabbitMQ", 1475], [".NET Framework (1.0 - 4.8)", "React Native", 989], [".NET Framework (1.0 - 4.8)", "Scikit-Learn", 403], [".NET Framework (1.0 - 4.8)", "Spring Framework", 506], [".NET Framework (1.0 - 4.8)", "SwiftUI", 486], [".NET Framework (1.0 - 4.8)", "Tauri", 366], [".NET Framework (1.0 - 4.8)", "TensorFlow", 1200], [".NET Framework (1.0 - 4.8)", "Tidyverse", 62], [".NET Framework (1.0 - 4.8)", "Torch/PyTorch", 814], [".NET Framework (1.0 - 4.8)", "Uno Platform", 275], [".NET Framework (1.0 - 4.8)", "Xamarin", 774], [".NET MAUI", ".NET (5+) ", 1107], [".NET MAUI", ".NET Framework (1.0 - 4.8)", 362], [".NET MAUI", ".NET MAUI", 927], [".NET MAUI", "Apache Kafka", 126], [".NET MAUI", "Apache Spark", 72], [".NET MAUI", "CUDA", 114], [".NET MAUI", "Capacitor", 43], [".NET MAUI", "Cordova", 37], [".NET MAUI", "Electron", 124], [".NET MAUI", "Flutter", 223], [".NET MAUI", "GTK", 65], [".NET MAUI", "Hadoop", 43], [".NET MAUI", "Hugging Face Transformers", 64], [".NET MAUI", "Ionic", 48], [".NET MAUI", "JAX", 29], [".NET MAUI", "Keras", 53], [".NET MAUI", "Ktor", 36], [".NET MAUI", "MFC", 35], [".NET MAUI", "Micronaut", 21], [".NET MAUI", "NumPy", 141], [".NET MAUI", "OpenGL", 165], [".NET MAUI", "Opencv", 121], [".NET MAUI", "Pandas", 129], [".NET MAUI", "Qt", 95], [".NET MAUI", "Quarkus", 26], [".NET MAUI", "RabbitMQ", 218], [".NET MAUI", "React Native", 158], [".NET MAUI", "Scikit-Learn", 81], [".NET MAUI", "Spring Framework", 83], [".NET MAUI", "SwiftUI", 125], [".NET MAUI", "Tauri", 94], [".NET MAUI", "TensorFlow", 200], [".NET MAUI", "Tidyverse", 22], [".NET MAUI", "Torch/PyTorch", 131], [".NET MAUI", "Uno Platform", 132], [".NET MAUI", "Xamarin", 201], ["Apache Kafka", ".NET (5+) ", 784], ["Apache Kafka", ".NET Framework (1.0 - 4.8)", 177], ["Apache Kafka", ".NET MAUI", 209], ["Apache Kafka", "Apache Kafka", 3797], ["Apache Kafka", "Apache Spark", 1086], ["Apache Kafka", "CUDA", 361], ["Apache Kafka", "Capacitor", 66], ["Apache Kafka", "Cordova", 57], ["Apache Kafka", "Electron", 330], ["Apache Kafka", "Flutter", 626], ["Apache Kafka", "GTK", 109], ["Apache Kafka", "Hadoop", 450], ["Apache Kafka", "Hugging Face Transformers", 392], ["Apache Kafka", "Ionic", 96], ["Apache Kafka", "JAX", 92], ["Apache Kafka", "Keras", 340], ["Apache Kafka", "Ktor", 186], ["Apache Kafka", "MFC", 34], ["Apache Kafka", "Micronaut", 262], ["Apache Kafka", "NumPy", 930], ["Apache Kafka", "OpenGL", 328], ["Apache Kafka", "Opencv", 433], ["Apache Kafka", "Pandas", 983], ["Apache Kafka", "Qt", 186], ["Apache Kafka", "Quarkus", 421], ["Apache Kafka", "RabbitMQ", 1061], ["Apache Kafka", "React Native", 520], ["Apache Kafka", "Scikit-Learn", 543], ["Apache Kafka", "Spring Framework", 1289], ["Apache Kafka", "SwiftUI", 251], ["Apache Kafka", "Tauri", 268], ["Apache Kafka", "TensorFlow", 917], ["Apache Kafka", "Tidyverse", 63], ["Apache Kafka", "Torch/PyTorch", 820], ["Apache Kafka", "Uno Platform", 55], ["Apache Kafka", "Xamarin", 79], ["Apache Spark", ".NET (5+) ", 309], ["Apache Spark", ".NET Framework (1.0 - 4.8)", 101], ["Apache Spark", ".NET MAUI", 82], ["Apache Spark", "Apache Kafka", 1106], ["Apache Spark", "Apache Spark", 1513], ["Apache Spark", "CUDA", 286], ["Apache Spark", "Capacitor", 40], ["Apache Spark", "Cordova", 41], ["Apache Spark", "Electron", 135], ["Apache Spark", "Flutter", 254], ["Apache Spark", "GTK", 63], ["Apache Spark", "Hadoop", 442], ["Apache Spark", "Hugging Face Transformers", 369], ["Apache Spark", "Ionic", 40], ["Apache Spark", "JAX", 95], ["Apache Spark", "Keras", 381], ["Apache Spark", "Ktor", 51], ["Apache Spark", "MFC", 29], ["Apache Spark", "Micronaut", 71], ["Apache Spark", "NumPy", 918], ["Apache Spark", "OpenGL", 191], ["Apache Spark", "Opencv", 351], ["Apache Spark", "Pandas", 1023], ["Apache Spark", "Qt", 120], ["Apache Spark", "Quarkus", 111], ["Apache Spark", "RabbitMQ", 354], ["Apache Spark", "React Native", 216], ["Apache Spark", "Scikit-Learn", 693], ["Apache Spark", "Spring Framework", 379], ["Apache Spark", "SwiftUI", 137], ["Apache Spark", "Tauri", 107], ["Apache Spark", "TensorFlow", 723], ["Apache Spark", "Tidyverse", 110], ["Apache Spark", "Torch/PyTorch", 781], ["Apache Spark", "Uno Platform", 35], ["Apache Spark", "Xamarin", 63], ["CUDA", ".NET (5+) ", 402], ["CUDA", ".NET Framework (1.0 - 4.8)", 138], ["CUDA", ".NET MAUI", 121], ["CUDA", "Apache Kafka", 322], ["CUDA", "Apache Spark", 260], ["CUDA", "CUDA", 1819], ["CUDA", "Capacitor", 40], ["CUDA", "Cordova", 44], ["CUDA", "Electron", 229], ["CUDA", "Flutter", 305], ["CUDA", "GTK", 157], ["CUDA", "Hadoop", 168], ["CUDA", "Hugging Face Transformers", 618], ["CUDA", "Ionic", 52], ["CUDA", "JAX", 240], ["CUDA", "Keras", 567], ["CUDA", "Ktor", 34], ["CUDA", "MFC", 35], ["CUDA", "Micronaut", 27], ["CUDA", "NumPy", 1483], ["CUDA", "OpenGL", 569], ["CUDA", "Opencv", 945], ["CUDA", "Pandas", 1143], ["CUDA", "Qt", 372], ["CUDA", "Quarkus", 49], ["CUDA", "RabbitMQ", 269], ["CUDA", "React Native", 233], ["CUDA", "Scikit-Learn", 922], ["CUDA", "Spring Framework", 144], ["CUDA", "SwiftUI", 132], ["CUDA", "Tauri", 202], ["CUDA", "TensorFlow", 1030], ["CUDA", "Tidyverse", 94], ["CUDA", "Torch/PyTorch", 1413], ["CUDA", "Uno Platform", 35], ["CUDA", "Xamarin", 65], ["Capacitor", ".NET (5+) ", 214], ["Capacitor", ".NET Framework (1.0 - 4.8)", 66], ["Capacitor", ".NET MAUI", 89], ["Capacitor", "Apache Kafka", 105], ["Capacitor", "Apache Spark", 60], ["Capacitor", "CUDA", 53], ["Capacitor", "Capacitor", 591], ["Capacitor", "Cordova", 126], ["Capacitor", "Electron", 261], ["Capacitor", "Flutter", 281], ["Capacitor", "GTK", 43], ["Capacitor", "Hadoop", 35], ["Capacitor", "Hugging Face Transformers", 62], ["Capacitor", "Ionic", 406], ["Capacitor", "JAX", 23], ["Capacitor", "Keras", 63], ["Capacitor", "Ktor", 42], ["Capacitor", "MFC", 21], ["Capacitor", "Micronaut", 24], ["Capacitor", "NumPy", 143], ["Capacitor", "OpenGL", 104], ["Capacitor", "Opencv", 101], ["Capacitor", "Pandas", 134], ["Capacitor", "Qt", 55], ["Capacitor", "Quarkus", 40], ["Capacitor", "RabbitMQ", 163], ["Capacitor", "React Native", 197], ["Capacitor", "Scikit-Learn", 76], ["Capacitor", "Spring Framework", 97], ["Capacitor", "SwiftUI", 117], ["Capacitor", "Tauri", 175], ["Capacitor", "TensorFlow", 205], ["Capacitor", "Tidyverse", 21], ["Capacitor", "Torch/PyTorch", 133], ["Capacitor", "Uno Platform", 30], ["Capacitor", "Xamarin", 45], ["Cordova", ".NET (5+) ", 318], ["Cordova", ".NET Framework (1.0 - 4.8)", 130], ["Cordova", ".NET MAUI", 135], ["Cordova", "Apache Kafka", 207], ["Cordova", "Apache Spark", 108], ["Cordova", "CUDA", 79], ["Cordova", "Capacitor", 320], ["Cordova", "Cordova", 340], ["Cordova", "Electron", 322], ["Cordova", "Flutter", 420], ["Cordova", "GTK", 62], ["Cordova", "Hadoop", 76], ["Cordova", "Hugging Face Transformers", 89], ["Cordova", "Ionic", 349], ["Cordova", "JAX", 33], ["Cordova", "Keras", 93], ["Cordova", "Ktor", 42], ["Cordova", "MFC", 33], ["Cordova", "Micronaut", 35], ["Cordova", "NumPy", 217], ["Cordova", "OpenGL", 160], ["Cordova", "Opencv", 163], ["Cordova", "Pandas", 211], ["Cordova", "Qt", 92], ["Cordova", "Quarkus", 56], ["Cordova", "RabbitMQ", 250], ["Cordova", "React Native", 348], ["Cordova", "Scikit-Learn", 117], ["Cordova", "Spring Framework", 174], ["Cordova", "SwiftUI", 167], ["Cordova", "Tauri", 146], ["Cordova", "TensorFlow", 320], ["Cordova", "Tidyverse", 21], ["Cordova", "Torch/PyTorch", 205], ["Cordova", "Uno Platform", 39], ["Cordova", "Xamarin", 78], ["Electron", ".NET (5+) ", 908], ["Electron", ".NET Framework (1.0 - 4.8)", 230], ["Electron", ".NET MAUI", 279], ["Electron", "Apache Kafka", 452], ["Electron", "Apache Spark", 189], ["Electron", "CUDA", 334], ["Electron", "Capacitor", 244], ["Electron", "Cordova", 146], ["Electron", "Electron", 1864], ["Electron", "Flutter", 971], ["Electron", "GTK", 273], ["Electron", "Hadoop", 117], ["Electron", "Hugging Face Transformers", 299], ["Electron", "Ionic", 267], ["Electron", "JAX", 68], ["Electron", "Keras", 238], ["Electron", "Ktor", 85], ["Electron", "MFC", 35], ["Electron", "Micronaut", 60], ["Electron", "NumPy", 768], ["Electron", "OpenGL", 646], ["Electron", "Opencv", 538], ["Electron", "Pandas", 638], ["Electron", "Qt", 369], ["Electron", "Quarkus", 80], ["Electron", "RabbitMQ", 558], ["Electron", "React Native", 902], ["Electron", "Scikit-Learn", 344], ["Electron", "Spring Framework", 303], ["Electron", "SwiftUI", 380], ["Electron", "Tauri", 921], ["Electron", "TensorFlow", 962], ["Electron", "Tidyverse", 44], ["Electron", "Torch/PyTorch", 724], ["Electron", "Uno Platform", 71], ["Electron", "Xamarin", 128], ["Flutter", ".NET (5+) ", 966], ["Flutter", ".NET Framework (1.0 - 4.8)", 254], ["Flutter", ".NET MAUI", 339], ["Flutter", "Apache Kafka", 652], ["Flutter", "Apache Spark", 288], ["Flutter", "CUDA", 360], ["Flutter", "Capacitor", 158], ["Flutter", "Cordova", 94], ["Flutter", "Electron", 589], ["Flutter", "Flutter", 3951], ["Flutter", "GTK", 229], ["Flutter", "Hadoop", 161], ["Flutter", "Hugging Face Transformers", 348], ["Flutter", "Ionic", 204], ["Flutter", "JAX", 86], ["Flutter", "Keras", 376], ["Flutter", "Ktor", 206], ["Flutter", "MFC", 32], ["Flutter", "Micronaut", 87], ["Flutter", "NumPy", 1060], ["Flutter", "OpenGL", 587], ["Flutter", "Opencv", 735], ["Flutter", "Pandas", 951], ["Flutter", "Qt", 348], ["Flutter", "Quarkus", 135], ["Flutter", "RabbitMQ", 695], ["Flutter", "React Native", 873], ["Flutter", "Scikit-Learn", 529], ["Flutter", "Spring Framework", 512], ["Flutter", "SwiftUI", 754], ["Flutter", "Tauri", 603], ["Flutter", "TensorFlow", 1281], ["Flutter", "Tidyverse", 54], ["Flutter", "Torch/PyTorch", 941], ["Flutter", "Uno Platform", 74], ["Flutter", "Xamarin", 146], ["GTK", ".NET (5+) ", 246], ["GTK", ".NET Framework (1.0 - 4.8)", 87], ["GTK", ".NET MAUI", 80], ["GTK", "Apache Kafka", 141], ["GTK", "Apache Spark", 89], ["GTK", "CUDA", 217], ["GTK", "Capacitor", 39], ["GTK", "Cordova", 35], ["GTK", "Electron", 165], ["GTK", "Flutter", 235], ["GTK", "GTK", 778], ["GTK", "Hadoop", 50], ["GTK", "Hugging Face Transformers", 102], ["GTK", "Ionic", 38], ["GTK", "JAX", 39], ["GTK", "Keras", 96], ["GTK", "Ktor", 43], ["GTK", "MFC", 32], ["GTK", "Micronaut", 24], ["GTK", "NumPy", 353], ["GTK", "OpenGL", 405], ["GTK", "Opencv", 261], ["GTK", "Pandas", 229], ["GTK", "Qt", 401], ["GTK", "Quarkus", 39], ["GTK", "RabbitMQ", 134], ["GTK", "React Native", 127], ["GTK", "Scikit-Learn", 145], ["GTK", "Spring Framework", 95], ["GTK", "SwiftUI", 98], ["GTK", "Tauri", 220], ["GTK", "TensorFlow", 259], ["GTK", "Tidyverse", 38], ["GTK", "Torch/PyTorch", 254], ["GTK", "Uno Platform", 41], ["GTK", "Xamarin", 50], ["Hadoop", ".NET (5+) ", 194], ["Hadoop", ".NET Framework (1.0 - 4.8)", 75], ["Hadoop", ".NET MAUI", 61], ["Hadoop", "Apache Kafka", 588], ["Hadoop", "Apache Spark", 621], ["Hadoop", "CUDA", 198], ["Hadoop", "Capacitor", 32], ["Hadoop", "Cordova", 40], ["Hadoop", "Electron", 86], ["Hadoop", "Flutter", 174], ["Hadoop", "GTK", 52], ["Hadoop", "Hadoop", 552], ["Hadoop", "Hugging Face Transformers", 176], ["Hadoop", "Ionic", 53], ["Hadoop", "JAX", 52], ["Hadoop", "Keras", 231], ["Hadoop", "Ktor", 41], ["Hadoop", "MFC", 29], ["Hadoop", "Micronaut", 52], ["Hadoop", "NumPy", 540], ["Hadoop", "OpenGL", 136], ["Hadoop", "Opencv", 237], ["Hadoop", "Pandas", 569], ["Hadoop", "Qt", 96], ["Hadoop", "Quarkus", 68], ["Hadoop", "RabbitMQ", 228], ["Hadoop", "React Native", 168], ["Hadoop", "Scikit-Learn", 390], ["Hadoop", "Spring Framework", 262], ["Hadoop", "SwiftUI", 94], ["Hadoop", "Tauri", 66], ["Hadoop", "TensorFlow", 435], ["Hadoop", "Tidyverse", 65], ["Hadoop", "Torch/PyTorch", 410], ["Hadoop", "Uno Platform", 27], ["Hadoop", "Xamarin", 44], ["Hugging Face Transformers", ".NET (5+) ", 207], ["Hugging Face Transformers", ".NET Framework (1.0 - 4.8)", 75], ["Hugging Face Transformers", ".NET MAUI", 64], ["Hugging Face Transformers", "Apache Kafka", 294], ["Hugging Face Transformers", "Apache Spark", 280], ["Hugging Face Transformers", "CUDA", 594], ["Hugging Face Transformers", "Capacitor", 42], ["Hugging Face Transformers", "Cordova", 31], ["Hugging Face Transformers", "Electron", 168], ["Hugging Face Transformers", "Flutter", 234], ["Hugging Face Transformers", "GTK", 67], ["Hugging Face Transformers", "Hadoop", 122], ["Hugging Face Transformers", "Hugging Face Transformers", 1347], ["Hugging Face Transformers", "Ionic", 47], ["Hugging Face Transformers", "JAX", 217], ["Hugging Face Transformers", "Keras", 433], ["Hugging Face Transformers", "Ktor", 35], ["Hugging Face Transformers", "MFC", 25], ["Hugging Face Transformers", "Micronaut", 30], ["Hugging Face Transformers", "NumPy", 1031], ["Hugging Face Transformers", "OpenGL", 222], ["Hugging Face Transformers", "Opencv", 502], ["Hugging Face Transformers", "Pandas", 911], ["Hugging Face Transformers", "Qt", 131], ["Hugging Face Transformers", "Quarkus", 44], ["Hugging Face Transformers", "RabbitMQ", 181], ["Hugging Face Transformers", "React Native", 197], ["Hugging Face Transformers", "Scikit-Learn", 751], ["Hugging Face Transformers", "Spring Framework", 112], ["Hugging Face Transformers", "SwiftUI", 104], ["Hugging Face Transformers", "Tauri", 168], ["Hugging Face Transformers", "TensorFlow", 664], ["Hugging Face Transformers", "Tidyverse", 84], ["Hugging Face Transformers", "Torch/PyTorch", 1146], ["Hugging Face Transformers", "Uno Platform", 33], ["Hugging Face Transformers", "Xamarin", 39], ["Ionic", ".NET (5+) ", 377], ["Ionic", ".NET Framework (1.0 - 4.8)", 119], ["Ionic", ".NET MAUI", 158], ["Ionic", "Apache Kafka", 223], ["Ionic", "Apache Spark", 101], ["Ionic", "CUDA", 73], ["Ionic", "Capacitor", 449], ["Ionic", "Cordova", 179], ["Ionic", "Electron", 367], ["Ionic", "Flutter", 525], ["Ionic", "GTK", 55], ["Ionic", "Hadoop", 72], ["Ionic", "Hugging Face Transformers", 94], ["Ionic", "Ionic", 752], ["Ionic", "JAX", 30], ["Ionic", "Keras", 93], ["Ionic", "Ktor", 46], ["Ionic", "MFC", 25], ["Ionic", "Micronaut", 41], ["Ionic", "NumPy", 245], ["Ionic", "OpenGL", 164], ["Ionic", "Opencv", 164], ["Ionic", "Pandas", 246], ["Ionic", "Qt", 79], ["Ionic", "Quarkus", 62], ["Ionic", "RabbitMQ", 279], ["Ionic", "React Native", 424], ["Ionic", "Scikit-Learn", 132], ["Ionic", "Spring Framework", 230], ["Ionic", "SwiftUI", 201], ["Ionic", "Tauri", 205], ["Ionic", "TensorFlow", 387], ["Ionic", "Tidyverse", 29], ["Ionic", "Torch/PyTorch", 241], ["Ionic", "Uno Platform", 38], ["Ionic", "Xamarin", 91], ["JAX", ".NET (5+) ", 71], ["JAX", ".NET Framework (1.0 - 4.8)", 33], ["JAX", ".NET MAUI", 29], ["JAX", "Apache Kafka", 137], ["JAX", "Apache Spark", 89], ["JAX", "CUDA", 143], ["JAX", "Capacitor", 23], ["JAX", "Cordova", 28], ["JAX", "Electron", 52], ["JAX", "Flutter", 88], ["JAX", "GTK", 32], ["JAX", "Hadoop", 48], ["JAX", "Hugging Face Transformers", 125], ["JAX", "Ionic", 34], ["JAX", "JAX", 316], ["JAX", "Keras", 85], ["JAX", "Ktor", 42], ["JAX", "MFC", 24], ["JAX", "Micronaut", 44], ["JAX", "NumPy", 207], ["JAX", "OpenGL", 65], ["JAX", "Opencv", 101], ["JAX", "Pandas", 162], ["JAX", "Qt", 45], ["JAX", "Quarkus", 87], ["JAX", "RabbitMQ", 94], ["JAX", "React Native", 73], ["JAX", "Scikit-Learn", 151], ["JAX", "Spring Framework", 162], ["JAX", "SwiftUI", 44], ["JAX", "Tauri", 44], ["JAX", "TensorFlow", 130], ["JAX", "Tidyverse", 32], ["JAX", "Torch/PyTorch", 198], ["JAX", "Uno Platform", 23], ["JAX", "Xamarin", 25], ["Keras", ".NET (5+) ", 311], ["Keras", ".NET Framework (1.0 - 4.8)", 99], ["Keras", ".NET MAUI", 94], ["Keras", "Apache Kafka", 430], ["Keras", "Apache Spark", 442], ["Keras", "CUDA", 813], ["Keras", "Capacitor", 61], ["Keras", "Cordova", 45], ["Keras", "Electron", 241], ["Keras", "Flutter", 426], ["Keras", "GTK", 104], ["Keras", "Hadoop", 266], ["Keras", "Hugging Face Transformers", 752], ["Keras", "Ionic", 79], ["Keras", "JAX", 269], ["Keras", "Keras", 1728], ["Keras", "Ktor", 49], ["Keras", "MFC", 28], ["Keras", "Micronaut", 37], ["Keras", "NumPy", 1834], ["Keras", "OpenGL", 409], ["Keras", "Opencv", 999], ["Keras", "Pandas", 1621], ["Keras", "Qt", 242], ["Keras", "Quarkus", 53], ["Keras", "RabbitMQ", 283], ["Keras", "React Native", 334], ["Keras", "Scikit-Learn", 1402], ["Keras", "Spring Framework", 208], ["Keras", "SwiftUI", 167], ["Keras", "Tauri", 175], ["Keras", "TensorFlow", 1632], ["Keras", "Tidyverse", 156], ["Keras", "Torch/PyTorch", 1557], ["Keras", "Uno Platform", 29], ["Keras", "Xamarin", 58], ["Ktor", ".NET (5+) ", 87], ["Ktor", ".NET Framework (1.0 - 4.8)", 26], ["Ktor", ".NET MAUI", 35], ["Ktor", "Apache Kafka", 146], ["Ktor", "Apache Spark", 57], ["Ktor", "CUDA", 46], ["Ktor", "Capacitor", 23], ["Ktor", "Cordova", 22], ["Ktor", "Electron", 39], ["Ktor", "Flutter", 127], ["Ktor", "GTK", 47], ["Ktor", "Hadoop", 30], ["Ktor", "Hugging Face Transformers", 51], ["Ktor", "Ionic", 26], ["Ktor", "JAX", 30], ["Ktor", "Keras", 46], ["Ktor", "Ktor", 479], ["Ktor", "MFC", 18], ["Ktor", "Micronaut", 62], ["Ktor", "NumPy", 85], ["Ktor", "OpenGL", 68], ["Ktor", "Opencv", 52], ["Ktor", "Pandas", 71], ["Ktor", "Qt", 46], ["Ktor", "Quarkus", 68], ["Ktor", "RabbitMQ", 90], ["Ktor", "React Native", 52], ["Ktor", "Scikit-Learn", 48], ["Ktor", "Spring Framework", 145], ["Ktor", "SwiftUI", 109], ["Ktor", "Tauri", 73], ["Ktor", "TensorFlow", 98], ["Ktor", "Tidyverse", 18], ["Ktor", "Torch/PyTorch", 73], ["Ktor", "Uno Platform", 24], ["Ktor", "Xamarin", 23], ["MFC", ".NET (5+) ", 286], ["MFC", ".NET Framework (1.0 - 4.8)", 159], ["MFC", ".NET MAUI", 113], ["MFC", "Apache Kafka", 61], ["MFC", "Apache Spark", 47], ["MFC", "CUDA", 81], ["MFC", "Capacitor", 24], ["MFC", "Cordova", 31], ["MFC", "Electron", 64], ["MFC", "Flutter", 75], ["MFC", "GTK", 50], ["MFC", "Hadoop", 38], ["MFC", "Hugging Face Transformers", 38], ["MFC", "Ionic", 27], ["MFC", "JAX", 27], ["MFC", "Keras", 31], ["MFC", "Ktor", 22], ["MFC", "MFC", 189], ["MFC", "Micronaut", 23], ["MFC", "NumPy", 89], ["MFC", "OpenGL", 123], ["MFC", "Opencv", 92], ["MFC", "Pandas", 64], ["MFC", "Qt", 124], ["MFC", "Quarkus", 26], ["MFC", "RabbitMQ", 84], ["MFC", "React Native", 52], ["MFC", "Scikit-Learn", 43], ["MFC", "Spring Framework", 52], ["MFC", "SwiftUI", 56], ["MFC", "Tauri", 37], ["MFC", "TensorFlow", 98], ["MFC", "Tidyverse", 20], ["MFC", "Torch/PyTorch", 80], ["MFC", "Uno Platform", 34], ["MFC", "Xamarin", 60], ["Micronaut", ".NET (5+) ", 64], ["Micronaut", ".NET Framework (1.0 - 4.8)", 30], ["Micronaut", ".NET MAUI", 27], ["Micronaut", "Apache Kafka", 128], ["Micronaut", "Apache Spark", 60], ["Micronaut", "CUDA", 31], ["Micronaut", "Capacitor", 20], ["Micronaut", "Cordova", 23], ["Micronaut", "Electron", 41], ["Micronaut", "Flutter", 67], ["Micronaut", "GTK", 22], ["Micronaut", "Hadoop", 37], ["Micronaut", "Hugging Face Transformers", 33], ["Micronaut", "Ionic", 28], ["Micronaut", "JAX", 30], ["Micronaut", "Keras", 28], ["Micronaut", "Ktor", 57], ["Micronaut", "MFC", 19], ["Micronaut", "Micronaut", 231], ["Micronaut", "NumPy", 54], ["Micronaut", "OpenGL", 36], ["Micronaut", "Opencv", 38], ["Micronaut", "Pandas", 61], ["Micronaut", "Qt", 26], ["Micronaut", "Quarkus", 93], ["Micronaut", "RabbitMQ", 80], ["Micronaut", "React Native", 42], ["Micronaut", "Scikit-Learn", 34], ["Micronaut", "Spring Framework", 160], ["Micronaut", "SwiftUI", 33], ["Micronaut", "Tauri", 45], ["Micronaut", "TensorFlow", 59], ["Micronaut", "Tidyverse", 19], ["Micronaut", "Torch/PyTorch", 49], ["Micronaut", "Uno Platform", 20], ["Micronaut", "Xamarin", 23], ["NumPy", ".NET (5+) ", 1457], ["NumPy", ".NET Framework (1.0 - 4.8)", 418], ["NumPy", ".NET MAUI", 361], ["NumPy", "Apache Kafka", 1678], ["NumPy", "Apache Spark", 1462], ["NumPy", "CUDA", 2331], ["NumPy", "Capacitor", 152], ["NumPy", "Cordova", 108], ["NumPy", "Electron", 981], ["NumPy", "Flutter", 1723], ["NumPy", "GTK", 480], ["NumPy", "Hadoop", 773], ["NumPy", "Hugging Face Transformers", 1923], ["NumPy", "Ionic", 204], ["NumPy", "JAX", 595], ["NumPy", "Keras", 2201], ["NumPy", "Ktor", 141], ["NumPy", "MFC", 57], ["NumPy", "Micronaut", 96], ["NumPy", "NumPy", 9034], ["NumPy", "OpenGL", 1584], ["NumPy", "Opencv", 3082], ["NumPy", "Pandas", 6684], ["NumPy", "Qt", 1177], ["NumPy", "Quarkus", 154], ["NumPy", "RabbitMQ", 1254], ["NumPy", "React Native", 1264], ["NumPy", "Scikit-Learn", 4248], ["NumPy", "Spring Framework", 801], ["NumPy", "SwiftUI", 681], ["NumPy", "Tauri", 838], ["NumPy", "TensorFlow", 4570], ["NumPy", "Tidyverse", 441], ["NumPy", "Torch/PyTorch", 5226], ["NumPy", "Uno Platform", 82], ["NumPy", "Xamarin", 200], ["OpenGL", ".NET (5+) ", 872], ["OpenGL", ".NET Framework (1.0 - 4.8)", 315], ["OpenGL", ".NET MAUI", 231], ["OpenGL", "Apache Kafka", 337], ["OpenGL", "Apache Spark", 202], ["OpenGL", "CUDA", 798], ["OpenGL", "Capacitor", 81], ["OpenGL", "Cordova", 85], ["OpenGL", "Electron", 448], ["OpenGL", "Flutter", 585], ["OpenGL", "GTK", 372], ["OpenGL", "Hadoop", 138], ["OpenGL", "Hugging Face Transformers", 275], ["OpenGL", "Ionic", 113], ["OpenGL", "JAX", 86], ["OpenGL", "Keras", 345], ["OpenGL", "Ktor", 86], ["OpenGL", "MFC", 72], ["OpenGL", "Micronaut", 51], ["OpenGL", "NumPy", 1086], ["OpenGL", "OpenGL", 2554], ["OpenGL", "Opencv", 916], ["OpenGL", "Pandas", 758], ["OpenGL", "Qt", 651], ["OpenGL", "Quarkus", 64], ["OpenGL", "RabbitMQ", 323], ["OpenGL", "React Native", 500], ["OpenGL", "Scikit-Learn", 479], ["OpenGL", "Spring Framework", 252], ["OpenGL", "SwiftUI", 323], ["OpenGL", "Tauri", 359], ["OpenGL", "TensorFlow", 1021], ["OpenGL", "Tidyverse", 54], ["OpenGL", "Torch/PyTorch", 914], ["OpenGL", "Uno Platform", 64], ["OpenGL", "Xamarin", 132], ["Opencv", ".NET (5+) ", 765], ["Opencv", ".NET Framework (1.0 - 4.8)", 266], ["Opencv", ".NET MAUI", 232], ["Opencv", "Apache Kafka", 650], ["Opencv", "Apache Spark", 469], ["Opencv", "CUDA", 1237], ["Opencv", "Capacitor", 103], ["Opencv", "Cordova", 84], ["Opencv", "Electron", 563], ["Opencv", "Flutter", 931], ["Opencv", "GTK", 275], ["Opencv", "Hadoop", 315], ["Opencv", "Hugging Face Transformers", 813], ["Opencv", "Ionic", 139], ["Opencv", "JAX", 248], ["Opencv", "Keras", 1025], ["Opencv", "Ktor", 77], ["Opencv", "MFC", 57], ["Opencv", "Micronaut", 51], ["Opencv", "NumPy", 2780], ["Opencv", "OpenGL", 1021], ["Opencv", "Opencv", 3200], ["Opencv", "Pandas", 2150], ["Opencv", "Qt", 721], ["Opencv", "Quarkus", 86], ["Opencv", "RabbitMQ", 563], ["Opencv", "React Native", 671], ["Opencv", "Scikit-Learn", 1587], ["Opencv", "Spring Framework", 364], ["Opencv", "SwiftUI", 342], ["Opencv", "Tauri", 371], ["Opencv", "TensorFlow", 2055], ["Opencv", "Tidyverse", 116], ["Opencv", "Torch/PyTorch", 2216], ["Opencv", "Uno Platform", 67], ["Opencv", "Xamarin", 127], ["Pandas", ".NET (5+) ", 1286], ["Pandas", ".NET Framework (1.0 - 4.8)", 378], ["Pandas", ".NET MAUI", 311], ["Pandas", "Apache Kafka", 1887], ["Pandas", "Apache Spark", 1700], ["Pandas", "CUDA", 1896], ["Pandas", "Capacitor", 145], ["Pandas", "Cordova", 105], ["Pandas", "Electron", 854], ["Pandas", "Flutter", 1578], ["Pandas", "GTK", 344], ["Pandas", "Hadoop", 857], ["Pandas", "Hugging Face Transformers", 1828], ["Pandas", "Ionic", 204], ["Pandas", "JAX", 511], ["Pandas", "Keras", 2030], ["Pandas", "Ktor", 143], ["Pandas", "MFC", 51], ["Pandas", "Micronaut", 99], ["Pandas", "NumPy", 6835], ["Pandas", "OpenGL", 1193], ["Pandas", "Opencv", 2492], ["Pandas", "Pandas", 8074], ["Pandas", "Qt", 899], ["Pandas", "Quarkus", 163], ["Pandas", "RabbitMQ", 1253], ["Pandas", "React Native", 1248], ["Pandas", "Scikit-Learn", 4195], ["Pandas", "Spring Framework", 811], ["Pandas", "SwiftUI", 606], ["Pandas", "Tauri", 689], ["Pandas", "TensorFlow", 4261], ["Pandas", "Tidyverse", 488], ["Pandas", "Torch/PyTorch", 4714], ["Pandas", "Uno Platform", 71], ["Pandas", "Xamarin", 167], ["Qt", ".NET (5+) ", 675], ["Qt", ".NET Framework (1.0 - 4.8)", 251], ["Qt", ".NET MAUI", 202], ["Qt", "Apache Kafka", 294], ["Qt", "Apache Spark", 190], ["Qt", "CUDA", 670], ["Qt", "Capacitor", 68], ["Qt", "Cordova", 54], ["Qt", "Electron", 418], ["Qt", "Flutter", 611], ["Qt", "GTK", 423], ["Qt", "Hadoop", 118], ["Qt", "Hugging Face Transformers", 271], ["Qt", "Ionic", 93], ["Qt", "JAX", 90], ["Qt", "Keras", 340], ["Qt", "Ktor", 61], ["Qt", "MFC", 68], ["Qt", "Micronaut", 33], ["Qt", "NumPy", 1293], ["Qt", "OpenGL", 872], ["Qt", "Opencv", 877], ["Qt", "Pandas", 954], ["Qt", "Qt", 1995], ["Qt", "Quarkus", 50], ["Qt", "RabbitMQ", 339], ["Qt", "React Native", 367], ["Qt", "Scikit-Learn", 569], ["Qt", "Spring Framework", 225], ["Qt", "SwiftUI", 258], ["Qt", "Tauri", 333], ["Qt", "TensorFlow", 970], ["Qt", "Tidyverse", 61], ["Qt", "Torch/PyTorch", 924], ["Qt", "Uno Platform", 61], ["Qt", "Xamarin", 118], ["Quarkus", ".NET (5+) ", 92], ["Quarkus", ".NET Framework (1.0 - 4.8)", 32], ["Quarkus", ".NET MAUI", 35], ["Quarkus", "Apache Kafka", 270], ["Quarkus", "Apache Spark", 114], ["Quarkus", "CUDA", 40], ["Quarkus", "Capacitor", 25], ["Quarkus", "Cordova", 32], ["Quarkus", "Electron", 46], ["Quarkus", "Flutter", 107], ["Quarkus", "GTK", 31], ["Quarkus", "Hadoop", 55], ["Quarkus", "Hugging Face Transformers", 44], ["Quarkus", "Ionic", 32], ["Quarkus", "JAX", 47], ["Quarkus", "Keras", 37], ["Quarkus", "Ktor", 61], ["Quarkus", "MFC", 18], ["Quarkus", "Micronaut", 94], ["Quarkus", "NumPy", 78], ["Quarkus", "OpenGL", 44], ["Quarkus", "Opencv", 53], ["Quarkus", "Pandas", 81], ["Quarkus", "Qt", 33], ["Quarkus", "Quarkus", 466], ["Quarkus", "RabbitMQ", 143], ["Quarkus", "React Native", 65], ["Quarkus", "Scikit-Learn", 56], ["Quarkus", "Spring Framework", 253], ["Quarkus", "SwiftUI", 49], ["Quarkus", "Tauri", 56], ["Quarkus", "TensorFlow", 96], ["Quarkus", "Tidyverse", 21], ["Quarkus", "Torch/PyTorch", 82], ["Quarkus", "Uno Platform", 19], ["Quarkus", "Xamarin", 22], ["RabbitMQ", ".NET (5+) ", 1689], ["RabbitMQ", ".NET Framework (1.0 - 4.8)", 349], ["RabbitMQ", ".NET MAUI", 505], ["RabbitMQ", "Apache Kafka", 1638], ["RabbitMQ", "Apache Spark", 585], ["RabbitMQ", "CUDA", 381], ["RabbitMQ", "Capacitor", 120], ["RabbitMQ", "Cordova", 80], ["RabbitMQ", "Electron", 466], ["RabbitMQ", "Flutter", 854], ["RabbitMQ", "GTK", 148], ["RabbitMQ", "Hadoop", 327], ["RabbitMQ", "Hugging Face Transformers", 367], ["RabbitMQ", "Ionic", 155], ["RabbitMQ", "JAX", 83], ["RabbitMQ", "Keras", 314], ["RabbitMQ", "Ktor", 149], ["RabbitMQ", "MFC", 36], ["RabbitMQ", "Micronaut", 173], ["RabbitMQ", "NumPy", 1017], ["RabbitMQ", "OpenGL", 415], ["RabbitMQ", "Opencv", 560], ["RabbitMQ", "Pandas", 984], ["RabbitMQ", "Qt", 243], ["RabbitMQ", "Quarkus", 262], ["RabbitMQ", "RabbitMQ", 3896], ["RabbitMQ", "React Native", 753], ["RabbitMQ", "Scikit-Learn", 505], ["RabbitMQ", "Spring Framework", 947], ["RabbitMQ", "SwiftUI", 252], ["RabbitMQ", "Tauri", 356], ["RabbitMQ", "TensorFlow", 1095], ["RabbitMQ", "Tidyverse", 51], ["RabbitMQ", "Torch/PyTorch", 819], ["RabbitMQ", "Uno Platform", 71], ["RabbitMQ", "Xamarin", 156], ["React Native", ".NET (5+) ", 821], ["React Native", ".NET Framework (1.0 - 4.8)", 234], ["React Native", ".NET MAUI", 240], ["React Native", "Apache Kafka", 589], ["React Native", "Apache Spark", 259], ["React Native", "CUDA", 275], ["React Native", "Capacitor", 157], ["React Native", "Cordova", 98], ["React Native", "Electron", 837], ["React Native", "Flutter", 1299], ["React Native", "GTK", 129], ["React Native", "Hadoop", 161], ["React Native", "Hugging Face Transformers", 347], ["React Native", "Ionic", 208], ["React Native", "JAX", 60], ["React Native", "Keras", 304], ["React Native", "Ktor", 97], ["React Native", "MFC", 33], ["React Native", "Micronaut", 53], ["React Native", "NumPy", 844], ["React Native", "OpenGL", 583], ["React Native", "Opencv", 558], ["React Native", "Pandas", 771], ["React Native", "Qt", 197], ["React Native", "Quarkus", 84], ["React Native", "RabbitMQ", 695], ["React Native", "React Native", 3060], ["React Native", "Scikit-Learn", 452], ["React Native", "Spring Framework", 414], ["React Native", "SwiftUI", 636], ["React Native", "Tauri", 546], ["React Native", "TensorFlow", 1170], ["React Native", "Tidyverse", 41], ["React Native", "Torch/PyTorch", 810], ["React Native", "Uno Platform", 56], ["React Native", "Xamarin", 140], ["Scikit-Learn", ".NET (5+) ", 597], ["Scikit-Learn", ".NET Framework (1.0 - 4.8)", 175], ["Scikit-Learn", ".NET MAUI", 169], ["Scikit-Learn", "Apache Kafka", 931], ["Scikit-Learn", "Apache Spark", 1004], ["Scikit-Learn", "CUDA", 1379], ["Scikit-Learn", "Capacitor", 84], ["Scikit-Learn", "Cordova", 60], ["Scikit-Learn", "Electron", 424], ["Scikit-Learn", "Flutter", 804], ["Scikit-Learn", "GTK", 186], ["Scikit-Learn", "Hadoop", 516], ["Scikit-Learn", "Hugging Face Transformers", 1376], ["Scikit-Learn", "Ionic", 125], ["Scikit-Learn", "JAX", 445], ["Scikit-Learn", "Keras", 1626], ["Scikit-Learn", "Ktor", 79], ["Scikit-Learn", "MFC", 33], ["Scikit-Learn", "Micronaut", 54], ["Scikit-Learn", "NumPy", 3957], ["Scikit-Learn", "OpenGL", 691], ["Scikit-Learn", "Opencv", 1716], ["Scikit-Learn", "Pandas", 3730], ["Scikit-Learn", "Qt", 490], ["Scikit-Learn", "Quarkus", 94], ["Scikit-Learn", "RabbitMQ", 587], ["Scikit-Learn", "React Native", 622], ["Scikit-Learn", "Scikit-Learn", 4167], ["Scikit-Learn", "Spring Framework", 429], ["Scikit-Learn", "SwiftUI", 275], ["Scikit-Learn", "Tauri", 320], ["Scikit-Learn", "TensorFlow", 2725], ["Scikit-Learn", "Tidyverse", 343], ["Scikit-Learn", "Torch/PyTorch", 3244], ["Scikit-Learn", "Uno Platform", 43], ["Scikit-Learn", "Xamarin", 86], ["Spring Framework", ".NET (5+) ", 763], ["Spring Framework", ".NET Framework (1.0 - 4.8)", 250], ["Spring Framework", ".NET MAUI", 186], ["Spring Framework", "Apache Kafka", 2146], ["Spring Framework", "Apache Spark", 768], ["Spring Framework", "CUDA", 336], ["Spring Framework", "Capacitor", 114], ["Spring Framework", "Cordova", 89], ["Spring Framework", "Electron", 455], ["Spring Framework", "Flutter", 1005], ["Spring Framework", "GTK", 145], ["Spring Framework", "Hadoop", 371], ["Spring Framework", "Hugging Face Transformers", 304], ["Spring Framework", "Ionic", 187], ["Spring Framework", "JAX", 124], ["Spring Framework", "Keras", 316], ["Spring Framework", "Ktor", 381], ["Spring Framework", "MFC", 35], ["Spring Framework", "Micronaut", 478], ["Spring Framework", "NumPy", 845], ["Spring Framework", "OpenGL", 447], ["Spring Framework", "Opencv", 445], ["Spring Framework", "Pandas", 875], ["Spring Framework", "Qt", 233], ["Spring Framework", "Quarkus", 733], ["Spring Framework", "RabbitMQ", 1282], ["Spring Framework", "React Native", 762], ["Spring Framework", "Scikit-Learn", 478], ["Spring Framework", "Spring Framework", 4411], ["Spring Framework", "SwiftUI", 341], ["Spring Framework", "Tauri", 275], ["Spring Framework", "TensorFlow", 1005], ["Spring Framework", "Tidyverse", 48], ["Spring Framework", "Torch/PyTorch", 724], ["Spring Framework", "Uno Platform", 50], ["Spring Framework", "Xamarin", 117], ["SwiftUI", ".NET (5+) ", 358], ["SwiftUI", ".NET Framework (1.0 - 4.8)", 112], ["SwiftUI", ".NET MAUI", 147], ["SwiftUI", "Apache Kafka", 201], ["SwiftUI", "Apache Spark", 110], ["SwiftUI", "CUDA", 141], ["SwiftUI", "Capacitor", 75], ["SwiftUI", "Cordova", 42], ["SwiftUI", "Electron", 222], ["SwiftUI", "Flutter", 482], ["SwiftUI", "GTK", 62], ["SwiftUI", "Hadoop", 66], ["SwiftUI", "Hugging Face Transformers", 137], ["SwiftUI", "Ionic", 71], ["SwiftUI", "JAX", 41], ["SwiftUI", "Keras", 119], ["SwiftUI", "Ktor", 100], ["SwiftUI", "MFC", 31], ["SwiftUI", "Micronaut", 31], ["SwiftUI", "NumPy", 339], ["SwiftUI", "OpenGL", 250], ["SwiftUI", "Opencv", 228], ["SwiftUI", "Pandas", 289], ["SwiftUI", "Qt", 107], ["SwiftUI", "Quarkus", 43], ["SwiftUI", "RabbitMQ", 185], ["SwiftUI", "React Native", 357], ["SwiftUI", "Scikit-Learn", 165], ["SwiftUI", "Spring Framework", 159], ["SwiftUI", "SwiftUI", 1738], ["SwiftUI", "Tauri", 173], ["SwiftUI", "TensorFlow", 419], ["SwiftUI", "Tidyverse", 34], ["SwiftUI", "Torch/PyTorch", 339], ["SwiftUI", "Uno Platform", 45], ["SwiftUI", "Xamarin", 87], ["Tauri", ".NET (5+) ", 222], ["Tauri", ".NET Framework (1.0 - 4.8)", 50], ["Tauri", ".NET MAUI", 90], ["Tauri", "Apache Kafka", 133], ["Tauri", "Apache Spark", 61], ["Tauri", "CUDA", 133], ["Tauri", "Capacitor", 78], ["Tauri", "Cordova", 29], ["Tauri", "Electron", 180], ["Tauri", "Flutter", 276], ["Tauri", "GTK", 132], ["Tauri", "Hadoop", 35], ["Tauri", "Hugging Face Transformers", 120], ["Tauri", "Ionic", 63], ["Tauri", "JAX", 37], ["Tauri", "Keras", 92], ["Tauri", "Ktor", 49], ["Tauri", "MFC", 23], ["Tauri", "Micronaut", 26], ["Tauri", "NumPy", 255], ["Tauri", "OpenGL", 205], ["Tauri", "Opencv", 171], ["Tauri", "Pandas", 200], ["Tauri", "Qt", 112], ["Tauri", "Quarkus", 31], ["Tauri", "RabbitMQ", 154], ["Tauri", "React Native", 227], ["Tauri", "Scikit-Learn", 113], ["Tauri", "Spring Framework", 68], ["Tauri", "SwiftUI", 137], ["Tauri", "Tauri", 1181], ["Tauri", "TensorFlow", 259], ["Tauri", "Tidyverse", 25], ["Tauri", "Torch/PyTorch", 247], ["Tauri", "Uno Platform", 32], ["Tauri", "Xamarin", 40], ["TensorFlow", ".NET (5+) ", 844], ["TensorFlow", ".NET Framework (1.0 - 4.8)", 288], ["TensorFlow", ".NET MAUI", 242], ["TensorFlow", "Apache Kafka", 795], ["TensorFlow", "Apache Spark", 724], ["TensorFlow", "CUDA", 1348], ["TensorFlow", "Capacitor", 108], ["TensorFlow", "Cordova", 84], ["TensorFlow", "Electron", 563], ["TensorFlow", "Flutter", 976], ["TensorFlow", "GTK", 220], ["TensorFlow", "Hadoop", 435], ["TensorFlow", "Hugging Face Transformers", 1136], ["TensorFlow", "Ionic", 152], ["TensorFlow", "JAX", 356], ["TensorFlow", "Keras", 1725], ["TensorFlow", "Ktor", 94], ["TensorFlow", "MFC", 45], ["TensorFlow", "Micronaut", 57], ["TensorFlow", "NumPy", 3189], ["TensorFlow", "OpenGL", 871], ["TensorFlow", "Opencv", 1755], ["TensorFlow", "Pandas", 2810], ["TensorFlow", "Qt", 500], ["TensorFlow", "Quarkus", 106], ["TensorFlow", "RabbitMQ", 621], ["TensorFlow", "React Native", 774], ["TensorFlow", "Scikit-Learn", 2241], ["TensorFlow", "Spring Framework", 451], ["TensorFlow", "SwiftUI", 394], ["TensorFlow", "Tauri", 347], ["TensorFlow", "TensorFlow", 3679], ["TensorFlow", "Tidyverse", 238], ["TensorFlow", "Torch/PyTorch", 2903], ["TensorFlow", "Uno Platform", 61], ["TensorFlow", "Xamarin", 131], ["Tidyverse", ".NET (5+) ", 81], ["Tidyverse", ".NET Framework (1.0 - 4.8)", 38], ["Tidyverse", ".NET MAUI", 31], ["Tidyverse", "Apache Kafka", 116], ["Tidyverse", "Apache Spark", 185], ["Tidyverse", "CUDA", 148], ["Tidyverse", "Capacitor", 23], ["Tidyverse", "Cordova", 19], ["Tidyverse", "Electron", 67], ["Tidyverse", "Flutter", 81], ["Tidyverse", "GTK", 40], ["Tidyverse", "Hadoop", 94], ["Tidyverse", "Hugging Face Transformers", 167], ["Tidyverse", "Ionic", 28], ["Tidyverse", "JAX", 57], ["Tidyverse", "Keras", 237], ["Tidyverse", "Ktor", 17], ["Tidyverse", "MFC", 18], ["Tidyverse", "Micronaut", 20], ["Tidyverse", "NumPy", 477], ["Tidyverse", "OpenGL", 73], ["Tidyverse", "Opencv", 143], ["Tidyverse", "Pandas", 502], ["Tidyverse", "Qt", 71], ["Tidyverse", "Quarkus", 23], ["Tidyverse", "RabbitMQ", 64], ["Tidyverse", "React Native", 79], ["Tidyverse", "Scikit-Learn", 414], ["Tidyverse", "Spring Framework", 41], ["Tidyverse", "SwiftUI", 45], ["Tidyverse", "Tauri", 51], ["Tidyverse", "TensorFlow", 375], ["Tidyverse", "Tidyverse", 681], ["Tidyverse", "Torch/PyTorch", 380], ["Tidyverse", "Uno Platform", 22], ["Tidyverse", "Xamarin", 26], ["Torch/PyTorch", ".NET (5+) ", 671], ["Torch/PyTorch", ".NET Framework (1.0 - 4.8)", 222], ["Torch/PyTorch", ".NET MAUI", 175], ["Torch/PyTorch", "Apache Kafka", 745], ["Torch/PyTorch", "Apache Spark", 667], ["Torch/PyTorch", "CUDA", 1558], ["Torch/PyTorch", "Capacitor", 83], ["Torch/PyTorch", "Cordova", 61], ["Torch/PyTorch", "Electron", 468], ["Torch/PyTorch", "Flutter", 743], ["Torch/PyTorch", "GTK", 190], ["Torch/PyTorch", "Hadoop", 361], ["Torch/PyTorch", "Hugging Face Transformers", 1438], ["Torch/PyTorch", "Ionic", 104], ["Torch/PyTorch", "JAX", 465], ["Torch/PyTorch", "Keras", 1151], ["Torch/PyTorch", "Ktor", 81], ["Torch/PyTorch", "MFC", 37], ["Torch/PyTorch", "Micronaut", 46], ["Torch/PyTorch", "NumPy", 3212], ["Torch/PyTorch", "OpenGL", 773], ["Torch/PyTorch", "Opencv", 1602], ["Torch/PyTorch", "Pandas", 2697], ["Torch/PyTorch", "Qt", 443], ["Torch/PyTorch", "Quarkus", 79], ["Torch/PyTorch", "RabbitMQ", 537], ["Torch/PyTorch", "React Native", 571], ["Torch/PyTorch", "Scikit-Learn", 2153], ["Torch/PyTorch", "Spring Framework", 351], ["Torch/PyTorch", "SwiftUI", 336], ["Torch/PyTorch", "Tauri", 359], ["Torch/PyTorch", "TensorFlow", 2231], ["Torch/PyTorch", "Tidyverse", 202], ["Torch/PyTorch", "Torch/PyTorch", 4016], ["Torch/PyTorch", "Uno Platform", 46], ["Torch/PyTorch", "Xamarin", 93], ["Uno Platform", ".NET (5+) ", 211], ["Uno Platform", ".NET Framework (1.0 - 4.8)", 75], ["Uno Platform", ".NET MAUI", 132], ["Uno Platform", "Apache Kafka", 45], ["Uno Platform", "Apache Spark", 40], ["Uno Platform", "CUDA", 42], ["Uno Platform", "Capacitor", 26], ["Uno Platform", "Cordova", 24], ["Uno Platform", "Electron", 54], ["Uno Platform", "Flutter", 68], ["Uno Platform", "GTK", 37], ["Uno Platform", "Hadoop", 25], ["Uno Platform", "Hugging Face Transformers", 36], ["Uno Platform", "Ionic", 19], ["Uno Platform", "JAX", 21], ["Uno Platform", "Keras", 27], ["Uno Platform", "Ktor", 26], ["Uno Platform", "MFC", 28], ["Uno Platform", "Micronaut", 23], ["Uno Platform", "NumPy", 60], ["Uno Platform", "OpenGL", 52], ["Uno Platform", "Opencv", 62], ["Uno Platform", "Pandas", 49], ["Uno Platform", "Qt", 41], ["Uno Platform", "Quarkus", 25], ["Uno Platform", "RabbitMQ", 57], ["Uno Platform", "React Native", 53], ["Uno Platform", "Scikit-Learn", 37], ["Uno Platform", "Spring Framework", 30], ["Uno Platform", "SwiftUI", 43], ["Uno Platform", "Tauri", 39], ["Uno Platform", "TensorFlow", 69], ["Uno Platform", "Tidyverse", 20], ["Uno Platform", "Torch/PyTorch", 54], ["Uno Platform", "Uno Platform", 216], ["Uno Platform", "Xamarin", 53], ["Xamarin", ".NET (5+) ", 1336], ["Xamarin", ".NET Framework (1.0 - 4.8)", 485], ["Xamarin", ".NET MAUI", 842], ["Xamarin", "Apache Kafka", 190], ["Xamarin", "Apache Spark", 107], ["Xamarin", "CUDA", 134], ["Xamarin", "Capacitor", 70], ["Xamarin", "Cordova", 51], ["Xamarin", "Electron", 207], ["Xamarin", "Flutter", 464], ["Xamarin", "GTK", 77], ["Xamarin", "Hadoop", 79], ["Xamarin", "Hugging Face Transformers", 94], ["Xamarin", "Ionic", 101], ["Xamarin", "JAX", 38], ["Xamarin", "Keras", 89], ["Xamarin", "Ktor", 44], ["Xamarin", "MFC", 42], ["Xamarin", "Micronaut", 29], ["Xamarin", "NumPy", 240], ["Xamarin", "OpenGL", 228], ["Xamarin", "Opencv", 199], ["Xamarin", "Pandas", 222], ["Xamarin", "Qt", 124], ["Xamarin", "Quarkus", 37], ["Xamarin", "RabbitMQ", 341], ["Xamarin", "React Native", 325], ["Xamarin", "Scikit-Learn", 112], ["Xamarin", "Spring Framework", 138], ["Xamarin", "SwiftUI", 248], ["Xamarin", "Tauri", 110], ["Xamarin", "TensorFlow", 325], ["Xamarin", "Tidyverse", 26], ["Xamarin", "Torch/PyTorch", 223], ["Xamarin", "Uno Platform", 137], ["Xamarin", "Xamarin", 528]]}, {"query": "SELECT MiscTech.Name AS Framework, COUNT(DISTINCT Response_MiscTechHaveWorkedWith.Response_id) AS CurrentUsers, COUNT(DISTINCT Response_MiscTechWantToWorkWith.Response_id) AS FutureUsers FROM MiscTech LEFT JOIN Response_MiscTechHaveWorkedWith ON MiscTech.id = Response_MiscTechHaveWorkedWith.MiscTech_id LEFT JOIN Response_MiscTechWantToWorkWith ON MiscTech.id = Response_MiscTechWantToWorkWith.MiscTech_id GROUP BY MiscTech.Name", "results": null}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many people learning to code want to use which tool and what are they currently using?", "labels": [{"query": "SELECT TechTools1.name AS have_worked_with, TechTools2.name AS want_to_work_with, COUNT(*) FROM Response_ToolsTechHaveWorkedWith JOIN TechTools AS TechTools1 ON Response_ToolsTechHaveWorkedWith.TechTools_id = TechTools1.id JOIN Response_ToolsTechWantToWorkWith ON Response_ToolsTechWantToWorkWith.Response_id = Response_ToolsTechHaveWorkedWith.Response_id JOIN Responses ON Response_ToolsTechWantToWorkWith.Response_id = Responses.id JOIN TechTools AS TechTools2 ON Response_ToolsTechWantToWorkWith.TechTools_id = TechTools2.id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY TechTools1.name, TechTools2.name", "results": [["APT", "APT", 195], ["APT", "Ansible", 34], ["APT", "Ant", 5], ["APT", "Boost.Test", 5], ["APT", "Bun", 18], ["APT", "CMake", 61], ["APT", "CUTE", 4], ["APT", "Cargo", 108], ["APT", "Catch2", 4], ["APT", "Chef", 6], ["APT", "Chocolatey", 23], ["APT", "Composer", 11], ["APT", "Dagger", 3], ["APT", "Docker", 161], ["APT", "ELFspy", 4], ["APT", "GNU GCC", 95], ["APT", "Godot", 25], ["APT", "Google Test", 13], ["APT", "Gradle", 38], ["APT", "Homebrew", 38], ["APT", "Kubernetes", 62], ["APT", "LLVM's Clang", 50], ["APT", "MSBuild", 9], ["APT", "MSVC", 13], ["APT", "Make", 76], ["APT", "Maven (build tool)", 28], ["APT", "Meson", 15], ["APT", "Ninja", 21], ["APT", "Nix", 28], ["APT", "NuGet", 18], ["APT", "Pacman", 78], ["APT", "Pip", 134], ["APT", "Podman", 20], ["APT", "Pulumi", 5], ["APT", "Puppet", 4], ["APT", "QMake", 5], ["APT", "SCons", 3], ["APT", "Terraform", 29], ["APT", "Unity 3D", 26], ["APT", "Unreal Engine", 30], ["APT", "Visual Studio Solution", 26], ["APT", "Vite", 59], ["APT", "Wasmer", 10], ["APT", "Webpack", 27], ["APT", "Yarn", 31], ["APT", "bandit", 3], ["APT", "build2", 5], ["APT", "cppunit", 4], ["APT", "doctest", 5], ["APT", "lest", 3], ["APT", "liblittletest", 3], ["APT", "npm", 124], ["APT", "pnpm", 30], ["APT", "snitch", 2], ["APT", "tunit", 3], ["Ansible", "APT", 11], ["Ansible", "Ansible", 58], ["Ansible", "Ant", 3], ["Ansible", "Boost.Test", 4], ["Ansible", "Bun", 9], ["Ansible", "CMake", 14], ["Ansible", "CUTE", 3], ["Ansible", "Cargo", 22], ["Ansible", "Catch2", 3], ["Ansible", "Chef", 4], ["Ansible", "Chocolatey", 5], ["Ansible", "Composer", 6], ["Ansible", "Dagger", 3], ["Ansible", "Docker", 46], ["Ansible", "ELFspy", 3], ["Ansible", "GNU GCC", 15], ["Ansible", "Godot", 9], ["Ansible", "Google Test", 6], ["Ansible", "Gradle", 16], ["Ansible", "Homebrew", 12], ["Ansible", "Kubernetes", 34], ["Ansible", "LLVM's Clang", 10], ["Ansible", "MSBuild", 4], ["Ansible", "MSVC", 5], ["Ansible", "Make", 19], ["Ansible", "Maven (build tool)", 12], ["Ansible", "Meson", 3], ["Ansible", "Ninja", 6], ["Ansible", "Nix", 12], ["Ansible", "NuGet", 5], ["Ansible", "Pacman", 15], ["Ansible", "Pip", 22], ["Ansible", "Podman", 14], ["Ansible", "Pulumi", 8], ["Ansible", "Puppet", 5], ["Ansible", "QMake", 2], ["Ansible", "SCons", 3], ["Ansible", "Terraform", 20], ["Ansible", "Unity 3D", 8], ["Ansible", "Unreal Engine", 7], ["Ansible", "Visual Studio Solution", 8], ["Ansible", "Vite", 14], ["Ansible", "Wasmer", 6], ["Ansible", "Webpack", 6], ["Ansible", "Yarn", 14], ["Ansible", "bandit", 4], ["Ansible", "build2", 3], ["Ansible", "cppunit", 3], ["Ansible", "doctest", 3], ["Ansible", "lest", 3], ["Ansible", "liblittletest", 3], ["Ansible", "npm", 22], ["Ansible", "pnpm", 17], ["Ansible", "snitch", 2], ["Ansible", "tunit", 3], ["Ant", "APT", 9], ["Ant", "Ansible", 5], ["Ant", "Ant", 20], ["Ant", "Boost.Test", 3], ["Ant", "Bun", 6], ["Ant", "CMake", 14], ["Ant", "CUTE", 3], ["Ant", "Cargo", 12], ["Ant", "Catch2", 3], ["Ant", "Chef", 3], ["Ant", "Chocolatey", 5], ["Ant", "Composer", 8], ["Ant", "Dagger", 4], ["Ant", "Docker", 18], ["Ant", "ELFspy", 3], ["Ant", "GNU GCC", 15], ["Ant", "Godot", 8], ["Ant", "Google Test", 5], ["Ant", "Gradle", 16], ["Ant", "Homebrew", 6], ["Ant", "Kubernetes", 10], ["Ant", "LLVM's Clang", 9], ["Ant", "MSBuild", 7], ["Ant", "MSVC", 7], ["Ant", "Make", 6], ["Ant", "Maven (build tool)", 14], ["Ant", "Meson", 2], ["Ant", "Ninja", 7], ["Ant", "Nix", 5], ["Ant", "NuGet", 7], ["Ant", "Pacman", 4], ["Ant", "Pip", 15], ["Ant", "Podman", 5], ["Ant", "Pulumi", 3], ["Ant", "Puppet", 2], ["Ant", "QMake", 2], ["Ant", "SCons", 2], ["Ant", "Terraform", 5], ["Ant", "Unity 3D", 6], ["Ant", "Unreal Engine", 8], ["Ant", "Visual Studio Solution", 13], ["Ant", "Vite", 11], ["Ant", "Wasmer", 6], ["Ant", "Webpack", 4], ["Ant", "Yarn", 7], ["Ant", "bandit", 3], ["Ant", "build2", 4], ["Ant", "cppunit", 3], ["Ant", "doctest", 3], ["Ant", "lest", 3], ["Ant", "liblittletest", 3], ["Ant", "npm", 20], ["Ant", "pnpm", 11], ["Ant", "snitch", 2], ["Ant", "tunit", 2], ["Boost.Test", "APT", 3], ["Boost.Test", "Ansible", 4], ["Boost.Test", "Ant", 3], ["Boost.Test", "Boost.Test", 8], ["Boost.Test", "Bun", 5], ["Boost.Test", "CMake", 9], ["Boost.Test", "CUTE", 3], ["Boost.Test", "Cargo", 6], ["Boost.Test", "Catch2", 3], ["Boost.Test", "Chef", 3], ["Boost.Test", "Chocolatey", 4], ["Boost.Test", "Composer", 3], ["Boost.Test", "Dagger", 3], ["Boost.Test", "Docker", 7], ["Boost.Test", "ELFspy", 3], ["Boost.Test", "GNU GCC", 9], ["Boost.Test", "Godot", 4], ["Boost.Test", "Google Test", 6], ["Boost.Test", "Gradle", 4], ["Boost.Test", "Homebrew", 3], ["Boost.Test", "Kubernetes", 7], ["Boost.Test", "LLVM's Clang", 6], ["Boost.Test", "MSBuild", 3], ["Boost.Test", "MSVC", 5], ["Boost.Test", "Make", 6], ["Boost.Test", "Maven (build tool)", 5], ["Boost.Test", "Meson", 2], ["Boost.Test", "Ninja", 5], ["Boost.Test", "Nix", 4], ["Boost.Test", "NuGet", 4], ["Boost.Test", "Pacman", 6], ["Boost.Test", "Pip", 5], ["Boost.Test", "Podman", 2], ["Boost.Test", "Pulumi", 3], ["Boost.Test", "Puppet", 2], ["Boost.Test", "QMake", 2], ["Boost.Test", "SCons", 2], ["Boost.Test", "Terraform", 2], ["Boost.Test", "Unity 3D", 4], ["Boost.Test", "Unreal Engine", 2], ["Boost.Test", "Visual Studio Solution", 5], ["Boost.Test", "Vite", 5], ["Boost.Test", "Wasmer", 4], ["Boost.Test", "Webpack", 7], ["Boost.Test", "Yarn", 4], ["Boost.Test", "bandit", 3], ["Boost.Test", "build2", 4], ["Boost.Test", "cppunit", 4], ["Boost.Test", "doctest", 4], ["Boost.Test", "lest", 3], ["Boost.Test", "liblittletest", 3], ["Boost.Test", "npm", 7], ["Boost.Test", "pnpm", 6], ["Boost.Test", "snitch", 2], ["Boost.Test", "tunit", 2], ["Bun", "APT", 6], ["Bun", "Ansible", 5], ["Bun", "Ant", 4], ["Bun", "Boost.Test", 3], ["Bun", "Bun", 23], ["Bun", "CMake", 13], ["Bun", "CUTE", 3], ["Bun", "Cargo", 19], ["Bun", "Catch2", 3], ["Bun", "Chef", 3], ["Bun", "Chocolatey", 3], ["Bun", "Composer", 3], ["Bun", "Dagger", 4], ["Bun", "Docker", 20], ["Bun", "ELFspy", 3], ["Bun", "GNU GCC", 13], ["Bun", "Godot", 8], ["Bun", "Google Test", 4], ["Bun", "Gradle", 6], ["Bun", "Homebrew", 8], ["Bun", "Kubernetes", 6], ["Bun", "LLVM's Clang", 8], ["Bun", "MSBuild", 2], ["Bun", "MSVC", 3], ["Bun", "Make", 12], ["Bun", "Maven (build tool)", 6], ["Bun", "Meson", 4], ["Bun", "Ninja", 6], ["Bun", "Nix", 6], ["Bun", "NuGet", 4], ["Bun", "Pacman", 11], ["Bun", "Pip", 11], ["Bun", "Podman", 4], ["Bun", "Pulumi", 3], ["Bun", "Puppet", 2], ["Bun", "QMake", 2], ["Bun", "SCons", 2], ["Bun", "Terraform", 3], ["Bun", "Unity 3D", 5], ["Bun", "Unreal Engine", 6], ["Bun", "Visual Studio Solution", 3], ["Bun", "Vite", 20], ["Bun", "Wasmer", 6], ["Bun", "Webpack", 8], ["Bun", "Yarn", 10], ["Bun", "bandit", 4], ["Bun", "build2", 3], ["Bun", "cppunit", 4], ["Bun", "doctest", 4], ["Bun", "lest", 3], ["Bun", "liblittletest", 3], ["Bun", "npm", 13], ["Bun", "pnpm", 13], ["Bun", "snitch", 2], ["Bun", "tunit", 2], ["CMake", "APT", 65], ["CMake", "Ansible", 34], ["CMake", "Ant", 8], ["CMake", "Boost.Test", 5], ["CMake", "Bun", 29], ["CMake", "CMake", 282], ["CMake", "CUTE", 4], ["CMake", "Cargo", 181], ["CMake", "Catch2", 9], ["CMake", "Chef", 4], ["CMake", "Chocolatey", 51], ["CMake", "Composer", 13], ["CMake", "Dagger", 5], ["CMake", "Docker", 252], ["CMake", "ELFspy", 3], ["CMake", "GNU GCC", 204], ["CMake", "Godot", 62], ["CMake", "Google Test", 23], ["CMake", "Gradle", 81], ["CMake", "Homebrew", 69], ["CMake", "Kubernetes", 103], ["CMake", "LLVM's Clang", 127], ["CMake", "MSBuild", 26], ["CMake", "MSVC", 41], ["CMake", "Make", 159], ["CMake", "Maven (build tool)", 62], ["CMake", "Meson", 26], ["CMake", "Ninja", 60], ["CMake", "Nix", 39], ["CMake", "NuGet", 42], ["CMake", "Pacman", 90], ["CMake", "Pip", 196], ["CMake", "Podman", 27], ["CMake", "Pulumi", 3], ["CMake", "Puppet", 6], ["CMake", "QMake", 13], ["CMake", "SCons", 4], ["CMake", "Terraform", 23], ["CMake", "Unity 3D", 86], ["CMake", "Unreal Engine", 93], ["CMake", "Visual Studio Solution", 61], ["CMake", "Vite", 114], ["CMake", "Wasmer", 16], ["CMake", "Webpack", 48], ["CMake", "Yarn", 61], ["CMake", "bandit", 5], ["CMake", "build2", 6], ["CMake", "cppunit", 7], ["CMake", "doctest", 7], ["CMake", "lest", 3], ["CMake", "liblittletest", 3], ["CMake", "npm", 179], ["CMake", "pnpm", 57], ["CMake", "snitch", 2], ["CMake", "tunit", 2], ["CUTE", "APT", 3], ["CUTE", "Ansible", 3], ["CUTE", "Ant", 3], ["CUTE", "Boost.Test", 3], ["CUTE", "Bun", 3], ["CUTE", "CMake", 4], ["CUTE", "CUTE", 4], ["CUTE", "Cargo", 4], ["CUTE", "Catch2", 3], ["CUTE", "Chef", 3], ["CUTE", "Chocolatey", 3], ["CUTE", "Composer", 3], ["CUTE", "Dagger", 4], ["CUTE", "Docker", 5], ["CUTE", "ELFspy", 3], ["CUTE", "GNU GCC", 3], ["CUTE", "Godot", 3], ["CUTE", "Google Test", 4], ["CUTE", "Gradle", 3], ["CUTE", "Homebrew", 3], ["CUTE", "Kubernetes", 3], ["CUTE", "LLVM's Clang", 2], ["CUTE", "MSBuild", 2], ["CUTE", "MSVC", 3], ["CUTE", "Make", 2], ["CUTE", "Maven (build tool)", 3], ["CUTE", "Meson", 2], ["CUTE", "Ninja", 4], ["CUTE", "Nix", 3], ["CUTE", "NuGet", 3], ["CUTE", "Pacman", 3], ["CUTE", "Pip", 3], ["CUTE", "Podman", 2], ["CUTE", "Pulumi", 3], ["CUTE", "Puppet", 2], ["CUTE", "QMake", 2], ["CUTE", "SCons", 2], ["CUTE", "Terraform", 2], ["CUTE", "Unity 3D", 3], ["CUTE", "Unreal Engine", 2], ["CUTE", "Visual Studio Solution", 4], ["CUTE", "Vite", 3], ["CUTE", "Wasmer", 3], ["CUTE", "Webpack", 3], ["CUTE", "Yarn", 3], ["CUTE", "bandit", 3], ["CUTE", "build2", 3], ["CUTE", "cppunit", 3], ["CUTE", "doctest", 3], ["CUTE", "lest", 3], ["CUTE", "liblittletest", 3], ["CUTE", "npm", 4], ["CUTE", "pnpm", 4], ["CUTE", "snitch", 2], ["CUTE", "tunit", 2], ["Cargo", "APT", 57], ["Cargo", "Ansible", 40], ["Cargo", "Ant", 4], ["Cargo", "Boost.Test", 4], ["Cargo", "Bun", 56], ["Cargo", "CMake", 97], ["Cargo", "CUTE", 3], ["Cargo", "Cargo", 437], ["Cargo", "Catch2", 4], ["Cargo", "Chef", 4], ["Cargo", "Chocolatey", 45], ["Cargo", "Composer", 11], ["Cargo", "Dagger", 7], ["Cargo", "Docker", 224], ["Cargo", "ELFspy", 3], ["Cargo", "GNU GCC", 139], ["Cargo", "Godot", 75], ["Cargo", "Google Test", 12], ["Cargo", "Gradle", 53], ["Cargo", "Homebrew", 74], ["Cargo", "Kubernetes", 82], ["Cargo", "LLVM's Clang", 108], ["Cargo", "MSBuild", 13], ["Cargo", "MSVC", 24], ["Cargo", "Make", 121], ["Cargo", "Maven (build tool)", 31], ["Cargo", "Meson", 26], ["Cargo", "Ninja", 35], ["Cargo", "Nix", 64], ["Cargo", "NuGet", 30], ["Cargo", "Pacman", 130], ["Cargo", "Pip", 137], ["Cargo", "Podman", 30], ["Cargo", "Pulumi", 3], ["Cargo", "Puppet", 3], ["Cargo", "QMake", 3], ["Cargo", "SCons", 3], ["Cargo", "Terraform", 23], ["Cargo", "Unity 3D", 56], ["Cargo", "Unreal Engine", 58], ["Cargo", "Visual Studio Solution", 33], ["Cargo", "Vite", 134], ["Cargo", "Wasmer", 32], ["Cargo", "Webpack", 40], ["Cargo", "Yarn", 61], ["Cargo", "bandit", 5], ["Cargo", "build2", 6], ["Cargo", "cppunit", 6], ["Cargo", "doctest", 7], ["Cargo", "lest", 3], ["Cargo", "liblittletest", 3], ["Cargo", "npm", 130], ["Cargo", "pnpm", 83], ["Cargo", "snitch", 2], ["Cargo", "tunit", 2], ["Catch2", "APT", 4], ["Catch2", "Ansible", 4], ["Catch2", "Ant", 3], ["Catch2", "Boost.Test", 3], ["Catch2", "Bun", 4], ["Catch2", "CMake", 10], ["Catch2", "CUTE", 3], ["Catch2", "Cargo", 7], ["Catch2", "Catch2", 11], ["Catch2", "Chef", 4], ["Catch2", "Chocolatey", 3], ["Catch2", "Composer", 3], ["Catch2", "Dagger", 3], ["Catch2", "Docker", 10], ["Catch2", "ELFspy", 3], ["Catch2", "GNU GCC", 10], ["Catch2", "Godot", 5], ["Catch2", "Google Test", 4], ["Catch2", "Gradle", 6], ["Catch2", "Homebrew", 4], ["Catch2", "Kubernetes", 6], ["Catch2", "LLVM's Clang", 8], ["Catch2", "MSBuild", 3], ["Catch2", "MSVC", 6], ["Catch2", "Make", 8], ["Catch2", "Maven (build tool)", 4], ["Catch2", "Meson", 4], ["Catch2", "Ninja", 9], ["Catch2", "Nix", 5], ["Catch2", "NuGet", 3], ["Catch2", "Pacman", 6], ["Catch2", "Pip", 10], ["Catch2", "Podman", 3], ["Catch2", "Pulumi", 3], ["Catch2", "Puppet", 2], ["Catch2", "QMake", 3], ["Catch2", "SCons", 2], ["Catch2", "Terraform", 3], ["Catch2", "Unity 3D", 7], ["Catch2", "Unreal Engine", 8], ["Catch2", "Visual Studio Solution", 3], ["Catch2", "Vite", 5], ["Catch2", "Wasmer", 3], ["Catch2", "Webpack", 4], ["Catch2", "Yarn", 3], ["Catch2", "bandit", 3], ["Catch2", "build2", 3], ["Catch2", "cppunit", 3], ["Catch2", "doctest", 3], ["Catch2", "lest", 3], ["Catch2", "liblittletest", 3], ["Catch2", "npm", 4], ["Catch2", "pnpm", 6], ["Catch2", "snitch", 2], ["Catch2", "tunit", 2], ["Chef", "APT", 3], ["Chef", "Ansible", 5], ["Chef", "Ant", 3], ["Chef", "Boost.Test", 3], ["Chef", "Bun", 3], ["Chef", "CMake", 4], ["Chef", "CUTE", 3], ["Chef", "Cargo", 4], ["Chef", "Catch2", 3], ["Chef", "Chef", 6], ["Chef", "Chocolatey", 4], ["Chef", "Composer", 4], ["Chef", "Dagger", 3], ["Chef", "Docker", 7], ["Chef", "ELFspy", 3], ["Chef", "GNU GCC", 4], ["Chef", "Godot", 3], ["Chef", "Google Test", 4], ["Chef", "Gradle", 3], ["Chef", "Homebrew", 6], ["Chef", "Kubernetes", 6], ["Chef", "LLVM's Clang", 2], ["Chef", "MSBuild", 3], ["Chef", "MSVC", 3], ["Chef", "Make", 3], ["Chef", "Maven (build tool)", 2], ["Chef", "Meson", 2], ["Chef", "Ninja", 3], ["Chef", "Nix", 3], ["Chef", "NuGet", 3], ["Chef", "Pacman", 3], ["Chef", "Pip", 3], ["Chef", "Podman", 3], ["Chef", "Pulumi", 3], ["Chef", "Puppet", 2], ["Chef", "QMake", 2], ["Chef", "SCons", 2], ["Chef", "Terraform", 6], ["Chef", "Unity 3D", 2], ["Chef", "Unreal Engine", 3], ["Chef", "Visual Studio Solution", 3], ["Chef", "Vite", 3], ["Chef", "Wasmer", 4], ["Chef", "Webpack", 3], ["Chef", "Yarn", 3], ["Chef", "bandit", 3], ["Chef", "build2", 3], ["Chef", "cppunit", 3], ["Chef", "doctest", 4], ["Chef", "lest", 3], ["Chef", "liblittletest", 3], ["Chef", "npm", 4], ["Chef", "pnpm", 5], ["Chef", "snitch", 2], ["Chef", "tunit", 2], ["Chocolatey", "APT", 33], ["Chocolatey", "Ansible", 25], ["Chocolatey", "Ant", 5], ["Chocolatey", "Boost.Test", 3], ["Chocolatey", "Bun", 27], ["Chocolatey", "CMake", 58], ["Chocolatey", "CUTE", 3], ["Chocolatey", "Cargo", 90], ["Chocolatey", "Catch2", 4], ["Chocolatey", "Chef", 4], ["Chocolatey", "Chocolatey", 146], ["Chocolatey", "Composer", 16], ["Chocolatey", "Dagger", 6], ["Chocolatey", "Docker", 161], ["Chocolatey", "ELFspy", 3], ["Chocolatey", "GNU GCC", 64], ["Chocolatey", "Godot", 32], ["Chocolatey", "Google Test", 9], ["Chocolatey", "Gradle", 50], ["Chocolatey", "Homebrew", 39], ["Chocolatey", "Kubernetes", 71], ["Chocolatey", "LLVM's Clang", 26], ["Chocolatey", "MSBuild", 12], ["Chocolatey", "MSVC", 15], ["Chocolatey", "Make", 53], ["Chocolatey", "Maven (build tool)", 30], ["Chocolatey", "Meson", 5], ["Chocolatey", "Ninja", 17], ["Chocolatey", "Nix", 29], ["Chocolatey", "NuGet", 36], ["Chocolatey", "Pacman", 50], ["Chocolatey", "Pip", 105], ["Chocolatey", "Podman", 18], ["Chocolatey", "Pulumi", 4], ["Chocolatey", "Puppet", 4], ["Chocolatey", "QMake", 4], ["Chocolatey", "SCons", 3], ["Chocolatey", "Terraform", 19], ["Chocolatey", "Unity 3D", 53], ["Chocolatey", "Unreal Engine", 47], ["Chocolatey", "Visual Studio Solution", 29], ["Chocolatey", "Vite", 94], ["Chocolatey", "Wasmer", 15], ["Chocolatey", "Webpack", 47], ["Chocolatey", "Yarn", 70], ["Chocolatey", "bandit", 4], ["Chocolatey", "build2", 5], ["Chocolatey", "cppunit", 3], ["Chocolatey", "doctest", 4], ["Chocolatey", "lest", 3], ["Chocolatey", "liblittletest", 3], ["Chocolatey", "npm", 151], ["Chocolatey", "pnpm", 48], ["Chocolatey", "snitch", 2], ["Chocolatey", "tunit", 3], ["Composer", "APT", 19], ["Composer", "Ansible", 12], ["Composer", "Ant", 5], ["Composer", "Boost.Test", 3], ["Composer", "Bun", 10], ["Composer", "CMake", 19], ["Composer", "CUTE", 3], ["Composer", "Cargo", 24], ["Composer", "Catch2", 3], ["Composer", "Chef", 5], ["Composer", "Chocolatey", 17], ["Composer", "Composer", 87], ["Composer", "Dagger", 4], ["Composer", "Docker", 81], ["Composer", "ELFspy", 4], ["Composer", "GNU GCC", 17], ["Composer", "Godot", 15], ["Composer", "Google Test", 10], ["Composer", "Gradle", 19], ["Composer", "Homebrew", 16], ["Composer", "Kubernetes", 28], ["Composer", "LLVM's Clang", 9], ["Composer", "MSBuild", 7], ["Composer", "MSVC", 6], ["Composer", "Make", 17], ["Composer", "Maven (build tool)", 19], ["Composer", "Meson", 2], ["Composer", "Ninja", 6], ["Composer", "Nix", 6], ["Composer", "NuGet", 16], ["Composer", "Pacman", 14], ["Composer", "Pip", 47], ["Composer", "Podman", 3], ["Composer", "Pulumi", 4], ["Composer", "Puppet", 3], ["Composer", "QMake", 3], ["Composer", "SCons", 2], ["Composer", "Terraform", 10], ["Composer", "Unity 3D", 19], ["Composer", "Unreal Engine", 21], ["Composer", "Visual Studio Solution", 19], ["Composer", "Vite", 59], ["Composer", "Wasmer", 5], ["Composer", "Webpack", 22], ["Composer", "Yarn", 35], ["Composer", "bandit", 4], ["Composer", "build2", 5], ["Composer", "cppunit", 3], ["Composer", "doctest", 3], ["Composer", "lest", 3], ["Composer", "liblittletest", 3], ["Composer", "npm", 83], ["Composer", "pnpm", 21], ["Composer", "snitch", 2], ["Composer", "tunit", 2], ["Dagger", "APT", 3], ["Dagger", "Ansible", 4], ["Dagger", "Ant", 3], ["Dagger", "Boost.Test", 3], ["Dagger", "Bun", 3], ["Dagger", "CMake", 3], ["Dagger", "CUTE", 4], ["Dagger", "Cargo", 5], ["Dagger", "Catch2", 3], ["Dagger", "Chef", 4], ["Dagger", "Chocolatey", 4], ["Dagger", "Composer", 3], ["Dagger", "Dagger", 8], ["Dagger", "Docker", 8], ["Dagger", "ELFspy", 3], ["Dagger", "GNU GCC", 5], ["Dagger", "Godot", 4], ["Dagger", "Google Test", 4], ["Dagger", "Gradle", 9], ["Dagger", "Homebrew", 4], ["Dagger", "Kubernetes", 5], ["Dagger", "LLVM's Clang", 2], ["Dagger", "MSBuild", 2], ["Dagger", "MSVC", 3], ["Dagger", "Make", 3], ["Dagger", "Maven (build tool)", 3], ["Dagger", "Meson", 2], ["Dagger", "Ninja", 4], ["Dagger", "Nix", 4], ["Dagger", "NuGet", 3], ["Dagger", "Pacman", 4], ["Dagger", "Pip", 5], ["Dagger", "Podman", 3], ["Dagger", "Pulumi", 3], ["Dagger", "Puppet", 2], ["Dagger", "QMake", 2], ["Dagger", "SCons", 2], ["Dagger", "Terraform", 4], ["Dagger", "Unity 3D", 4], ["Dagger", "Unreal Engine", 3], ["Dagger", "Visual Studio Solution", 3], ["Dagger", "Vite", 5], ["Dagger", "Wasmer", 4], ["Dagger", "Webpack", 3], ["Dagger", "Yarn", 4], ["Dagger", "bandit", 3], ["Dagger", "build2", 3], ["Dagger", "cppunit", 4], ["Dagger", "doctest", 3], ["Dagger", "lest", 4], ["Dagger", "liblittletest", 3], ["Dagger", "npm", 5], ["Dagger", "pnpm", 4], ["Dagger", "snitch", 2], ["Dagger", "tunit", 2], ["Docker", "APT", 100], ["Docker", "Ansible", 106], ["Docker", "Ant", 13], ["Docker", "Boost.Test", 5], ["Docker", "Bun", 61], ["Docker", "CMake", 137], ["Docker", "CUTE", 6], ["Docker", "Cargo", 230], ["Docker", "Catch2", 7], ["Docker", "Chef", 11], ["Docker", "Chocolatey", 84], ["Docker", "Composer", 41], ["Docker", "Dagger", 8], ["Docker", "Docker", 688], ["Docker", "ELFspy", 5], ["Docker", "GNU GCC", 170], ["Docker", "Godot", 69], ["Docker", "Google Test", 22], ["Docker", "Gradle", 115], ["Docker", "Homebrew", 133], ["Docker", "Kubernetes", 261], ["Docker", "LLVM's Clang", 101], ["Docker", "MSBuild", 23], ["Docker", "MSVC", 20], ["Docker", "Make", 154], ["Docker", "Maven (build tool)", 109], ["Docker", "Meson", 21], ["Docker", "Ninja", 45], ["Docker", "Nix", 65], ["Docker", "NuGet", 71], ["Docker", "Pacman", 135], ["Docker", "Pip", 290], ["Docker", "Podman", 61], ["Docker", "Pulumi", 12], ["Docker", "Puppet", 14], ["Docker", "QMake", 8], ["Docker", "SCons", 5], ["Docker", "Terraform", 83], ["Docker", "Unity 3D", 108], ["Docker", "Unreal Engine", 113], ["Docker", "Visual Studio Solution", 67], ["Docker", "Vite", 237], ["Docker", "Wasmer", 23], ["Docker", "Webpack", 93], ["Docker", "Yarn", 153], ["Docker", "bandit", 8], ["Docker", "build2", 7], ["Docker", "cppunit", 9], ["Docker", "doctest", 9], ["Docker", "lest", 4], ["Docker", "liblittletest", 4], ["Docker", "npm", 376], ["Docker", "pnpm", 122], ["Docker", "snitch", 3], ["Docker", "tunit", 3], ["ELFspy", "APT", 4], ["ELFspy", "Ansible", 3], ["ELFspy", "Ant", 3], ["ELFspy", "Boost.Test", 3], ["ELFspy", "Bun", 3], ["ELFspy", "CMake", 3], ["ELFspy", "CUTE", 3], ["ELFspy", "Cargo", 3], ["ELFspy", "Catch2", 3], ["ELFspy", "Chef", 3], ["ELFspy", "Chocolatey", 3], ["ELFspy", "Composer", 3], ["ELFspy", "Dagger", 3], ["ELFspy", "Docker", 3], ["ELFspy", "ELFspy", 3], ["ELFspy", "GNU GCC", 3], ["ELFspy", "Godot", 3], ["ELFspy", "Google Test", 4], ["ELFspy", "Gradle", 4], ["ELFspy", "Homebrew", 4], ["ELFspy", "Kubernetes", 4], ["ELFspy", "LLVM's Clang", 3], ["ELFspy", "MSBuild", 2], ["ELFspy", "MSVC", 3], ["ELFspy", "Make", 3], ["ELFspy", "Maven (build tool)", 3], ["ELFspy", "Meson", 2], ["ELFspy", "Ninja", 3], ["ELFspy", "Nix", 3], ["ELFspy", "NuGet", 3], ["ELFspy", "Pacman", 4], ["ELFspy", "Pip", 5], ["ELFspy", "Podman", 2], ["ELFspy", "Pulumi", 3], ["ELFspy", "Puppet", 2], ["ELFspy", "QMake", 2], ["ELFspy", "SCons", 2], ["ELFspy", "Terraform", 2], ["ELFspy", "Unity 3D", 3], ["ELFspy", "Unreal Engine", 3], ["ELFspy", "Visual Studio Solution", 4], ["ELFspy", "Vite", 3], ["ELFspy", "Wasmer", 3], ["ELFspy", "Webpack", 3], ["ELFspy", "Yarn", 3], ["ELFspy", "bandit", 3], ["ELFspy", "build2", 3], ["ELFspy", "cppunit", 3], ["ELFspy", "doctest", 3], ["ELFspy", "lest", 3], ["ELFspy", "liblittletest", 3], ["ELFspy", "npm", 4], ["ELFspy", "pnpm", 4], ["ELFspy", "snitch", 2], ["ELFspy", "tunit", 2], ["GNU GCC", "APT", 86], ["GNU GCC", "Ansible", 45], ["GNU GCC", "Ant", 10], ["GNU GCC", "Boost.Test", 6], ["GNU GCC", "Bun", 40], ["GNU GCC", "CMake", 209], ["GNU GCC", "CUTE", 4], ["GNU GCC", "Cargo", 204], ["GNU GCC", "Catch2", 7], ["GNU GCC", "Chef", 6], ["GNU GCC", "Chocolatey", 63], ["GNU GCC", "Composer", 15], ["GNU GCC", "Dagger", 6], ["GNU GCC", "Docker", 292], ["GNU GCC", "ELFspy", 3], ["GNU GCC", "GNU GCC", 537], ["GNU GCC", "Godot", 74], ["GNU GCC", "Google Test", 27], ["GNU GCC", "Gradle", 83], ["GNU GCC", "Homebrew", 65], ["GNU GCC", "Kubernetes", 116], ["GNU GCC", "LLVM's Clang", 175], ["GNU GCC", "MSBuild", 27], ["GNU GCC", "MSVC", 49], ["GNU GCC", "Make", 229], ["GNU GCC", "Maven (build tool)", 70], ["GNU GCC", "Meson", 28], ["GNU GCC", "Ninja", 48], ["GNU GCC", "Nix", 42], ["GNU GCC", "NuGet", 49], ["GNU GCC", "Pacman", 144], ["GNU GCC", "Pip", 255], ["GNU GCC", "Podman", 34], ["GNU GCC", "Pulumi", 5], ["GNU GCC", "Puppet", 8], ["GNU GCC", "QMake", 10], ["GNU GCC", "SCons", 5], ["GNU GCC", "Terraform", 26], ["GNU GCC", "Unity 3D", 108], ["GNU GCC", "Unreal Engine", 108], ["GNU GCC", "Visual Studio Solution", 77], ["GNU GCC", "Vite", 127], ["GNU GCC", "Wasmer", 22], ["GNU GCC", "Webpack", 56], ["GNU GCC", "Yarn", 65], ["GNU GCC", "bandit", 4], ["GNU GCC", "build2", 7], ["GNU GCC", "cppunit", 6], ["GNU GCC", "doctest", 7], ["GNU GCC", "lest", 3], ["GNU GCC", "liblittletest", 3], ["GNU GCC", "npm", 218], ["GNU GCC", "pnpm", 63], ["GNU GCC", "snitch", 2], ["GNU GCC", "tunit", 2], ["Godot", "APT", 13], ["Godot", "Ansible", 9], ["Godot", "Ant", 4], ["Godot", "Boost.Test", 3], ["Godot", "Bun", 19], ["Godot", "CMake", 38], ["Godot", "CUTE", 3], ["Godot", "Cargo", 52], ["Godot", "Catch2", 4], ["Godot", "Chef", 3], ["Godot", "Chocolatey", 17], ["Godot", "Composer", 8], ["Godot", "Dagger", 3], ["Godot", "Docker", 42], ["Godot", "ELFspy", 3], ["Godot", "GNU GCC", 36], ["Godot", "Godot", 125], ["Godot", "Google Test", 5], ["Godot", "Gradle", 20], ["Godot", "Homebrew", 10], ["Godot", "Kubernetes", 19], ["Godot", "LLVM's Clang", 25], ["Godot", "MSBuild", 8], ["Godot", "MSVC", 10], ["Godot", "Make", 32], ["Godot", "Maven (build tool)", 15], ["Godot", "Meson", 8], ["Godot", "Ninja", 12], ["Godot", "Nix", 14], ["Godot", "NuGet", 19], ["Godot", "Pacman", 35], ["Godot", "Pip", 46], ["Godot", "Podman", 11], ["Godot", "Pulumi", 4], ["Godot", "Puppet", 2], ["Godot", "QMake", 3], ["Godot", "SCons", 4], ["Godot", "Terraform", 6], ["Godot", "Unity 3D", 42], ["Godot", "Unreal Engine", 30], ["Godot", "Visual Studio Solution", 25], ["Godot", "Vite", 40], ["Godot", "Wasmer", 8], ["Godot", "Webpack", 14], ["Godot", "Yarn", 19], ["Godot", "bandit", 3], ["Godot", "build2", 5], ["Godot", "cppunit", 4], ["Godot", "doctest", 3], ["Godot", "lest", 3], ["Godot", "liblittletest", 3], ["Godot", "npm", 45], ["Godot", "pnpm", 20], ["Godot", "snitch", 2], ["Godot", "tunit", 2], ["Google Test", "APT", 9], ["Google Test", "Ansible", 7], ["Google Test", "Ant", 4], ["Google Test", "Boost.Test", 7], ["Google Test", "Bun", 6], ["Google Test", "CMake", 12], ["Google Test", "CUTE", 5], ["Google Test", "Cargo", 14], ["Google Test", "Catch2", 5], ["Google Test", "Chef", 5], ["Google Test", "Chocolatey", 6], ["Google Test", "Composer", 7], ["Google Test", "Dagger", 7], ["Google Test", "Docker", 18], ["Google Test", "ELFspy", 4], ["Google Test", "GNU GCC", 16], ["Google Test", "Godot", 6], ["Google Test", "Google Test", 34], ["Google Test", "Gradle", 8], ["Google Test", "Homebrew", 7], ["Google Test", "Kubernetes", 13], ["Google Test", "LLVM's Clang", 12], ["Google Test", "MSBuild", 4], ["Google Test", "MSVC", 6], ["Google Test", "Make", 13], ["Google Test", "Maven (build tool)", 4], ["Google Test", "Meson", 3], ["Google Test", "Ninja", 11], ["Google Test", "Nix", 7], ["Google Test", "NuGet", 5], ["Google Test", "Pacman", 11], ["Google Test", "Pip", 13], ["Google Test", "Podman", 4], ["Google Test", "Pulumi", 5], ["Google Test", "Puppet", 4], ["Google Test", "QMake", 3], ["Google Test", "SCons", 5], ["Google Test", "Terraform", 4], ["Google Test", "Unity 3D", 13], ["Google Test", "Unreal Engine", 12], ["Google Test", "Visual Studio Solution", 15], ["Google Test", "Vite", 7], ["Google Test", "Wasmer", 6], ["Google Test", "Webpack", 7], ["Google Test", "Yarn", 9], ["Google Test", "bandit", 4], ["Google Test", "build2", 5], ["Google Test", "cppunit", 5], ["Google Test", "doctest", 4], ["Google Test", "lest", 4], ["Google Test", "liblittletest", 4], ["Google Test", "npm", 19], ["Google Test", "pnpm", 8], ["Google Test", "snitch", 4], ["Google Test", "tunit", 3], ["Gradle", "APT", 36], ["Gradle", "Ansible", 26], ["Gradle", "Ant", 13], ["Gradle", "Boost.Test", 3], ["Gradle", "Bun", 28], ["Gradle", "CMake", 88], ["Gradle", "CUTE", 3], ["Gradle", "Cargo", 109], ["Gradle", "Catch2", 4], ["Gradle", "Chef", 3], ["Gradle", "Chocolatey", 41], ["Gradle", "Composer", 18], ["Gradle", "Dagger", 11], ["Gradle", "Docker", 185], ["Gradle", "ELFspy", 4], ["Gradle", "GNU GCC", 83], ["Gradle", "Godot", 50], ["Gradle", "Google Test", 15], ["Gradle", "Gradle", 231], ["Gradle", "Homebrew", 46], ["Gradle", "Kubernetes", 73], ["Gradle", "LLVM's Clang", 50], ["Gradle", "MSBuild", 14], ["Gradle", "MSVC", 21], ["Gradle", "Make", 76], ["Gradle", "Maven (build tool)", 90], ["Gradle", "Meson", 8], ["Gradle", "Ninja", 23], ["Gradle", "Nix", 32], ["Gradle", "NuGet", 43], ["Gradle", "Pacman", 70], ["Gradle", "Pip", 145], ["Gradle", "Podman", 18], ["Gradle", "Pulumi", 5], ["Gradle", "Puppet", 2], ["Gradle", "QMake", 5], ["Gradle", "SCons", 3], ["Gradle", "Terraform", 22], ["Gradle", "Unity 3D", 65], ["Gradle", "Unreal Engine", 60], ["Gradle", "Visual Studio Solution", 61], ["Gradle", "Vite", 95], ["Gradle", "Wasmer", 13], ["Gradle", "Webpack", 36], ["Gradle", "Yarn", 47], ["Gradle", "bandit", 4], ["Gradle", "build2", 7], ["Gradle", "cppunit", 5], ["Gradle", "doctest", 4], ["Gradle", "lest", 3], ["Gradle", "liblittletest", 3], ["Gradle", "npm", 174], ["Gradle", "pnpm", 52], ["Gradle", "snitch", 2], ["Gradle", "tunit", 2], ["Homebrew", "APT", 43], ["Homebrew", "Ansible", 27], ["Homebrew", "Ant", 2], ["Homebrew", "Boost.Test", 3], ["Homebrew", "Bun", 23], ["Homebrew", "CMake", 54], ["Homebrew", "CUTE", 2], ["Homebrew", "Cargo", 109], ["Homebrew", "Catch2", 3], ["Homebrew", "Chef", 7], ["Homebrew", "Chocolatey", 26], ["Homebrew", "Composer", 11], ["Homebrew", "Dagger", 4], ["Homebrew", "Docker", 208], ["Homebrew", "ELFspy", 3], ["Homebrew", "GNU GCC", 59], ["Homebrew", "Godot", 23], ["Homebrew", "Google Test", 8], ["Homebrew", "Gradle", 41], ["Homebrew", "Homebrew", 243], ["Homebrew", "Kubernetes", 91], ["Homebrew", "LLVM's Clang", 56], ["Homebrew", "MSBuild", 6], ["Homebrew", "MSVC", 7], ["Homebrew", "Make", 63], ["Homebrew", "Maven (build tool)", 33], ["Homebrew", "Meson", 9], ["Homebrew", "Ninja", 13], ["Homebrew", "Nix", 27], ["Homebrew", "NuGet", 14], ["Homebrew", "Pacman", 40], ["Homebrew", "Pip", 124], ["Homebrew", "Podman", 18], ["Homebrew", "Pulumi", 4], ["Homebrew", "Puppet", 5], ["Homebrew", "QMake", 3], ["Homebrew", "SCons", 2], ["Homebrew", "Terraform", 29], ["Homebrew", "Unity 3D", 46], ["Homebrew", "Unreal Engine", 47], ["Homebrew", "Visual Studio Solution", 17], ["Homebrew", "Vite", 103], ["Homebrew", "Wasmer", 11], ["Homebrew", "Webpack", 48], ["Homebrew", "Yarn", 55], ["Homebrew", "bandit", 2], ["Homebrew", "build2", 2], ["Homebrew", "cppunit", 3], ["Homebrew", "doctest", 7], ["Homebrew", "lest", 2], ["Homebrew", "liblittletest", 2], ["Homebrew", "npm", 152], ["Homebrew", "pnpm", 56], ["Homebrew", "snitch", 2], ["Homebrew", "tunit", 2], ["Kubernetes", "APT", 16], ["Kubernetes", "Ansible", 38], ["Kubernetes", "Ant", 4], ["Kubernetes", "Boost.Test", 6], ["Kubernetes", "Bun", 11], ["Kubernetes", "CMake", 26], ["Kubernetes", "CUTE", 4], ["Kubernetes", "Cargo", 31], ["Kubernetes", "Catch2", 5], ["Kubernetes", "Chef", 7], ["Kubernetes", "Chocolatey", 18], ["Kubernetes", "Composer", 10], ["Kubernetes", "Dagger", 7], ["Kubernetes", "Docker", 89], ["Kubernetes", "ELFspy", 5], ["Kubernetes", "GNU GCC", 30], ["Kubernetes", "Godot", 16], ["Kubernetes", "Google Test", 7], ["Kubernetes", "Gradle", 22], ["Kubernetes", "Homebrew", 31], ["Kubernetes", "Kubernetes", 104], ["Kubernetes", "LLVM's Clang", 12], ["Kubernetes", "MSBuild", 6], ["Kubernetes", "MSVC", 6], ["Kubernetes", "Make", 22], ["Kubernetes", "Maven (build tool)", 20], ["Kubernetes", "Meson", 6], ["Kubernetes", "Ninja", 9], ["Kubernetes", "Nix", 12], ["Kubernetes", "NuGet", 17], ["Kubernetes", "Pacman", 20], ["Kubernetes", "Pip", 44], ["Kubernetes", "Podman", 10], ["Kubernetes", "Pulumi", 10], ["Kubernetes", "Puppet", 7], ["Kubernetes", "QMake", 3], ["Kubernetes", "SCons", 4], ["Kubernetes", "Terraform", 32], ["Kubernetes", "Unity 3D", 19], ["Kubernetes", "Unreal Engine", 19], ["Kubernetes", "Visual Studio Solution", 18], ["Kubernetes", "Vite", 32], ["Kubernetes", "Wasmer", 7], ["Kubernetes", "Webpack", 16], ["Kubernetes", "Yarn", 27], ["Kubernetes", "bandit", 7], ["Kubernetes", "build2", 4], ["Kubernetes", "cppunit", 4], ["Kubernetes", "doctest", 4], ["Kubernetes", "lest", 4], ["Kubernetes", "liblittletest", 4], ["Kubernetes", "npm", 61], ["Kubernetes", "pnpm", 25], ["Kubernetes", "snitch", 3], ["Kubernetes", "tunit", 3], ["LLVM's Clang", "APT", 35], ["LLVM's Clang", "Ansible", 19], ["LLVM's Clang", "Ant", 3], ["LLVM's Clang", "Boost.Test", 5], ["LLVM's Clang", "Bun", 29], ["LLVM's Clang", "CMake", 103], ["LLVM's Clang", "CUTE", 3], ["LLVM's Clang", "Cargo", 130], ["LLVM's Clang", "Catch2", 6], ["LLVM's Clang", "Chef", 3], ["LLVM's Clang", "Chocolatey", 22], ["LLVM's Clang", "Composer", 7], ["LLVM's Clang", "Dagger", 4], ["LLVM's Clang", "Docker", 131], ["LLVM's Clang", "ELFspy", 3], ["LLVM's Clang", "GNU GCC", 144], ["LLVM's Clang", "Godot", 39], ["LLVM's Clang", "Google Test", 19], ["LLVM's Clang", "Gradle", 34], ["LLVM's Clang", "Homebrew", 49], ["LLVM's Clang", "Kubernetes", 40], ["LLVM's Clang", "LLVM's Clang", 204], ["LLVM's Clang", "MSBuild", 19], ["LLVM's Clang", "MSVC", 34], ["LLVM's Clang", "Make", 116], ["LLVM's Clang", "Maven (build tool)", 23], ["LLVM's Clang", "Meson", 25], ["LLVM's Clang", "Ninja", 39], ["LLVM's Clang", "Nix", 32], ["LLVM's Clang", "NuGet", 25], ["LLVM's Clang", "Pacman", 63], ["LLVM's Clang", "Pip", 102], ["LLVM's Clang", "Podman", 19], ["LLVM's Clang", "Pulumi", 3], ["LLVM's Clang", "Puppet", 2], ["LLVM's Clang", "QMake", 7], ["LLVM's Clang", "SCons", 3], ["LLVM's Clang", "Terraform", 11], ["LLVM's Clang", "Unity 3D", 45], ["LLVM's Clang", "Unreal Engine", 43], ["LLVM's Clang", "Visual Studio Solution", 23], ["LLVM's Clang", "Vite", 56], ["LLVM's Clang", "Wasmer", 18], ["LLVM's Clang", "Webpack", 29], ["LLVM's Clang", "Yarn", 28], ["LLVM's Clang", "bandit", 4], ["LLVM's Clang", "build2", 5], ["LLVM's Clang", "cppunit", 7], ["LLVM's Clang", "doctest", 7], ["LLVM's Clang", "lest", 3], ["LLVM's Clang", "liblittletest", 3], ["LLVM's Clang", "npm", 80], ["LLVM's Clang", "pnpm", 32], ["LLVM's Clang", "snitch", 2], ["LLVM's Clang", "tunit", 2], ["MSBuild", "APT", 13], ["MSBuild", "Ansible", 9], ["MSBuild", "Ant", 4], ["MSBuild", "Boost.Test", 6], ["MSBuild", "Bun", 8], ["MSBuild", "CMake", 33], ["MSBuild", "CUTE", 3], ["MSBuild", "Cargo", 26], ["MSBuild", "Catch2", 6], ["MSBuild", "Chef", 3], ["MSBuild", "Chocolatey", 15], ["MSBuild", "Composer", 7], ["MSBuild", "Dagger", 3], ["MSBuild", "Docker", 45], ["MSBuild", "ELFspy", 3], ["MSBuild", "GNU GCC", 39], ["MSBuild", "Godot", 18], ["MSBuild", "Google Test", 9], ["MSBuild", "Gradle", 15], ["MSBuild", "Homebrew", 8], ["MSBuild", "Kubernetes", 14], ["MSBuild", "LLVM's Clang", 33], ["MSBuild", "MSBuild", 64], ["MSBuild", "MSVC", 34], ["MSBuild", "Make", 20], ["MSBuild", "Maven (build tool)", 14], ["MSBuild", "Meson", 3], ["MSBuild", "Ninja", 15], ["MSBuild", "Nix", 7], ["MSBuild", "NuGet", 47], ["MSBuild", "Pacman", 13], ["MSBuild", "Pip", 31], ["MSBuild", "Podman", 8], ["MSBuild", "Pulumi", 5], ["MSBuild", "Puppet", 3], ["MSBuild", "QMake", 3], ["MSBuild", "SCons", 4], ["MSBuild", "Terraform", 6], ["MSBuild", "Unity 3D", 21], ["MSBuild", "Unreal Engine", 20], ["MSBuild", "Visual Studio Solution", 48], ["MSBuild", "Vite", 26], ["MSBuild", "Wasmer", 6], ["MSBuild", "Webpack", 15], ["MSBuild", "Yarn", 13], ["MSBuild", "bandit", 4], ["MSBuild", "build2", 4], ["MSBuild", "cppunit", 4], ["MSBuild", "doctest", 4], ["MSBuild", "lest", 3], ["MSBuild", "liblittletest", 3], ["MSBuild", "npm", 35], ["MSBuild", "pnpm", 19], ["MSBuild", "snitch", 3], ["MSBuild", "tunit", 3], ["MSVC", "APT", 19], ["MSVC", "Ansible", 5], ["MSVC", "Ant", 5], ["MSVC", "Boost.Test", 6], ["MSVC", "Bun", 10], ["MSVC", "CMake", 55], ["MSVC", "CUTE", 2], ["MSVC", "Cargo", 45], ["MSVC", "Catch2", 5], ["MSVC", "Chef", 2], ["MSVC", "Chocolatey", 15], ["MSVC", "Composer", 4], ["MSVC", "Dagger", 2], ["MSVC", "Docker", 54], ["MSVC", "ELFspy", 2], ["MSVC", "GNU GCC", 66], ["MSVC", "Godot", 24], ["MSVC", "Google Test", 11], ["MSVC", "Gradle", 17], ["MSVC", "Homebrew", 11], ["MSVC", "Kubernetes", 20], ["MSVC", "LLVM's Clang", 55], ["MSVC", "MSBuild", 32], ["MSVC", "MSVC", 77], ["MSVC", "Make", 41], ["MSVC", "Maven (build tool)", 16], ["MSVC", "Meson", 4], ["MSVC", "Ninja", 21], ["MSVC", "Nix", 9], ["MSVC", "NuGet", 26], ["MSVC", "Pacman", 16], ["MSVC", "Pip", 42], ["MSVC", "Podman", 8], ["MSVC", "Pulumi", 3], ["MSVC", "Puppet", 2], ["MSVC", "QMake", 4], ["MSVC", "SCons", 3], ["MSVC", "Terraform", 5], ["MSVC", "Unity 3D", 26], ["MSVC", "Unreal Engine", 31], ["MSVC", "Visual Studio Solution", 34], ["MSVC", "Vite", 30], ["MSVC", "Wasmer", 7], ["MSVC", "Webpack", 14], ["MSVC", "Yarn", 17], ["MSVC", "bandit", 2], ["MSVC", "build2", 3], ["MSVC", "cppunit", 2], ["MSVC", "doctest", 3], ["MSVC", "lest", 2], ["MSVC", "liblittletest", 2], ["MSVC", "npm", 41], ["MSVC", "pnpm", 19], ["MSVC", "snitch", 2], ["MSVC", "tunit", 2], ["Make", "APT", 77], ["Make", "Ansible", 43], ["Make", "Ant", 4], ["Make", "Boost.Test", 6], ["Make", "Bun", 34], ["Make", "CMake", 165], ["Make", "CUTE", 2], ["Make", "Cargo", 200], ["Make", "Catch2", 6], ["Make", "Chef", 2], ["Make", "Chocolatey", 47], ["Make", "Composer", 11], ["Make", "Dagger", 4], ["Make", "Docker", 230], ["Make", "ELFspy", 2], ["Make", "GNU GCC", 231], ["Make", "Godot", 58], ["Make", "Google Test", 19], ["Make", "Gradle", 70], ["Make", "Homebrew", 67], ["Make", "Kubernetes", 89], ["Make", "LLVM's Clang", 137], ["Make", "MSBuild", 17], ["Make", "MSVC", 33], ["Make", "Make", 326], ["Make", "Maven (build tool)", 57], ["Make", "Meson", 28], ["Make", "Ninja", 50], ["Make", "Nix", 47], ["Make", "NuGet", 30], ["Make", "Pacman", 121], ["Make", "Pip", 190], ["Make", "Podman", 30], ["Make", "Pulumi", 4], ["Make", "Puppet", 2], ["Make", "QMake", 9], ["Make", "SCons", 3], ["Make", "Terraform", 25], ["Make", "Unity 3D", 57], ["Make", "Unreal Engine", 59], ["Make", "Visual Studio Solution", 34], ["Make", "Vite", 95], ["Make", "Wasmer", 17], ["Make", "Webpack", 40], ["Make", "Yarn", 57], ["Make", "bandit", 4], ["Make", "build2", 5], ["Make", "cppunit", 9], ["Make", "doctest", 7], ["Make", "lest", 2], ["Make", "liblittletest", 2], ["Make", "npm", 148], ["Make", "pnpm", 61], ["Make", "snitch", 2], ["Make", "tunit", 2], ["Maven (build tool)", "APT", 32], ["Maven (build tool)", "Ansible", 29], ["Maven (build tool)", "Ant", 11], ["Maven (build tool)", "Boost.Test", 4], ["Maven (build tool)", "Bun", 18], ["Maven (build tool)", "CMake", 69], ["Maven (build tool)", "CUTE", 2], ["Maven (build tool)", "Cargo", 78], ["Maven (build tool)", "Catch2", 4], ["Maven (build tool)", "Chef", 3], ["Maven (build tool)", "Chocolatey", 26], ["Maven (build tool)", "Composer", 22], ["Maven (build tool)", "Dagger", 6], ["Maven (build tool)", "Docker", 190], ["Maven (build tool)", "ELFspy", 3], ["Maven (build tool)", "GNU GCC", 70], ["Maven (build tool)", "Godot", 27], ["Maven (build tool)", "Google Test", 11], ["Maven (build tool)", "Gradle", 137], ["Maven (build tool)", "Homebrew", 38], ["Maven (build tool)", "Kubernetes", 96], ["Maven (build tool)", "LLVM's Clang", 40], ["Maven (build tool)", "MSBuild", 18], ["Maven (build tool)", "MSVC", 13], ["Maven (build tool)", "Make", 68], ["Maven (build tool)", "Maven (build tool)", 213], ["Maven (build tool)", "Meson", 7], ["Maven (build tool)", "Ninja", 17], ["Maven (build tool)", "Nix", 15], ["Maven (build tool)", "NuGet", 34], ["Maven (build tool)", "Pacman", 48], ["Maven (build tool)", "Pip", 120], ["Maven (build tool)", "Podman", 15], ["Maven (build tool)", "Pulumi", 5], ["Maven (build tool)", "Puppet", 4], ["Maven (build tool)", "QMake", 6], ["Maven (build tool)", "SCons", 2], ["Maven (build tool)", "Terraform", 20], ["Maven (build tool)", "Unity 3D", 45], ["Maven (build tool)", "Unreal Engine", 49], ["Maven (build tool)", "Visual Studio Solution", 43], ["Maven (build tool)", "Vite", 81], ["Maven (build tool)", "Wasmer", 9], ["Maven (build tool)", "Webpack", 30], ["Maven (build tool)", "Yarn", 51], ["Maven (build tool)", "bandit", 3], ["Maven (build tool)", "build2", 4], ["Maven (build tool)", "cppunit", 4], ["Maven (build tool)", "doctest", 3], ["Maven (build tool)", "lest", 2], ["Maven (build tool)", "liblittletest", 2], ["Maven (build tool)", "npm", 170], ["Maven (build tool)", "pnpm", 39], ["Maven (build tool)", "snitch", 2], ["Maven (build tool)", "tunit", 2], ["Meson", "APT", 11], ["Meson", "Ansible", 7], ["Meson", "Ant", 2], ["Meson", "Boost.Test", 2], ["Meson", "Bun", 7], ["Meson", "CMake", 19], ["Meson", "CUTE", 2], ["Meson", "Cargo", 32], ["Meson", "Catch2", 2], ["Meson", "Chef", 2], ["Meson", "Chocolatey", 3], ["Meson", "Composer", 2], ["Meson", "Dagger", 2], ["Meson", "Docker", 19], ["Meson", "ELFspy", 2], ["Meson", "GNU GCC", 28], ["Meson", "Godot", 17], ["Meson", "Google Test", 4], ["Meson", "Gradle", 10], ["Meson", "Homebrew", 11], ["Meson", "Kubernetes", 9], ["Meson", "LLVM's Clang", 22], ["Meson", "MSBuild", 2], ["Meson", "MSVC", 3], ["Meson", "Make", 24], ["Meson", "Maven (build tool)", 4], ["Meson", "Meson", 30], ["Meson", "Ninja", 17], ["Meson", "Nix", 12], ["Meson", "NuGet", 8], ["Meson", "Pacman", 23], ["Meson", "Pip", 18], ["Meson", "Podman", 9], ["Meson", "Pulumi", 3], ["Meson", "Puppet", 3], ["Meson", "QMake", 4], ["Meson", "SCons", 3], ["Meson", "Terraform", 3], ["Meson", "Unity 3D", 7], ["Meson", "Unreal Engine", 10], ["Meson", "Visual Studio Solution", 4], ["Meson", "Vite", 11], ["Meson", "Wasmer", 4], ["Meson", "Webpack", 5], ["Meson", "Yarn", 9], ["Meson", "bandit", 2], ["Meson", "build2", 2], ["Meson", "cppunit", 4], ["Meson", "doctest", 3], ["Meson", "lest", 2], ["Meson", "liblittletest", 2], ["Meson", "npm", 12], ["Meson", "pnpm", 10], ["Meson", "snitch", 2], ["Meson", "tunit", 2], ["Ninja", "APT", 14], ["Ninja", "Ansible", 15], ["Ninja", "Ant", 5], ["Ninja", "Boost.Test", 4], ["Ninja", "Bun", 15], ["Ninja", "CMake", 52], ["Ninja", "CUTE", 4], ["Ninja", "Cargo", 50], ["Ninja", "Catch2", 7], ["Ninja", "Chef", 3], ["Ninja", "Chocolatey", 11], ["Ninja", "Composer", 4], ["Ninja", "Dagger", 6], ["Ninja", "Docker", 50], ["Ninja", "ELFspy", 3], ["Ninja", "GNU GCC", 52], ["Ninja", "Godot", 25], ["Ninja", "Google Test", 15], ["Ninja", "Gradle", 23], ["Ninja", "Homebrew", 16], ["Ninja", "Kubernetes", 24], ["Ninja", "LLVM's Clang", 49], ["Ninja", "MSBuild", 10], ["Ninja", "MSVC", 19], ["Ninja", "Make", 46], ["Ninja", "Maven (build tool)", 20], ["Ninja", "Meson", 16], ["Ninja", "Ninja", 70], ["Ninja", "Nix", 17], ["Ninja", "NuGet", 13], ["Ninja", "Pacman", 27], ["Ninja", "Pip", 35], ["Ninja", "Podman", 13], ["Ninja", "Pulumi", 3], ["Ninja", "Puppet", 2], ["Ninja", "QMake", 7], ["Ninja", "SCons", 3], ["Ninja", "Terraform", 6], ["Ninja", "Unity 3D", 17], ["Ninja", "Unreal Engine", 18], ["Ninja", "Visual Studio Solution", 20], ["Ninja", "Vite", 26], ["Ninja", "Wasmer", 11], ["Ninja", "Webpack", 14], ["Ninja", "Yarn", 20], ["Ninja", "bandit", 3], ["Ninja", "build2", 5], ["Ninja", "cppunit", 4], ["Ninja", "doctest", 5], ["Ninja", "lest", 3], ["Ninja", "liblittletest", 3], ["Ninja", "npm", 37], ["Ninja", "pnpm", 19], ["Ninja", "snitch", 2], ["Ninja", "tunit", 3], ["Nix", "APT", 10], ["Nix", "Ansible", 8], ["Nix", "Ant", 2], ["Nix", "Boost.Test", 2], ["Nix", "Bun", 8], ["Nix", "CMake", 18], ["Nix", "CUTE", 2], ["Nix", "Cargo", 43], ["Nix", "Catch2", 2], ["Nix", "Chef", 2], ["Nix", "Chocolatey", 7], ["Nix", "Composer", 2], ["Nix", "Dagger", 3], ["Nix", "Docker", 37], ["Nix", "ELFspy", 2], ["Nix", "GNU GCC", 24], ["Nix", "Godot", 10], ["Nix", "Google Test", 5], ["Nix", "Gradle", 10], ["Nix", "Homebrew", 11], ["Nix", "Kubernetes", 16], ["Nix", "LLVM's Clang", 21], ["Nix", "MSBuild", 2], ["Nix", "MSVC", 4], ["Nix", "Make", 26], ["Nix", "Maven (build tool)", 8], ["Nix", "Meson", 5], ["Nix", "Ninja", 7], ["Nix", "Nix", 54], ["Nix", "NuGet", 3], ["Nix", "Pacman", 26], ["Nix", "Pip", 25], ["Nix", "Podman", 11], ["Nix", "Pulumi", 3], ["Nix", "Puppet", 2], ["Nix", "QMake", 2], ["Nix", "SCons", 2], ["Nix", "Terraform", 7], ["Nix", "Unity 3D", 13], ["Nix", "Unreal Engine", 12], ["Nix", "Visual Studio Solution", 3], ["Nix", "Vite", 19], ["Nix", "Wasmer", 10], ["Nix", "Webpack", 8], ["Nix", "Yarn", 15], ["Nix", "bandit", 2], ["Nix", "build2", 2], ["Nix", "cppunit", 2], ["Nix", "doctest", 2], ["Nix", "lest", 2], ["Nix", "liblittletest", 2], ["Nix", "npm", 25], ["Nix", "pnpm", 16], ["Nix", "snitch", 2], ["Nix", "tunit", 2], ["NuGet", "APT", 24], ["NuGet", "Ansible", 18], ["NuGet", "Ant", 7], ["NuGet", "Boost.Test", 6], ["NuGet", "Bun", 17], ["NuGet", "CMake", 47], ["NuGet", "CUTE", 4], ["NuGet", "Cargo", 59], ["NuGet", "Catch2", 4], ["NuGet", "Chef", 5], ["NuGet", "Chocolatey", 36], ["NuGet", "Composer", 14], ["NuGet", "Dagger", 6], ["NuGet", "Docker", 129], ["NuGet", "ELFspy", 4], ["NuGet", "GNU GCC", 53], ["NuGet", "Godot", 34], ["NuGet", "Google Test", 11], ["NuGet", "Gradle", 42], ["NuGet", "Homebrew", 23], ["NuGet", "Kubernetes", 43], ["NuGet", "LLVM's Clang", 33], ["NuGet", "MSBuild", 40], ["NuGet", "MSVC", 23], ["NuGet", "Make", 33], ["NuGet", "Maven (build tool)", 33], ["NuGet", "Meson", 4], ["NuGet", "Ninja", 12], ["NuGet", "Nix", 12], ["NuGet", "NuGet", 161], ["NuGet", "Pacman", 31], ["NuGet", "Pip", 83], ["NuGet", "Podman", 9], ["NuGet", "Pulumi", 6], ["NuGet", "Puppet", 4], ["NuGet", "QMake", 4], ["NuGet", "SCons", 5], ["NuGet", "Terraform", 16], ["NuGet", "Unity 3D", 56], ["NuGet", "Unreal Engine", 41], ["NuGet", "Visual Studio Solution", 89], ["NuGet", "Vite", 72], ["NuGet", "Wasmer", 10], ["NuGet", "Webpack", 38], ["NuGet", "Yarn", 36], ["NuGet", "bandit", 6], ["NuGet", "build2", 5], ["NuGet", "cppunit", 6], ["NuGet", "doctest", 5], ["NuGet", "lest", 4], ["NuGet", "liblittletest", 4], ["NuGet", "npm", 114], ["NuGet", "pnpm", 35], ["NuGet", "snitch", 3], ["NuGet", "tunit", 3], ["Pacman", "APT", 61], ["Pacman", "Ansible", 36], ["Pacman", "Ant", 6], ["Pacman", "Boost.Test", 3], ["Pacman", "Bun", 31], ["Pacman", "CMake", 91], ["Pacman", "CUTE", 3], ["Pacman", "Cargo", 172], ["Pacman", "Catch2", 4], ["Pacman", "Chef", 4], ["Pacman", "Chocolatey", 33], ["Pacman", "Composer", 14], ["Pacman", "Dagger", 6], ["Pacman", "Docker", 190], ["Pacman", "ELFspy", 3], ["Pacman", "GNU GCC", 142], ["Pacman", "Godot", 50], ["Pacman", "Google Test", 15], ["Pacman", "Gradle", 48], ["Pacman", "Homebrew", 39], ["Pacman", "Kubernetes", 76], ["Pacman", "LLVM's Clang", 76], ["Pacman", "MSBuild", 10], ["Pacman", "MSVC", 15], ["Pacman", "Make", 120], ["Pacman", "Maven (build tool)", 36], ["Pacman", "Meson", 21], ["Pacman", "Ninja", 28], ["Pacman", "Nix", 52], ["Pacman", "NuGet", 19], ["Pacman", "Pacman", 285], ["Pacman", "Pip", 169], ["Pacman", "Podman", 31], ["Pacman", "Pulumi", 3], ["Pacman", "Puppet", 3], ["Pacman", "QMake", 5], ["Pacman", "SCons", 3], ["Pacman", "Terraform", 25], ["Pacman", "Unity 3D", 46], ["Pacman", "Unreal Engine", 50], ["Pacman", "Visual Studio Solution", 32], ["Pacman", "Vite", 101], ["Pacman", "Wasmer", 17], ["Pacman", "Webpack", 28], ["Pacman", "Yarn", 58], ["Pacman", "bandit", 3], ["Pacman", "build2", 4], ["Pacman", "cppunit", 7], ["Pacman", "doctest", 5], ["Pacman", "lest", 3], ["Pacman", "liblittletest", 3], ["Pacman", "npm", 136], ["Pacman", "pnpm", 58], ["Pacman", "snitch", 2], ["Pacman", "tunit", 2], ["Pip", "APT", 137], ["Pip", "Ansible", 86], ["Pip", "Ant", 12], ["Pip", "Boost.Test", 4], ["Pip", "Bun", 60], ["Pip", "CMake", 193], ["Pip", "CUTE", 3], ["Pip", "Cargo", 286], ["Pip", "Catch2", 7], ["Pip", "Chef", 11], ["Pip", "Chocolatey", 99], ["Pip", "Composer", 39], ["Pip", "Dagger", 9], ["Pip", "Docker", 583], ["Pip", "ELFspy", 4], ["Pip", "GNU GCC", 272], ["Pip", "Godot", 100], ["Pip", "Google Test", 36], ["Pip", "Gradle", 142], ["Pip", "Homebrew", 145], ["Pip", "Kubernetes", 246], ["Pip", "LLVM's Clang", 138], ["Pip", "MSBuild", 34], ["Pip", "MSVC", 39], ["Pip", "Make", 214], ["Pip", "Maven (build tool)", 123], ["Pip", "Meson", 25], ["Pip", "Ninja", 49], ["Pip", "Nix", 66], ["Pip", "NuGet", 83], ["Pip", "Pacman", 204], ["Pip", "Pip", 830], ["Pip", "Podman", 50], ["Pip", "Pulumi", 7], ["Pip", "Puppet", 17], ["Pip", "QMake", 10], ["Pip", "SCons", 4], ["Pip", "Terraform", 71], ["Pip", "Unity 3D", 186], ["Pip", "Unreal Engine", 166], ["Pip", "Visual Studio Solution", 134], ["Pip", "Vite", 280], ["Pip", "Wasmer", 28], ["Pip", "Webpack", 128], ["Pip", "Yarn", 175], ["Pip", "bandit", 6], ["Pip", "build2", 7], ["Pip", "cppunit", 9], ["Pip", "doctest", 11], ["Pip", "lest", 3], ["Pip", "liblittletest", 3], ["Pip", "npm", 560], ["Pip", "pnpm", 123], ["Pip", "snitch", 2], ["Pip", "tunit", 5], ["Podman", "APT", 12], ["Podman", "Ansible", 13], ["Podman", "Ant", 3], ["Podman", "Boost.Test", 2], ["Podman", "Bun", 5], ["Podman", "CMake", 12], ["Podman", "CUTE", 2], ["Podman", "Cargo", 25], ["Podman", "Catch2", 2], ["Podman", "Chef", 2], ["Podman", "Chocolatey", 6], ["Podman", "Composer", 3], ["Podman", "Dagger", 2], ["Podman", "Docker", 33], ["Podman", "ELFspy", 2], ["Podman", "GNU GCC", 17], ["Podman", "Godot", 7], ["Podman", "Google Test", 2], ["Podman", "Gradle", 9], ["Podman", "Homebrew", 9], ["Podman", "Kubernetes", 15], ["Podman", "LLVM's Clang", 14], ["Podman", "MSBuild", 3], ["Podman", "MSVC", 5], ["Podman", "Make", 12], ["Podman", "Maven (build tool)", 4], ["Podman", "Meson", 6], ["Podman", "Ninja", 4], ["Podman", "Nix", 11], ["Podman", "NuGet", 6], ["Podman", "Pacman", 17], ["Podman", "Pip", 20], ["Podman", "Podman", 41], ["Podman", "Pulumi", 6], ["Podman", "Puppet", 2], ["Podman", "QMake", 3], ["Podman", "SCons", 2], ["Podman", "Terraform", 12], ["Podman", "Unity 3D", 5], ["Podman", "Unreal Engine", 6], ["Podman", "Visual Studio Solution", 6], ["Podman", "Vite", 15], ["Podman", "Wasmer", 4], ["Podman", "Webpack", 6], ["Podman", "Yarn", 5], ["Podman", "bandit", 2], ["Podman", "build2", 2], ["Podman", "cppunit", 2], ["Podman", "doctest", 2], ["Podman", "lest", 2], ["Podman", "liblittletest", 2], ["Podman", "npm", 15], ["Podman", "pnpm", 13], ["Podman", "snitch", 2], ["Podman", "tunit", 2], ["Pulumi", "APT", 2], ["Pulumi", "Ansible", 3], ["Pulumi", "Ant", 2], ["Pulumi", "Boost.Test", 2], ["Pulumi", "Bun", 2], ["Pulumi", "CMake", 2], ["Pulumi", "CUTE", 2], ["Pulumi", "Cargo", 2], ["Pulumi", "Catch2", 2], ["Pulumi", "Chef", 2], ["Pulumi", "Chocolatey", 2], ["Pulumi", "Composer", 2], ["Pulumi", "Dagger", 2], ["Pulumi", "Docker", 4], ["Pulumi", "ELFspy", 2], ["Pulumi", "GNU GCC", 2], ["Pulumi", "Godot", 3], ["Pulumi", "Google Test", 2], ["Pulumi", "Gradle", 2], ["Pulumi", "Homebrew", 3], ["Pulumi", "Kubernetes", 3], ["Pulumi", "LLVM's Clang", 2], ["Pulumi", "MSBuild", 2], ["Pulumi", "MSVC", 2], ["Pulumi", "Make", 2], ["Pulumi", "Maven (build tool)", 2], ["Pulumi", "Meson", 2], ["Pulumi", "Ninja", 2], ["Pulumi", "Nix", 2], ["Pulumi", "NuGet", 2], ["Pulumi", "Pacman", 2], ["Pulumi", "Pip", 2], ["Pulumi", "Podman", 4], ["Pulumi", "Pulumi", 3], ["Pulumi", "Puppet", 2], ["Pulumi", "QMake", 2], ["Pulumi", "SCons", 2], ["Pulumi", "Terraform", 3], ["Pulumi", "Unity 3D", 2], ["Pulumi", "Unreal Engine", 3], ["Pulumi", "Visual Studio Solution", 3], ["Pulumi", "Vite", 3], ["Pulumi", "Wasmer", 2], ["Pulumi", "Webpack", 2], ["Pulumi", "Yarn", 3], ["Pulumi", "bandit", 2], ["Pulumi", "build2", 2], ["Pulumi", "cppunit", 2], ["Pulumi", "doctest", 2], ["Pulumi", "lest", 2], ["Pulumi", "liblittletest", 2], ["Pulumi", "npm", 2], ["Pulumi", "pnpm", 3], ["Pulumi", "snitch", 2], ["Pulumi", "tunit", 2], ["Puppet", "APT", 3], ["Puppet", "Ansible", 6], ["Puppet", "Ant", 2], ["Puppet", "Boost.Test", 2], ["Puppet", "Bun", 3], ["Puppet", "CMake", 4], ["Puppet", "CUTE", 2], ["Puppet", "Cargo", 5], ["Puppet", "Catch2", 2], ["Puppet", "Chef", 3], ["Puppet", "Chocolatey", 2], ["Puppet", "Composer", 2], ["Puppet", "Dagger", 2], ["Puppet", "Docker", 6], ["Puppet", "ELFspy", 2], ["Puppet", "GNU GCC", 4], ["Puppet", "Godot", 2], ["Puppet", "Google Test", 2], ["Puppet", "Gradle", 2], ["Puppet", "Homebrew", 4], ["Puppet", "Kubernetes", 6], ["Puppet", "LLVM's Clang", 3], ["Puppet", "MSBuild", 2], ["Puppet", "MSVC", 2], ["Puppet", "Make", 4], ["Puppet", "Maven (build tool)", 2], ["Puppet", "Meson", 2], ["Puppet", "Ninja", 2], ["Puppet", "Nix", 2], ["Puppet", "NuGet", 2], ["Puppet", "Pacman", 3], ["Puppet", "Pip", 5], ["Puppet", "Podman", 5], ["Puppet", "Pulumi", 3], ["Puppet", "Puppet", 6], ["Puppet", "QMake", 2], ["Puppet", "SCons", 2], ["Puppet", "Terraform", 6], ["Puppet", "Unity 3D", 3], ["Puppet", "Unreal Engine", 3], ["Puppet", "Visual Studio Solution", 2], ["Puppet", "Vite", 3], ["Puppet", "Wasmer", 4], ["Puppet", "Webpack", 3], ["Puppet", "Yarn", 3], ["Puppet", "bandit", 2], ["Puppet", "build2", 2], ["Puppet", "cppunit", 2], ["Puppet", "doctest", 3], ["Puppet", "lest", 2], ["Puppet", "liblittletest", 2], ["Puppet", "npm", 6], ["Puppet", "pnpm", 3], ["Puppet", "snitch", 2], ["Puppet", "tunit", 2], ["QMake", "APT", 7], ["QMake", "Ansible", 2], ["QMake", "Ant", 2], ["QMake", "Boost.Test", 2], ["QMake", "Bun", 3], ["QMake", "CMake", 19], ["QMake", "CUTE", 2], ["QMake", "Cargo", 7], ["QMake", "Catch2", 4], ["QMake", "Chef", 2], ["QMake", "Chocolatey", 5], ["QMake", "Composer", 3], ["QMake", "Dagger", 2], ["QMake", "Docker", 20], ["QMake", "ELFspy", 2], ["QMake", "GNU GCC", 20], ["QMake", "Godot", 6], ["QMake", "Google Test", 3], ["QMake", "Gradle", 5], ["QMake", "Homebrew", 4], ["QMake", "Kubernetes", 6], ["QMake", "LLVM's Clang", 10], ["QMake", "MSBuild", 4], ["QMake", "MSVC", 6], ["QMake", "Make", 18], ["QMake", "Maven (build tool)", 5], ["QMake", "Meson", 3], ["QMake", "Ninja", 9], ["QMake", "Nix", 2], ["QMake", "NuGet", 5], ["QMake", "Pacman", 9], ["QMake", "Pip", 16], ["QMake", "Podman", 3], ["QMake", "Pulumi", 3], ["QMake", "Puppet", 2], ["QMake", "QMake", 12], ["QMake", "SCons", 2], ["QMake", "Terraform", 2], ["QMake", "Unity 3D", 5], ["QMake", "Unreal Engine", 6], ["QMake", "Visual Studio Solution", 5], ["QMake", "Vite", 5], ["QMake", "Wasmer", 4], ["QMake", "Webpack", 6], ["QMake", "Yarn", 4], ["QMake", "bandit", 2], ["QMake", "build2", 3], ["QMake", "cppunit", 2], ["QMake", "doctest", 3], ["QMake", "lest", 2], ["QMake", "liblittletest", 2], ["QMake", "npm", 16], ["QMake", "pnpm", 5], ["QMake", "snitch", 2], ["QMake", "tunit", 2], ["SCons", "APT", 3], ["SCons", "Ansible", 3], ["SCons", "Ant", 2], ["SCons", "Boost.Test", 2], ["SCons", "Bun", 2], ["SCons", "CMake", 4], ["SCons", "CUTE", 2], ["SCons", "Cargo", 6], ["SCons", "Catch2", 2], ["SCons", "Chef", 2], ["SCons", "Chocolatey", 2], ["SCons", "Composer", 2], ["SCons", "Dagger", 2], ["SCons", "Docker", 3], ["SCons", "ELFspy", 2], ["SCons", "GNU GCC", 5], ["SCons", "Godot", 6], ["SCons", "Google Test", 3], ["SCons", "Gradle", 2], ["SCons", "Homebrew", 3], ["SCons", "Kubernetes", 3], ["SCons", "LLVM's Clang", 4], ["SCons", "MSBuild", 3], ["SCons", "MSVC", 2], ["SCons", "Make", 3], ["SCons", "Maven (build tool)", 2], ["SCons", "Meson", 2], ["SCons", "Ninja", 3], ["SCons", "Nix", 4], ["SCons", "NuGet", 4], ["SCons", "Pacman", 3], ["SCons", "Pip", 4], ["SCons", "Podman", 3], ["SCons", "Pulumi", 3], ["SCons", "Puppet", 2], ["SCons", "QMake", 2], ["SCons", "SCons", 5], ["SCons", "Terraform", 2], ["SCons", "Unity 3D", 2], ["SCons", "Unreal Engine", 4], ["SCons", "Visual Studio Solution", 4], ["SCons", "Vite", 3], ["SCons", "Wasmer", 3], ["SCons", "Webpack", 3], ["SCons", "Yarn", 3], ["SCons", "bandit", 2], ["SCons", "build2", 2], ["SCons", "cppunit", 2], ["SCons", "doctest", 2], ["SCons", "lest", 2], ["SCons", "liblittletest", 2], ["SCons", "npm", 4], ["SCons", "pnpm", 4], ["SCons", "snitch", 2], ["SCons", "tunit", 2], ["Terraform", "APT", 11], ["Terraform", "Ansible", 18], ["Terraform", "Ant", 4], ["Terraform", "Boost.Test", 2], ["Terraform", "Bun", 3], ["Terraform", "CMake", 4], ["Terraform", "CUTE", 2], ["Terraform", "Cargo", 16], ["Terraform", "Catch2", 2], ["Terraform", "Chef", 5], ["Terraform", "Chocolatey", 5], ["Terraform", "Composer", 3], ["Terraform", "Dagger", 3], ["Terraform", "Docker", 33], ["Terraform", "ELFspy", 2], ["Terraform", "GNU GCC", 9], ["Terraform", "Godot", 3], ["Terraform", "Google Test", 4], ["Terraform", "Gradle", 13], ["Terraform", "Homebrew", 13], ["Terraform", "Kubernetes", 29], ["Terraform", "LLVM's Clang", 3], ["Terraform", "MSBuild", 2], ["Terraform", "MSVC", 3], ["Terraform", "Make", 10], ["Terraform", "Maven (build tool)", 9], ["Terraform", "Meson", 2], ["Terraform", "Ninja", 2], ["Terraform", "Nix", 6], ["Terraform", "NuGet", 2], ["Terraform", "Pacman", 7], ["Terraform", "Pip", 15], ["Terraform", "Podman", 9], ["Terraform", "Pulumi", 7], ["Terraform", "Puppet", 5], ["Terraform", "QMake", 2], ["Terraform", "SCons", 2], ["Terraform", "Terraform", 37], ["Terraform", "Unity 3D", 3], ["Terraform", "Unreal Engine", 5], ["Terraform", "Visual Studio Solution", 5], ["Terraform", "Vite", 9], ["Terraform", "Wasmer", 5], ["Terraform", "Webpack", 6], ["Terraform", "Yarn", 8], ["Terraform", "bandit", 3], ["Terraform", "build2", 3], ["Terraform", "cppunit", 2], ["Terraform", "doctest", 2], ["Terraform", "lest", 2], ["Terraform", "liblittletest", 2], ["Terraform", "npm", 22], ["Terraform", "pnpm", 6], ["Terraform", "snitch", 2], ["Terraform", "tunit", 2], ["Unity 3D", "APT", 27], ["Unity 3D", "Ansible", 15], ["Unity 3D", "Ant", 8], ["Unity 3D", "Boost.Test", 4], ["Unity 3D", "Bun", 21], ["Unity 3D", "CMake", 70], ["Unity 3D", "CUTE", 4], ["Unity 3D", "Cargo", 79], ["Unity 3D", "Catch2", 6], ["Unity 3D", "Chef", 4], ["Unity 3D", "Chocolatey", 34], ["Unity 3D", "Composer", 13], ["Unity 3D", "Dagger", 4], ["Unity 3D", "Docker", 154], ["Unity 3D", "ELFspy", 3], ["Unity 3D", "GNU GCC", 87], ["Unity 3D", "Godot", 79], ["Unity 3D", "Google Test", 23], ["Unity 3D", "Gradle", 56], ["Unity 3D", "Homebrew", 34], ["Unity 3D", "Kubernetes", 62], ["Unity 3D", "LLVM's Clang", 39], ["Unity 3D", "MSBuild", 22], ["Unity 3D", "MSVC", 27], ["Unity 3D", "Make", 52], ["Unity 3D", "Maven (build tool)", 44], ["Unity 3D", "Meson", 6], ["Unity 3D", "Ninja", 20], ["Unity 3D", "Nix", 20], ["Unity 3D", "NuGet", 52], ["Unity 3D", "Pacman", 50], ["Unity 3D", "Pip", 126], ["Unity 3D", "Podman", 12], ["Unity 3D", "Pulumi", 4], ["Unity 3D", "Puppet", 5], ["Unity 3D", "QMake", 5], ["Unity 3D", "SCons", 3], ["Unity 3D", "Terraform", 14], ["Unity 3D", "Unity 3D", 256], ["Unity 3D", "Unreal Engine", 161], ["Unity 3D", "Visual Studio Solution", 102], ["Unity 3D", "Vite", 86], ["Unity 3D", "Wasmer", 10], ["Unity 3D", "Webpack", 39], ["Unity 3D", "Yarn", 49], ["Unity 3D", "bandit", 4], ["Unity 3D", "build2", 5], ["Unity 3D", "cppunit", 7], ["Unity 3D", "doctest", 5], ["Unity 3D", "lest", 3], ["Unity 3D", "liblittletest", 3], ["Unity 3D", "npm", 165], ["Unity 3D", "pnpm", 45], ["Unity 3D", "snitch", 4], ["Unity 3D", "tunit", 4], ["Unreal Engine", "APT", 10], ["Unreal Engine", "Ansible", 10], ["Unreal Engine", "Ant", 6], ["Unreal Engine", "Boost.Test", 3], ["Unreal Engine", "Bun", 6], ["Unreal Engine", "CMake", 33], ["Unreal Engine", "CUTE", 4], ["Unreal Engine", "Cargo", 33], ["Unreal Engine", "Catch2", 3], ["Unreal Engine", "Chef", 3], ["Unreal Engine", "Chocolatey", 12], ["Unreal Engine", "Composer", 7], ["Unreal Engine", "Dagger", 4], ["Unreal Engine", "Docker", 62], ["Unreal Engine", "ELFspy", 3], ["Unreal Engine", "GNU GCC", 40], ["Unreal Engine", "Godot", 29], ["Unreal Engine", "Google Test", 12], ["Unreal Engine", "Gradle", 20], ["Unreal Engine", "Homebrew", 21], ["Unreal Engine", "Kubernetes", 28], ["Unreal Engine", "LLVM's Clang", 26], ["Unreal Engine", "MSBuild", 11], ["Unreal Engine", "MSVC", 15], ["Unreal Engine", "Make", 23], ["Unreal Engine", "Maven (build tool)", 14], ["Unreal Engine", "Meson", 6], ["Unreal Engine", "Ninja", 11], ["Unreal Engine", "Nix", 9], ["Unreal Engine", "NuGet", 23], ["Unreal Engine", "Pacman", 26], ["Unreal Engine", "Pip", 54], ["Unreal Engine", "Podman", 8], ["Unreal Engine", "Pulumi", 4], ["Unreal Engine", "Puppet", 4], ["Unreal Engine", "QMake", 3], ["Unreal Engine", "SCons", 3], ["Unreal Engine", "Terraform", 8], ["Unreal Engine", "Unity 3D", 81], ["Unreal Engine", "Unreal Engine", 122], ["Unreal Engine", "Visual Studio Solution", 49], ["Unreal Engine", "Vite", 38], ["Unreal Engine", "Wasmer", 5], ["Unreal Engine", "Webpack", 21], ["Unreal Engine", "Yarn", 29], ["Unreal Engine", "bandit", 4], ["Unreal Engine", "build2", 3], ["Unreal Engine", "cppunit", 3], ["Unreal Engine", "doctest", 3], ["Unreal Engine", "lest", 3], ["Unreal Engine", "liblittletest", 3], ["Unreal Engine", "npm", 71], ["Unreal Engine", "pnpm", 22], ["Unreal Engine", "snitch", 3], ["Unreal Engine", "tunit", 3], ["Visual Studio Solution", "APT", 29], ["Visual Studio Solution", "Ansible", 21], ["Visual Studio Solution", "Ant", 12], ["Visual Studio Solution", "Boost.Test", 9], ["Visual Studio Solution", "Bun", 11], ["Visual Studio Solution", "CMake", 66], ["Visual Studio Solution", "CUTE", 6], ["Visual Studio Solution", "Cargo", 53], ["Visual Studio Solution", "Catch2", 6], ["Visual Studio Solution", "Chef", 6], ["Visual Studio Solution", "Chocolatey", 24], ["Visual Studio Solution", "Composer", 15], ["Visual Studio Solution", "Dagger", 7], ["Visual Studio Solution", "Docker", 129], ["Visual Studio Solution", "ELFspy", 5], ["Visual Studio Solution", "GNU GCC", 80], ["Visual Studio Solution", "Godot", 50], ["Visual Studio Solution", "Google Test", 34], ["Visual Studio Solution", "Gradle", 49], ["Visual Studio Solution", "Homebrew", 33], ["Visual Studio Solution", "Kubernetes", 47], ["Visual Studio Solution", "LLVM's Clang", 43], ["Visual Studio Solution", "MSBuild", 51], ["Visual Studio Solution", "MSVC", 39], ["Visual Studio Solution", "Make", 38], ["Visual Studio Solution", "Maven (build tool)", 40], ["Visual Studio Solution", "Meson", 7], ["Visual Studio Solution", "Ninja", 20], ["Visual Studio Solution", "Nix", 11], ["Visual Studio Solution", "NuGet", 94], ["Visual Studio Solution", "Pacman", 40], ["Visual Studio Solution", "Pip", 115], ["Visual Studio Solution", "Podman", 14], ["Visual Studio Solution", "Pulumi", 7], ["Visual Studio Solution", "Puppet", 5], ["Visual Studio Solution", "QMake", 6], ["Visual Studio Solution", "SCons", 6], ["Visual Studio Solution", "Terraform", 20], ["Visual Studio Solution", "Unity 3D", 113], ["Visual Studio Solution", "Unreal Engine", 98], ["Visual Studio Solution", "Visual Studio Solution", 357], ["Visual Studio Solution", "Vite", 57], ["Visual Studio Solution", "Wasmer", 12], ["Visual Studio Solution", "Webpack", 35], ["Visual Studio Solution", "Yarn", 35], ["Visual Studio Solution", "bandit", 6], ["Visual Studio Solution", "build2", 7], ["Visual Studio Solution", "cppunit", 7], ["Visual Studio Solution", "doctest", 8], ["Visual Studio Solution", "lest", 5], ["Visual Studio Solution", "liblittletest", 6], ["Visual Studio Solution", "npm", 133], ["Visual Studio Solution", "pnpm", 24], ["Visual Studio Solution", "snitch", 4], ["Visual Studio Solution", "tunit", 4], ["Vite", "APT", 44], ["Vite", "Ansible", 40], ["Vite", "Ant", 8], ["Vite", "Boost.Test", 4], ["Vite", "Bun", 93], ["Vite", "CMake", 73], ["Vite", "CUTE", 3], ["Vite", "Cargo", 176], ["Vite", "Catch2", 3], ["Vite", "Chef", 5], ["Vite", "Chocolatey", 49], ["Vite", "Composer", 42], ["Vite", "Dagger", 6], ["Vite", "Docker", 321], ["Vite", "ELFspy", 4], ["Vite", "GNU GCC", 95], ["Vite", "Godot", 72], ["Vite", "Google Test", 9], ["Vite", "Gradle", 65], ["Vite", "Homebrew", 82], ["Vite", "Kubernetes", 137], ["Vite", "LLVM's Clang", 46], ["Vite", "MSBuild", 16], ["Vite", "MSVC", 15], ["Vite", "Make", 62], ["Vite", "Maven (build tool)", 51], ["Vite", "Meson", 11], ["Vite", "Ninja", 21], ["Vite", "Nix", 33], ["Vite", "NuGet", 43], ["Vite", "Pacman", 84], ["Vite", "Pip", 171], ["Vite", "Podman", 21], ["Vite", "Pulumi", 3], ["Vite", "Puppet", 9], ["Vite", "QMake", 3], ["Vite", "SCons", 3], ["Vite", "Terraform", 39], ["Vite", "Unity 3D", 82], ["Vite", "Unreal Engine", 83], ["Vite", "Visual Studio Solution", 40], ["Vite", "Vite", 563], ["Vite", "Wasmer", 20], ["Vite", "Webpack", 110], ["Vite", "Yarn", 171], ["Vite", "bandit", 4], ["Vite", "build2", 4], ["Vite", "cppunit", 4], ["Vite", "doctest", 3], ["Vite", "lest", 4], ["Vite", "liblittletest", 3], ["Vite", "npm", 393], ["Vite", "pnpm", 193], ["Vite", "snitch", 2], ["Vite", "tunit", 2], ["Wasmer", "APT", 3], ["Wasmer", "Ansible", 5], ["Wasmer", "Ant", 2], ["Wasmer", "Boost.Test", 2], ["Wasmer", "Bun", 2], ["Wasmer", "CMake", 3], ["Wasmer", "CUTE", 3], ["Wasmer", "Cargo", 8], ["Wasmer", "Catch2", 2], ["Wasmer", "Chef", 2], ["Wasmer", "Chocolatey", 5], ["Wasmer", "Composer", 2], ["Wasmer", "Dagger", 3], ["Wasmer", "Docker", 9], ["Wasmer", "ELFspy", 2], ["Wasmer", "GNU GCC", 4], ["Wasmer", "Godot", 4], ["Wasmer", "Google Test", 3], ["Wasmer", "Gradle", 4], ["Wasmer", "Homebrew", 3], ["Wasmer", "Kubernetes", 3], ["Wasmer", "LLVM's Clang", 5], ["Wasmer", "MSBuild", 2], ["Wasmer", "MSVC", 2], ["Wasmer", "Make", 3], ["Wasmer", "Maven (build tool)", 3], ["Wasmer", "Meson", 2], ["Wasmer", "Ninja", 4], ["Wasmer", "Nix", 4], ["Wasmer", "NuGet", 3], ["Wasmer", "Pacman", 3], ["Wasmer", "Pip", 5], ["Wasmer", "Podman", 3], ["Wasmer", "Pulumi", 2], ["Wasmer", "Puppet", 2], ["Wasmer", "QMake", 2], ["Wasmer", "SCons", 2], ["Wasmer", "Terraform", 4], ["Wasmer", "Unity 3D", 5], ["Wasmer", "Unreal Engine", 2], ["Wasmer", "Visual Studio Solution", 2], ["Wasmer", "Vite", 5], ["Wasmer", "Wasmer", 9], ["Wasmer", "Webpack", 3], ["Wasmer", "Yarn", 3], ["Wasmer", "bandit", 2], ["Wasmer", "build2", 2], ["Wasmer", "cppunit", 2], ["Wasmer", "doctest", 2], ["Wasmer", "lest", 2], ["Wasmer", "liblittletest", 2], ["Wasmer", "npm", 7], ["Wasmer", "pnpm", 3], ["Wasmer", "snitch", 2], ["Wasmer", "tunit", 3], ["Webpack", "APT", 28], ["Webpack", "Ansible", 17], ["Webpack", "Ant", 6], ["Webpack", "Boost.Test", 6], ["Webpack", "Bun", 42], ["Webpack", "CMake", 50], ["Webpack", "CUTE", 4], ["Webpack", "Cargo", 86], ["Webpack", "Catch2", 4], ["Webpack", "Chef", 5], ["Webpack", "Chocolatey", 36], ["Webpack", "Composer", 27], ["Webpack", "Dagger", 4], ["Webpack", "Docker", 195], ["Webpack", "ELFspy", 4], ["Webpack", "GNU GCC", 54], ["Webpack", "Godot", 32], ["Webpack", "Google Test", 7], ["Webpack", "Gradle", 38], ["Webpack", "Homebrew", 55], ["Webpack", "Kubernetes", 94], ["Webpack", "LLVM's Clang", 32], ["Webpack", "MSBuild", 13], ["Webpack", "MSVC", 15], ["Webpack", "Make", 45], ["Webpack", "Maven (build tool)", 32], ["Webpack", "Meson", 7], ["Webpack", "Ninja", 15], ["Webpack", "Nix", 17], ["Webpack", "NuGet", 31], ["Webpack", "Pacman", 41], ["Webpack", "Pip", 116], ["Webpack", "Podman", 15], ["Webpack", "Pulumi", 4], ["Webpack", "Puppet", 6], ["Webpack", "QMake", 5], ["Webpack", "SCons", 3], ["Webpack", "Terraform", 25], ["Webpack", "Unity 3D", 59], ["Webpack", "Unreal Engine", 56], ["Webpack", "Visual Studio Solution", 30], ["Webpack", "Vite", 222], ["Webpack", "Wasmer", 14], ["Webpack", "Webpack", 194], ["Webpack", "Yarn", 117], ["Webpack", "bandit", 5], ["Webpack", "build2", 4], ["Webpack", "cppunit", 6], ["Webpack", "doctest", 7], ["Webpack", "lest", 5], ["Webpack", "liblittletest", 4], ["Webpack", "npm", 265], ["Webpack", "pnpm", 87], ["Webpack", "snitch", 3], ["Webpack", "tunit", 4], ["Yarn", "APT", 35], ["Yarn", "Ansible", 32], ["Yarn", "Ant", 9], ["Yarn", "Boost.Test", 5], ["Yarn", "Bun", 53], ["Yarn", "CMake", 63], ["Yarn", "CUTE", 4], ["Yarn", "Cargo", 106], ["Yarn", "Catch2", 4], ["Yarn", "Chef", 4], ["Yarn", "Chocolatey", 50], ["Yarn", "Composer", 28], ["Yarn", "Dagger", 6], ["Yarn", "Docker", 234], ["Yarn", "ELFspy", 4], ["Yarn", "GNU GCC", 60], ["Yarn", "Godot", 32], ["Yarn", "Google Test", 9], ["Yarn", "Gradle", 56], ["Yarn", "Homebrew", 64], ["Yarn", "Kubernetes", 108], ["Yarn", "LLVM's Clang", 37], ["Yarn", "MSBuild", 13], ["Yarn", "MSVC", 16], ["Yarn", "Make", 62], ["Yarn", "Maven (build tool)", 45], ["Yarn", "Meson", 10], ["Yarn", "Ninja", 22], ["Yarn", "Nix", 31], ["Yarn", "NuGet", 32], ["Yarn", "Pacman", 59], ["Yarn", "Pip", 125], ["Yarn", "Podman", 23], ["Yarn", "Pulumi", 4], ["Yarn", "Puppet", 8], ["Yarn", "QMake", 7], ["Yarn", "SCons", 3], ["Yarn", "Terraform", 34], ["Yarn", "Unity 3D", 54], ["Yarn", "Unreal Engine", 51], ["Yarn", "Visual Studio Solution", 33], ["Yarn", "Vite", 199], ["Yarn", "Wasmer", 12], ["Yarn", "Webpack", 86], ["Yarn", "Yarn", 260], ["Yarn", "bandit", 5], ["Yarn", "build2", 4], ["Yarn", "cppunit", 7], ["Yarn", "doctest", 7], ["Yarn", "lest", 4], ["Yarn", "liblittletest", 4], ["Yarn", "npm", 215], ["Yarn", "pnpm", 119], ["Yarn", "snitch", 3], ["Yarn", "tunit", 4], ["bandit", "APT", 3], ["bandit", "Ansible", 3], ["bandit", "Ant", 3], ["bandit", "Boost.Test", 3], ["bandit", "Bun", 3], ["bandit", "CMake", 4], ["bandit", "CUTE", 3], ["bandit", "Cargo", 5], ["bandit", "Catch2", 3], ["bandit", "Chef", 3], ["bandit", "Chocolatey", 4], ["bandit", "Composer", 4], ["bandit", "Dagger", 3], ["bandit", "Docker", 8], ["bandit", "ELFspy", 3], ["bandit", "GNU GCC", 4], ["bandit", "Godot", 4], ["bandit", "Google Test", 3], ["bandit", "Gradle", 5], ["bandit", "Homebrew", 3], ["bandit", "Kubernetes", 5], ["bandit", "LLVM's Clang", 3], ["bandit", "MSBuild", 2], ["bandit", "MSVC", 4], ["bandit", "Make", 5], ["bandit", "Maven (build tool)", 4], ["bandit", "Meson", 2], ["bandit", "Ninja", 3], ["bandit", "Nix", 3], ["bandit", "NuGet", 4], ["bandit", "Pacman", 4], ["bandit", "Pip", 7], ["bandit", "Podman", 2], ["bandit", "Pulumi", 3], ["bandit", "Puppet", 2], ["bandit", "QMake", 2], ["bandit", "SCons", 2], ["bandit", "Terraform", 2], ["bandit", "Unity 3D", 2], ["bandit", "Unreal Engine", 2], ["bandit", "Visual Studio Solution", 4], ["bandit", "Vite", 5], ["bandit", "Wasmer", 3], ["bandit", "Webpack", 4], ["bandit", "Yarn", 6], ["bandit", "bandit", 7], ["bandit", "build2", 3], ["bandit", "cppunit", 3], ["bandit", "doctest", 3], ["bandit", "lest", 3], ["bandit", "liblittletest", 3], ["bandit", "npm", 8], ["bandit", "pnpm", 5], ["bandit", "snitch", 2], ["bandit", "tunit", 2], ["build2", "APT", 4], ["build2", "Ansible", 3], ["build2", "Ant", 4], ["build2", "Boost.Test", 3], ["build2", "Bun", 3], ["build2", "CMake", 4], ["build2", "CUTE", 3], ["build2", "Cargo", 3], ["build2", "Catch2", 3], ["build2", "Chef", 4], ["build2", "Chocolatey", 3], ["build2", "Composer", 4], ["build2", "Dagger", 3], ["build2", "Docker", 4], ["build2", "ELFspy", 3], ["build2", "GNU GCC", 4], ["build2", "Godot", 3], ["build2", "Google Test", 4], ["build2", "Gradle", 4], ["build2", "Homebrew", 3], ["build2", "Kubernetes", 4], ["build2", "LLVM's Clang", 2], ["build2", "MSBuild", 2], ["build2", "MSVC", 4], ["build2", "Make", 2], ["build2", "Maven (build tool)", 3], ["build2", "Meson", 2], ["build2", "Ninja", 3], ["build2", "Nix", 3], ["build2", "NuGet", 3], ["build2", "Pacman", 3], ["build2", "Pip", 3], ["build2", "Podman", 2], ["build2", "Pulumi", 3], ["build2", "Puppet", 2], ["build2", "QMake", 2], ["build2", "SCons", 2], ["build2", "Terraform", 3], ["build2", "Unity 3D", 2], ["build2", "Unreal Engine", 2], ["build2", "Visual Studio Solution", 4], ["build2", "Vite", 3], ["build2", "Wasmer", 3], ["build2", "Webpack", 3], ["build2", "Yarn", 3], ["build2", "bandit", 3], ["build2", "build2", 4], ["build2", "cppunit", 3], ["build2", "doctest", 3], ["build2", "lest", 3], ["build2", "liblittletest", 3], ["build2", "npm", 4], ["build2", "pnpm", 5], ["build2", "snitch", 2], ["build2", "tunit", 2], ["cppunit", "APT", 3], ["cppunit", "Ansible", 3], ["cppunit", "Ant", 3], ["cppunit", "Boost.Test", 3], ["cppunit", "Bun", 4], ["cppunit", "CMake", 5], ["cppunit", "CUTE", 3], ["cppunit", "Cargo", 6], ["cppunit", "Catch2", 3], ["cppunit", "Chef", 4], ["cppunit", "Chocolatey", 3], ["cppunit", "Composer", 3], ["cppunit", "Dagger", 4], ["cppunit", "Docker", 4], ["cppunit", "ELFspy", 3], ["cppunit", "GNU GCC", 4], ["cppunit", "Godot", 3], ["cppunit", "Google Test", 4], ["cppunit", "Gradle", 3], ["cppunit", "Homebrew", 3], ["cppunit", "Kubernetes", 4], ["cppunit", "LLVM's Clang", 3], ["cppunit", "MSBuild", 2], ["cppunit", "MSVC", 3], ["cppunit", "Make", 4], ["cppunit", "Maven (build tool)", 2], ["cppunit", "Meson", 3], ["cppunit", "Ninja", 4], ["cppunit", "Nix", 4], ["cppunit", "NuGet", 3], ["cppunit", "Pacman", 6], ["cppunit", "Pip", 3], ["cppunit", "Podman", 3], ["cppunit", "Pulumi", 3], ["cppunit", "Puppet", 2], ["cppunit", "QMake", 2], ["cppunit", "SCons", 2], ["cppunit", "Terraform", 2], ["cppunit", "Unity 3D", 4], ["cppunit", "Unreal Engine", 4], ["cppunit", "Visual Studio Solution", 4], ["cppunit", "Vite", 3], ["cppunit", "Wasmer", 3], ["cppunit", "Webpack", 4], ["cppunit", "Yarn", 5], ["cppunit", "bandit", 3], ["cppunit", "build2", 3], ["cppunit", "cppunit", 7], ["cppunit", "doctest", 4], ["cppunit", "lest", 3], ["cppunit", "liblittletest", 3], ["cppunit", "npm", 6], ["cppunit", "pnpm", 4], ["cppunit", "snitch", 2], ["cppunit", "tunit", 2], ["doctest", "APT", 7], ["doctest", "Ansible", 6], ["doctest", "Ant", 3], ["doctest", "Boost.Test", 3], ["doctest", "Bun", 6], ["doctest", "CMake", 10], ["doctest", "CUTE", 3], ["doctest", "Cargo", 9], ["doctest", "Catch2", 3], ["doctest", "Chef", 6], ["doctest", "Chocolatey", 5], ["doctest", "Composer", 3], ["doctest", "Dagger", 3], ["doctest", "Docker", 12], ["doctest", "ELFspy", 3], ["doctest", "GNU GCC", 8], ["doctest", "Godot", 4], ["doctest", "Google Test", 5], ["doctest", "Gradle", 3], ["doctest", "Homebrew", 6], ["doctest", "Kubernetes", 6], ["doctest", "LLVM's Clang", 7], ["doctest", "MSBuild", 2], ["doctest", "MSVC", 3], ["doctest", "Make", 9], ["doctest", "Maven (build tool)", 2], ["doctest", "Meson", 4], ["doctest", "Ninja", 6], ["doctest", "Nix", 3], ["doctest", "NuGet", 5], ["doctest", "Pacman", 6], ["doctest", "Pip", 12], ["doctest", "Podman", 4], ["doctest", "Pulumi", 3], ["doctest", "Puppet", 4], ["doctest", "QMake", 3], ["doctest", "SCons", 2], ["doctest", "Terraform", 4], ["doctest", "Unity 3D", 4], ["doctest", "Unreal Engine", 4], ["doctest", "Visual Studio Solution", 5], ["doctest", "Vite", 6], ["doctest", "Wasmer", 4], ["doctest", "Webpack", 8], ["doctest", "Yarn", 5], ["doctest", "bandit", 3], ["doctest", "build2", 4], ["doctest", "cppunit", 5], ["doctest", "doctest", 12], ["doctest", "lest", 3], ["doctest", "liblittletest", 3], ["doctest", "npm", 11], ["doctest", "pnpm", 5], ["doctest", "snitch", 2], ["doctest", "tunit", 2], ["lest", "APT", 3], ["lest", "Ansible", 3], ["lest", "Ant", 3], ["lest", "Boost.Test", 3], ["lest", "Bun", 3], ["lest", "CMake", 3], ["lest", "CUTE", 3], ["lest", "Cargo", 3], ["lest", "Catch2", 3], ["lest", "Chef", 3], ["lest", "Chocolatey", 3], ["lest", "Composer", 3], ["lest", "Dagger", 3], ["lest", "Docker", 3], ["lest", "ELFspy", 3], ["lest", "GNU GCC", 3], ["lest", "Godot", 3], ["lest", "Google Test", 3], ["lest", "Gradle", 3], ["lest", "Homebrew", 3], ["lest", "Kubernetes", 3], ["lest", "LLVM's Clang", 2], ["lest", "MSBuild", 2], ["lest", "MSVC", 3], ["lest", "Make", 2], ["lest", "Maven (build tool)", 2], ["lest", "Meson", 2], ["lest", "Ninja", 3], ["lest", "Nix", 3], ["lest", "NuGet", 3], ["lest", "Pacman", 3], ["lest", "Pip", 3], ["lest", "Podman", 2], ["lest", "Pulumi", 3], ["lest", "Puppet", 2], ["lest", "QMake", 2], ["lest", "SCons", 2], ["lest", "Terraform", 2], ["lest", "Unity 3D", 2], ["lest", "Unreal Engine", 2], ["lest", "Visual Studio Solution", 3], ["lest", "Vite", 3], ["lest", "Wasmer", 3], ["lest", "Webpack", 3], ["lest", "Yarn", 3], ["lest", "bandit", 3], ["lest", "build2", 3], ["lest", "cppunit", 3], ["lest", "doctest", 3], ["lest", "lest", 4], ["lest", "liblittletest", 3], ["lest", "npm", 3], ["lest", "pnpm", 4], ["lest", "snitch", 2], ["lest", "tunit", 2], ["liblittletest", "APT", 3], ["liblittletest", "Ansible", 3], ["liblittletest", "Ant", 3], ["liblittletest", "Boost.Test", 3], ["liblittletest", "Bun", 3], ["liblittletest", "CMake", 3], ["liblittletest", "CUTE", 3], ["liblittletest", "Cargo", 3], ["liblittletest", "Catch2", 3], ["liblittletest", "Chef", 3], ["liblittletest", "Chocolatey", 3], ["liblittletest", "Composer", 3], ["liblittletest", "Dagger", 3], ["liblittletest", "Docker", 3], ["liblittletest", "ELFspy", 3], ["liblittletest", "GNU GCC", 3], ["liblittletest", "Godot", 3], ["liblittletest", "Google Test", 3], ["liblittletest", "Gradle", 3], ["liblittletest", "Homebrew", 3], ["liblittletest", "Kubernetes", 3], ["liblittletest", "LLVM's Clang", 2], ["liblittletest", "MSBuild", 2], ["liblittletest", "MSVC", 3], ["liblittletest", "Make", 2], ["liblittletest", "Maven (build tool)", 2], ["liblittletest", "Meson", 2], ["liblittletest", "Ninja", 3], ["liblittletest", "Nix", 3], ["liblittletest", "NuGet", 3], ["liblittletest", "Pacman", 3], ["liblittletest", "Pip", 3], ["liblittletest", "Podman", 2], ["liblittletest", "Pulumi", 3], ["liblittletest", "Puppet", 2], ["liblittletest", "QMake", 2], ["liblittletest", "SCons", 2], ["liblittletest", "Terraform", 2], ["liblittletest", "Unity 3D", 2], ["liblittletest", "Unreal Engine", 2], ["liblittletest", "Visual Studio Solution", 3], ["liblittletest", "Vite", 3], ["liblittletest", "Wasmer", 3], ["liblittletest", "Webpack", 3], ["liblittletest", "Yarn", 3], ["liblittletest", "bandit", 3], ["liblittletest", "build2", 3], ["liblittletest", "cppunit", 3], ["liblittletest", "doctest", 3], ["liblittletest", "lest", 3], ["liblittletest", "liblittletest", 3], ["liblittletest", "npm", 3], ["liblittletest", "pnpm", 4], ["liblittletest", "snitch", 2], ["liblittletest", "tunit", 2], ["npm", "APT", 128], ["npm", "Ansible", 91], ["npm", "Ant", 18], ["npm", "Boost.Test", 7], ["npm", "Bun", 113], ["npm", "CMake", 190], ["npm", "CUTE", 4], ["npm", "Cargo", 330], ["npm", "Catch2", 5], ["npm", "Chef", 12], ["npm", "Chocolatey", 129], ["npm", "Composer", 77], ["npm", "Dagger", 10], ["npm", "Docker", 769], ["npm", "ELFspy", 7], ["npm", "GNU GCC", 237], ["npm", "Godot", 119], ["npm", "Google Test", 45], ["npm", "Gradle", 174], ["npm", "Homebrew", 177], ["npm", "Kubernetes", 340], ["npm", "LLVM's Clang", 127], ["npm", "MSBuild", 44], ["npm", "MSVC", 44], ["npm", "Make", 182], ["npm", "Maven (build tool)", 151], ["npm", "Meson", 24], ["npm", "Ninja", 51], ["npm", "Nix", 62], ["npm", "NuGet", 118], ["npm", "Pacman", 195], ["npm", "Pip", 518], ["npm", "Podman", 49], ["npm", "Pulumi", 9], ["npm", "Puppet", 20], ["npm", "QMake", 11], ["npm", "SCons", 6], ["npm", "Terraform", 90], ["npm", "Unity 3D", 227], ["npm", "Unreal Engine", 220], ["npm", "Visual Studio Solution", 156], ["npm", "Vite", 610], ["npm", "Wasmer", 27], ["npm", "Webpack", 257], ["npm", "Yarn", 338], ["npm", "bandit", 9], ["npm", "build2", 6], ["npm", "cppunit", 10], ["npm", "doctest", 10], ["npm", "lest", 4], ["npm", "liblittletest", 5], ["npm", "npm", 1145], ["npm", "pnpm", 261], ["npm", "snitch", 4], ["npm", "tunit", 5], ["pnpm", "APT", 18], ["pnpm", "Ansible", 19], ["pnpm", "Ant", 5], ["pnpm", "Boost.Test", 5], ["pnpm", "Bun", 56], ["pnpm", "CMake", 21], ["pnpm", "CUTE", 3], ["pnpm", "Cargo", 85], ["pnpm", "Catch2", 3], ["pnpm", "Chef", 3], ["pnpm", "Chocolatey", 22], ["pnpm", "Composer", 9], ["pnpm", "Dagger", 3], ["pnpm", "Docker", 134], ["pnpm", "ELFspy", 3], ["pnpm", "GNU GCC", 37], ["pnpm", "Godot", 29], ["pnpm", "Google Test", 6], ["pnpm", "Gradle", 22], ["pnpm", "Homebrew", 39], ["pnpm", "Kubernetes", 60], ["pnpm", "LLVM's Clang", 20], ["pnpm", "MSBuild", 10], ["pnpm", "MSVC", 7], ["pnpm", "Make", 30], ["pnpm", "Maven (build tool)", 19], ["pnpm", "Meson", 6], ["pnpm", "Ninja", 15], ["pnpm", "Nix", 24], ["pnpm", "NuGet", 24], ["pnpm", "Pacman", 44], ["pnpm", "Pip", 65], ["pnpm", "Podman", 18], ["pnpm", "Pulumi", 2], ["pnpm", "Puppet", 3], ["pnpm", "QMake", 3], ["pnpm", "SCons", 3], ["pnpm", "Terraform", 17], ["pnpm", "Unity 3D", 30], ["pnpm", "Unreal Engine", 32], ["pnpm", "Visual Studio Solution", 17], ["pnpm", "Vite", 143], ["pnpm", "Wasmer", 10], ["pnpm", "Webpack", 34], ["pnpm", "Yarn", 55], ["pnpm", "bandit", 4], ["pnpm", "build2", 4], ["pnpm", "cppunit", 4], ["pnpm", "doctest", 5], ["pnpm", "lest", 3], ["pnpm", "liblittletest", 3], ["pnpm", "npm", 93], ["pnpm", "pnpm", 184], ["pnpm", "snitch", 2], ["pnpm", "tunit", 3], ["snitch", "APT", 2], ["snitch", "Ansible", 2], ["snitch", "Ant", 2], ["snitch", "Boost.Test", 2], ["snitch", "Bun", 2], ["snitch", "CMake", 2], ["snitch", "CUTE", 2], ["snitch", "Cargo", 2], ["snitch", "Catch2", 2], ["snitch", "Chef", 2], ["snitch", "Chocolatey", 2], ["snitch", "Composer", 2], ["snitch", "Dagger", 2], ["snitch", "Docker", 2], ["snitch", "ELFspy", 2], ["snitch", "GNU GCC", 2], ["snitch", "Godot", 2], ["snitch", "Google Test", 2], ["snitch", "Gradle", 2], ["snitch", "Homebrew", 2], ["snitch", "Kubernetes", 2], ["snitch", "LLVM's Clang", 2], ["snitch", "MSBuild", 2], ["snitch", "MSVC", 2], ["snitch", "Make", 2], ["snitch", "Maven (build tool)", 2], ["snitch", "Meson", 2], ["snitch", "Ninja", 2], ["snitch", "Nix", 2], ["snitch", "NuGet", 2], ["snitch", "Pacman", 3], ["snitch", "Pip", 2], ["snitch", "Podman", 2], ["snitch", "Pulumi", 3], ["snitch", "Puppet", 2], ["snitch", "QMake", 2], ["snitch", "SCons", 2], ["snitch", "Terraform", 2], ["snitch", "Unity 3D", 2], ["snitch", "Unreal Engine", 2], ["snitch", "Visual Studio Solution", 2], ["snitch", "Vite", 2], ["snitch", "Wasmer", 3], ["snitch", "Webpack", 2], ["snitch", "Yarn", 2], ["snitch", "bandit", 2], ["snitch", "build2", 2], ["snitch", "cppunit", 2], ["snitch", "doctest", 2], ["snitch", "lest", 2], ["snitch", "liblittletest", 2], ["snitch", "npm", 3], ["snitch", "pnpm", 3], ["snitch", "snitch", 2], ["snitch", "tunit", 2], ["tunit", "APT", 4], ["tunit", "Ansible", 3], ["tunit", "Ant", 3], ["tunit", "Boost.Test", 3], ["tunit", "Bun", 3], ["tunit", "CMake", 2], ["tunit", "CUTE", 2], ["tunit", "Cargo", 2], ["tunit", "Catch2", 3], ["tunit", "Chef", 2], ["tunit", "Chocolatey", 3], ["tunit", "Composer", 2], ["tunit", "Dagger", 2], ["tunit", "Docker", 2], ["tunit", "ELFspy", 2], ["tunit", "GNU GCC", 2], ["tunit", "Godot", 2], ["tunit", "Google Test", 2], ["tunit", "Gradle", 2], ["tunit", "Homebrew", 2], ["tunit", "Kubernetes", 2], ["tunit", "LLVM's Clang", 2], ["tunit", "MSBuild", 2], ["tunit", "MSVC", 2], ["tunit", "Make", 2], ["tunit", "Maven (build tool)", 2], ["tunit", "Meson", 2], ["tunit", "Ninja", 3], ["tunit", "Nix", 2], ["tunit", "NuGet", 2], ["tunit", "Pacman", 2], ["tunit", "Pip", 3], ["tunit", "Podman", 3], ["tunit", "Pulumi", 3], ["tunit", "Puppet", 2], ["tunit", "QMake", 2], ["tunit", "SCons", 2], ["tunit", "Terraform", 3], ["tunit", "Unity 3D", 4], ["tunit", "Unreal Engine", 3], ["tunit", "Visual Studio Solution", 3], ["tunit", "Vite", 2], ["tunit", "Wasmer", 4], ["tunit", "Webpack", 3], ["tunit", "Yarn", 3], ["tunit", "bandit", 3], ["tunit", "build2", 3], ["tunit", "cppunit", 2], ["tunit", "doctest", 2], ["tunit", "lest", 2], ["tunit", "liblittletest", 2], ["tunit", "npm", 4], ["tunit", "pnpm", 4], ["tunit", "snitch", 3], ["tunit", "tunit", 4]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which IDEs do how many professional want to use and what are they currently using?", "labels": [{"query": "SELECT NEWCollabTools1.name AS have_worked_with, NewCollabTools2.name AS want_to_work_with, COUNT(*) FROM Response_NewCollabToolsHaveWorkedWith JOIN NEWCollabTools AS NEWCollabTools1 ON Response_NewCollabToolsHaveWorkedWith.NewCollabTools_id = NEWCollabTools1.id JOIN Response_NewCollabToolsWantToWorkWith ON Response_NewCollabToolsWantToWorkWith.Response_id = Response_NewCollabToolsHaveWorkedWith.Response_id JOIN Responses ON Response_NewCollabToolsWantToWorkWith.Response_id = Responses.id JOIN NEWCollabTools AS NEWCollabTools2 ON Response_NewCollabToolsWantToWorkWith.NewCollabTools_id = NEWCollabTools2.id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY NEWCollabTools1.name, NewCollabTools2.name", "results": [["Android Studio", "Android Studio", 5236], ["Android Studio", "Atom", 235], ["Android Studio", "BBEdit", 67], ["Android Studio", "CLion", 601], ["Android Studio", "Code::Blocks", 101], ["Android Studio", "DataGrip", 701], ["Android Studio", "Eclipse", 500], ["Android Studio", "Emacs", 330], ["Android Studio", "Fleet", 434], ["Android Studio", "Geany", 60], ["Android Studio", "Goland", 492], ["Android Studio", "Helix", 162], ["Android Studio", "IPython", 327], ["Android Studio", "IntelliJ IDEA", 3344], ["Android Studio", "Jupyter Notebook/JupyterLab", 1111], ["Android Studio", "Kate", 149], ["Android Studio", "Micro", 55], ["Android Studio", "Nano", 902], ["Android Studio", "Neovim", 1174], ["Android Studio", "Netbeans", 180], ["Android Studio", "Notepad++", 1947], ["Android Studio", "Nova", 35], ["Android Studio", "PhpStorm", 701], ["Android Studio", "PyCharm", 1399], ["Android Studio", "Qt Creator", 225], ["Android Studio", "RStudio", 109], ["Android Studio", "Rad Studio (Delphi, C++ Builder)", 185], ["Android Studio", "Rider", 725], ["Android Studio", "RubyMine", 152], ["Android Studio", "Spyder", 93], ["Android Studio", "Sublime Text", 1041], ["Android Studio", "TextMate", 61], ["Android Studio", "VSCodium", 453], ["Android Studio", "Vim", 1800], ["Android Studio", "Visual Studio", 2281], ["Android Studio", "Visual Studio Code", 7078], ["Android Studio", "WebStorm", 1087], ["Android Studio", "Xcode", 2091], ["Android Studio", "condo", 24], ["Atom", "Android Studio", 604], ["Atom", "Atom", 605], ["Atom", "BBEdit", 42], ["Atom", "CLion", 162], ["Atom", "Code::Blocks", 60], ["Atom", "DataGrip", 230], ["Atom", "Eclipse", 187], ["Atom", "Emacs", 127], ["Atom", "Fleet", 141], ["Atom", "Geany", 41], ["Atom", "Goland", 181], ["Atom", "Helix", 62], ["Atom", "IPython", 150], ["Atom", "IntelliJ IDEA", 923], ["Atom", "Jupyter Notebook/JupyterLab", 464], ["Atom", "Kate", 63], ["Atom", "Micro", 32], ["Atom", "Nano", 364], ["Atom", "Neovim", 350], ["Atom", "Netbeans", 86], ["Atom", "Notepad++", 558], ["Atom", "Nova", 30], ["Atom", "PhpStorm", 282], ["Atom", "PyCharm", 531], ["Atom", "Qt Creator", 86], ["Atom", "RStudio", 74], ["Atom", "Rad Studio (Delphi, C++ Builder)", 51], ["Atom", "Rider", 178], ["Atom", "RubyMine", 71], ["Atom", "Spyder", 52], ["Atom", "Sublime Text", 462], ["Atom", "TextMate", 29], ["Atom", "VSCodium", 190], ["Atom", "Vim", 789], ["Atom", "Visual Studio", 541], ["Atom", "Visual Studio Code", 2032], ["Atom", "WebStorm", 360], ["Atom", "Xcode", 465], ["Atom", "condo", 19], ["BBEdit", "Android Studio", 86], ["BBEdit", "Atom", 31], ["BBEdit", "BBEdit", 295], ["BBEdit", "CLion", 28], ["BBEdit", "Code::Blocks", 13], ["BBEdit", "DataGrip", 47], ["BBEdit", "Eclipse", 36], ["BBEdit", "Emacs", 34], ["BBEdit", "Fleet", 20], ["BBEdit", "Geany", 12], ["BBEdit", "Goland", 31], ["BBEdit", "Helix", 15], ["BBEdit", "IPython", 26], ["BBEdit", "IntelliJ IDEA", 146], ["BBEdit", "Jupyter Notebook/JupyterLab", 63], ["BBEdit", "Kate", 20], ["BBEdit", "Micro", 11], ["BBEdit", "Nano", 64], ["BBEdit", "Neovim", 48], ["BBEdit", "Netbeans", 27], ["BBEdit", "Notepad++", 84], ["BBEdit", "Nova", 33], ["BBEdit", "PhpStorm", 50], ["BBEdit", "PyCharm", 77], ["BBEdit", "Qt Creator", 24], ["BBEdit", "RStudio", 18], ["BBEdit", "Rad Studio (Delphi, C++ Builder)", 16], ["BBEdit", "Rider", 27], ["BBEdit", "RubyMine", 23], ["BBEdit", "Spyder", 11], ["BBEdit", "Sublime Text", 60], ["BBEdit", "TextMate", 22], ["BBEdit", "VSCodium", 22], ["BBEdit", "Vim", 135], ["BBEdit", "Visual Studio", 72], ["BBEdit", "Visual Studio Code", 249], ["BBEdit", "WebStorm", 52], ["BBEdit", "Xcode", 205], ["BBEdit", "condo", 12], ["CLion", "Android Studio", 485], ["CLion", "Atom", 48], ["CLion", "BBEdit", 26], ["CLion", "CLion", 1931], ["CLion", "Code::Blocks", 36], ["CLion", "DataGrip", 591], ["CLion", "Eclipse", 72], ["CLion", "Emacs", 173], ["CLion", "Fleet", 331], ["CLion", "Geany", 32], ["CLion", "Goland", 455], ["CLion", "Helix", 145], ["CLion", "IPython", 161], ["CLion", "IntelliJ IDEA", 1316], ["CLion", "Jupyter Notebook/JupyterLab", 452], ["CLion", "Kate", 99], ["CLion", "Micro", 42], ["CLion", "Nano", 293], ["CLion", "Neovim", 620], ["CLion", "Netbeans", 33], ["CLion", "Notepad++", 446], ["CLion", "Nova", 16], ["CLion", "PhpStorm", 297], ["CLion", "PyCharm", 1100], ["CLion", "Qt Creator", 129], ["CLion", "RStudio", 33], ["CLion", "Rad Studio (Delphi, C++ Builder)", 31], ["CLion", "Rider", 540], ["CLion", "RubyMine", 94], ["CLion", "Spyder", 29], ["CLion", "Sublime Text", 346], ["CLion", "TextMate", 19], ["CLion", "VSCodium", 176], ["CLion", "Vim", 786], ["CLion", "Visual Studio", 445], ["CLion", "Visual Studio Code", 1516], ["CLion", "WebStorm", 653], ["CLion", "Xcode", 259], ["CLion", "condo", 17], ["Code::Blocks", "Android Studio", 322], ["Code::Blocks", "Atom", 67], ["Code::Blocks", "BBEdit", 15], ["Code::Blocks", "CLion", 113], ["Code::Blocks", "Code::Blocks", 170], ["Code::Blocks", "DataGrip", 76], ["Code::Blocks", "Eclipse", 105], ["Code::Blocks", "Emacs", 58], ["Code::Blocks", "Fleet", 44], ["Code::Blocks", "Geany", 38], ["Code::Blocks", "Goland", 63], ["Code::Blocks", "Helix", 27], ["Code::Blocks", "IPython", 71], ["Code::Blocks", "IntelliJ IDEA", 332], ["Code::Blocks", "Jupyter Notebook/JupyterLab", 230], ["Code::Blocks", "Kate", 37], ["Code::Blocks", "Micro", 20], ["Code::Blocks", "Nano", 143], ["Code::Blocks", "Neovim", 148], ["Code::Blocks", "Netbeans", 57], ["Code::Blocks", "Notepad++", 289], ["Code::Blocks", "Nova", 10], ["Code::Blocks", "PhpStorm", 91], ["Code::Blocks", "PyCharm", 235], ["Code::Blocks", "Qt Creator", 80], ["Code::Blocks", "RStudio", 36], ["Code::Blocks", "Rad Studio (Delphi, C++ Builder)", 44], ["Code::Blocks", "Rider", 74], ["Code::Blocks", "RubyMine", 25], ["Code::Blocks", "Spyder", 42], ["Code::Blocks", "Sublime Text", 148], ["Code::Blocks", "TextMate", 10], ["Code::Blocks", "VSCodium", 74], ["Code::Blocks", "Vim", 238], ["Code::Blocks", "Visual Studio", 309], ["Code::Blocks", "Visual Studio Code", 718], ["Code::Blocks", "WebStorm", 104], ["Code::Blocks", "Xcode", 151], ["Code::Blocks", "condo", 18], ["DataGrip", "Android Studio", 533], ["DataGrip", "Atom", 59], ["DataGrip", "BBEdit", 36], ["DataGrip", "CLion", 572], ["DataGrip", "Code::Blocks", 26], ["DataGrip", "DataGrip", 2734], ["DataGrip", "Eclipse", 59], ["DataGrip", "Emacs", 118], ["DataGrip", "Fleet", 408], ["DataGrip", "Geany", 23], ["DataGrip", "Goland", 610], ["DataGrip", "Helix", 105], ["DataGrip", "IPython", 151], ["DataGrip", "IntelliJ IDEA", 1637], ["DataGrip", "Jupyter Notebook/JupyterLab", 491], ["DataGrip", "Kate", 63], ["DataGrip", "Micro", 33], ["DataGrip", "Nano", 347], ["DataGrip", "Neovim", 578], ["DataGrip", "Netbeans", 26], ["DataGrip", "Notepad++", 566], ["DataGrip", "Nova", 18], ["DataGrip", "PhpStorm", 527], ["DataGrip", "PyCharm", 1039], ["DataGrip", "Qt Creator", 47], ["DataGrip", "RStudio", 51], ["DataGrip", "Rad Studio (Delphi, C++ Builder)", 35], ["DataGrip", "Rider", 886], ["DataGrip", "RubyMine", 139], ["DataGrip", "Spyder", 22], ["DataGrip", "Sublime Text", 450], ["DataGrip", "TextMate", 30], ["DataGrip", "VSCodium", 142], ["DataGrip", "Vim", 763], ["DataGrip", "Visual Studio", 540], ["DataGrip", "Visual Studio Code", 2101], ["DataGrip", "WebStorm", 1072], ["DataGrip", "Xcode", 320], ["DataGrip", "condo", 16], ["Eclipse", "Android Studio", 1207], ["Eclipse", "Atom", 187], ["Eclipse", "BBEdit", 47], ["Eclipse", "CLion", 277], ["Eclipse", "Code::Blocks", 82], ["Eclipse", "DataGrip", 277], ["Eclipse", "Eclipse", 1810], ["Eclipse", "Emacs", 224], ["Eclipse", "Fleet", 148], ["Eclipse", "Geany", 71], ["Eclipse", "Goland", 235], ["Eclipse", "Helix", 71], ["Eclipse", "IPython", 222], ["Eclipse", "IntelliJ IDEA", 2296], ["Eclipse", "Jupyter Notebook/JupyterLab", 780], ["Eclipse", "Kate", 97], ["Eclipse", "Micro", 33], ["Eclipse", "Nano", 516], ["Eclipse", "Neovim", 518], ["Eclipse", "Netbeans", 209], ["Eclipse", "Notepad++", 1950], ["Eclipse", "Nova", 18], ["Eclipse", "PhpStorm", 294], ["Eclipse", "PyCharm", 854], ["Eclipse", "Qt Creator", 187], ["Eclipse", "RStudio", 100], ["Eclipse", "Rad Studio (Delphi, C++ Builder)", 139], ["Eclipse", "Rider", 286], ["Eclipse", "RubyMine", 72], ["Eclipse", "Spyder", 90], ["Eclipse", "Sublime Text", 667], ["Eclipse", "TextMate", 36], ["Eclipse", "VSCodium", 288], ["Eclipse", "Vim", 1230], ["Eclipse", "Visual Studio", 1441], ["Eclipse", "Visual Studio Code", 4086], ["Eclipse", "WebStorm", 442], ["Eclipse", "Xcode", 646], ["Eclipse", "condo", 24], ["Emacs", "Android Studio", 254], ["Emacs", "Atom", 59], ["Emacs", "BBEdit", 30], ["Emacs", "CLion", 186], ["Emacs", "Code::Blocks", 31], ["Emacs", "DataGrip", 125], ["Emacs", "Eclipse", 126], ["Emacs", "Emacs", 2010], ["Emacs", "Fleet", 66], ["Emacs", "Geany", 32], ["Emacs", "Goland", 105], ["Emacs", "Helix", 146], ["Emacs", "IPython", 188], ["Emacs", "IntelliJ IDEA", 507], ["Emacs", "Jupyter Notebook/JupyterLab", 350], ["Emacs", "Kate", 64], ["Emacs", "Micro", 23], ["Emacs", "Nano", 191], ["Emacs", "Neovim", 543], ["Emacs", "Netbeans", 44], ["Emacs", "Notepad++", 261], ["Emacs", "Nova", 17], ["Emacs", "PhpStorm", 77], ["Emacs", "PyCharm", 275], ["Emacs", "Qt Creator", 81], ["Emacs", "RStudio", 56], ["Emacs", "Rad Studio (Delphi, C++ Builder)", 28], ["Emacs", "Rider", 121], ["Emacs", "RubyMine", 32], ["Emacs", "Spyder", 33], ["Emacs", "Sublime Text", 181], ["Emacs", "TextMate", 15], ["Emacs", "VSCodium", 170], ["Emacs", "Vim", 669], ["Emacs", "Visual Studio", 316], ["Emacs", "Visual Studio Code", 1111], ["Emacs", "WebStorm", 131], ["Emacs", "Xcode", 231], ["Emacs", "condo", 14], ["Fleet", "Android Studio", 222], ["Fleet", "Atom", 26], ["Fleet", "BBEdit", 14], ["Fleet", "CLion", 251], ["Fleet", "Code::Blocks", 13], ["Fleet", "DataGrip", 309], ["Fleet", "Eclipse", 18], ["Fleet", "Emacs", 54], ["Fleet", "Fleet", 598], ["Fleet", "Geany", 17], ["Fleet", "Goland", 205], ["Fleet", "Helix", 76], ["Fleet", "IPython", 43], ["Fleet", "IntelliJ IDEA", 569], ["Fleet", "Jupyter Notebook/JupyterLab", 141], ["Fleet", "Kate", 41], ["Fleet", "Micro", 25], ["Fleet", "Nano", 148], ["Fleet", "Neovim", 282], ["Fleet", "Netbeans", 15], ["Fleet", "Notepad++", 128], ["Fleet", "Nova", 17], ["Fleet", "PhpStorm", 157], ["Fleet", "PyCharm", 293], ["Fleet", "Qt Creator", 24], ["Fleet", "RStudio", 14], ["Fleet", "Rad Studio (Delphi, C++ Builder)", 13], ["Fleet", "Rider", 261], ["Fleet", "RubyMine", 46], ["Fleet", "Spyder", 15], ["Fleet", "Sublime Text", 148], ["Fleet", "TextMate", 19], ["Fleet", "VSCodium", 88], ["Fleet", "Vim", 266], ["Fleet", "Visual Studio", 146], ["Fleet", "Visual Studio Code", 686], ["Fleet", "WebStorm", 350], ["Fleet", "Xcode", 128], ["Fleet", "condo", 10], ["Geany", "Android Studio", 90], ["Geany", "Atom", 20], ["Geany", "BBEdit", 13], ["Geany", "CLion", 43], ["Geany", "Code::Blocks", 30], ["Geany", "DataGrip", 30], ["Geany", "Eclipse", 55], ["Geany", "Emacs", 43], ["Geany", "Fleet", 21], ["Geany", "Geany", 229], ["Geany", "Goland", 40], ["Geany", "Helix", 20], ["Geany", "IPython", 42], ["Geany", "IntelliJ IDEA", 120], ["Geany", "Jupyter Notebook/JupyterLab", 75], ["Geany", "Kate", 41], ["Geany", "Micro", 18], ["Geany", "Nano", 111], ["Geany", "Neovim", 74], ["Geany", "Netbeans", 29], ["Geany", "Notepad++", 126], ["Geany", "Nova", 11], ["Geany", "PhpStorm", 43], ["Geany", "PyCharm", 80], ["Geany", "Qt Creator", 40], ["Geany", "RStudio", 18], ["Geany", "Rad Studio (Delphi, C++ Builder)", 15], ["Geany", "Rider", 30], ["Geany", "RubyMine", 12], ["Geany", "Spyder", 19], ["Geany", "Sublime Text", 62], ["Geany", "TextMate", 11], ["Geany", "VSCodium", 72], ["Geany", "Vim", 132], ["Geany", "Visual Studio", 92], ["Geany", "Visual Studio Code", 255], ["Geany", "WebStorm", 43], ["Geany", "Xcode", 57], ["Geany", "condo", 10], ["Goland", "Android Studio", 315], ["Goland", "Atom", 39], ["Goland", "BBEdit", 22], ["Goland", "CLion", 433], ["Goland", "Code::Blocks", 19], ["Goland", "DataGrip", 560], ["Goland", "Eclipse", 47], ["Goland", "Emacs", 101], ["Goland", "Fleet", 233], ["Goland", "Geany", 32], ["Goland", "Goland", 1696], ["Goland", "Helix", 82], ["Goland", "IPython", 97], ["Goland", "IntelliJ IDEA", 965], ["Goland", "Jupyter Notebook/JupyterLab", 251], ["Goland", "Kate", 43], ["Goland", "Micro", 32], ["Goland", "Nano", 235], ["Goland", "Neovim", 442], ["Goland", "Netbeans", 22], ["Goland", "Notepad++", 231], ["Goland", "Nova", 14], ["Goland", "PhpStorm", 275], ["Goland", "PyCharm", 688], ["Goland", "Qt Creator", 41], ["Goland", "RStudio", 27], ["Goland", "Rad Studio (Delphi, C++ Builder)", 23], ["Goland", "Rider", 292], ["Goland", "RubyMine", 106], ["Goland", "Spyder", 19], ["Goland", "Sublime Text", 300], ["Goland", "TextMate", 19], ["Goland", "VSCodium", 102], ["Goland", "Vim", 628], ["Goland", "Visual Studio", 210], ["Goland", "Visual Studio Code", 1243], ["Goland", "WebStorm", 563], ["Goland", "Xcode", 209], ["Goland", "condo", 13], ["Helix", "Android Studio", 53], ["Helix", "Atom", 18], ["Helix", "BBEdit", 10], ["Helix", "CLion", 88], ["Helix", "Code::Blocks", 11], ["Helix", "DataGrip", 57], ["Helix", "Eclipse", 16], ["Helix", "Emacs", 85], ["Helix", "Fleet", 62], ["Helix", "Geany", 15], ["Helix", "Goland", 55], ["Helix", "Helix", 655], ["Helix", "IPython", 48], ["Helix", "IntelliJ IDEA", 137], ["Helix", "Jupyter Notebook/JupyterLab", 83], ["Helix", "Kate", 29], ["Helix", "Micro", 17], ["Helix", "Nano", 39], ["Helix", "Neovim", 385], ["Helix", "Netbeans", 12], ["Helix", "Notepad++", 52], ["Helix", "Nova", 10], ["Helix", "PhpStorm", 24], ["Helix", "PyCharm", 71], ["Helix", "Qt Creator", 26], ["Helix", "RStudio", 15], ["Helix", "Rad Studio (Delphi, C++ Builder)", 10], ["Helix", "Rider", 58], ["Helix", "RubyMine", 18], ["Helix", "Spyder", 10], ["Helix", "Sublime Text", 57], ["Helix", "TextMate", 9], ["Helix", "VSCodium", 73], ["Helix", "Vim", 173], ["Helix", "Visual Studio", 62], ["Helix", "Visual Studio Code", 383], ["Helix", "WebStorm", 44], ["Helix", "Xcode", 54], ["Helix", "condo", 12], ["IPython", "Android Studio", 293], ["IPython", "Atom", 78], ["IPython", "BBEdit", 24], ["IPython", "CLion", 182], ["IPython", "Code::Blocks", 40], ["IPython", "DataGrip", 173], ["IPython", "Eclipse", 99], ["IPython", "Emacs", 200], ["IPython", "Fleet", 77], ["IPython", "Geany", 32], ["IPython", "Goland", 135], ["IPython", "Helix", 83], ["IPython", "IPython", 1931], ["IPython", "IntelliJ IDEA", 554], ["IPython", "Jupyter Notebook/JupyterLab", 1397], ["IPython", "Kate", 62], ["IPython", "Micro", 34], ["IPython", "Nano", 262], ["IPython", "Neovim", 589], ["IPython", "Netbeans", 42], ["IPython", "Notepad++", 379], ["IPython", "Nova", 17], ["IPython", "PhpStorm", 72], ["IPython", "PyCharm", 810], ["IPython", "Qt Creator", 72], ["IPython", "RStudio", 124], ["IPython", "Rad Studio (Delphi, C++ Builder)", 22], ["IPython", "Rider", 82], ["IPython", "RubyMine", 37], ["IPython", "Spyder", 101], ["IPython", "Sublime Text", 310], ["IPython", "TextMate", 27], ["IPython", "VSCodium", 187], ["IPython", "Vim", 909], ["IPython", "Visual Studio", 317], ["IPython", "Visual Studio Code", 1721], ["IPython", "WebStorm", 157], ["IPython", "Xcode", 200], ["IPython", "condo", 24], ["IntelliJ IDEA", "Android Studio", 2860], ["IntelliJ IDEA", "Atom", 290], ["IntelliJ IDEA", "BBEdit", 104], ["IntelliJ IDEA", "CLion", 1319], ["IntelliJ IDEA", "Code::Blocks", 89], ["IntelliJ IDEA", "DataGrip", 1660], ["IntelliJ IDEA", "Eclipse", 744], ["IntelliJ IDEA", "Emacs", 589], ["IntelliJ IDEA", "Fleet", 802], ["IntelliJ IDEA", "Geany", 85], ["IntelliJ IDEA", "Goland", 1151], ["IntelliJ IDEA", "Helix", 268], ["IntelliJ IDEA", "IPython", 553], ["IntelliJ IDEA", "IntelliJ IDEA", 12665], ["IntelliJ IDEA", "Jupyter Notebook/JupyterLab", 1832], ["IntelliJ IDEA", "Kate", 229], ["IntelliJ IDEA", "Micro", 80], ["IntelliJ IDEA", "Nano", 1213], ["IntelliJ IDEA", "Neovim", 2065], ["IntelliJ IDEA", "Netbeans", 225], ["IntelliJ IDEA", "Notepad++", 3002], ["IntelliJ IDEA", "Nova", 42], ["IntelliJ IDEA", "PhpStorm", 1055], ["IntelliJ IDEA", "PyCharm", 3039], ["IntelliJ IDEA", "Qt Creator", 222], ["IntelliJ IDEA", "RStudio", 177], ["IntelliJ IDEA", "Rad Studio (Delphi, C++ Builder)", 121], ["IntelliJ IDEA", "Rider", 1250], ["IntelliJ IDEA", "RubyMine", 294], ["IntelliJ IDEA", "Spyder", 105], ["IntelliJ IDEA", "Sublime Text", 1878], ["IntelliJ IDEA", "TextMate", 89], ["IntelliJ IDEA", "VSCodium", 638], ["IntelliJ IDEA", "Vim", 3567], ["IntelliJ IDEA", "Visual Studio", 2196], ["IntelliJ IDEA", "Visual Studio Code", 9961], ["IntelliJ IDEA", "WebStorm", 2155], ["IntelliJ IDEA", "Xcode", 1436], ["IntelliJ IDEA", "condo", 28], ["Jupyter Notebook/JupyterLab", "Android Studio", 909], ["Jupyter Notebook/JupyterLab", "Atom", 176], ["Jupyter Notebook/JupyterLab", "BBEdit", 51], ["Jupyter Notebook/JupyterLab", "CLion", 495], ["Jupyter Notebook/JupyterLab", "Code::Blocks", 73], ["Jupyter Notebook/JupyterLab", "DataGrip", 536], ["Jupyter Notebook/JupyterLab", "Eclipse", 290], ["Jupyter Notebook/JupyterLab", "Emacs", 352], ["Jupyter Notebook/JupyterLab", "Fleet", 233], ["Jupyter Notebook/JupyterLab", "Geany", 54], ["Jupyter Notebook/JupyterLab", "Goland", 353], ["Jupyter Notebook/JupyterLab", "Helix", 167], ["Jupyter Notebook/JupyterLab", "IPython", 1300], ["Jupyter Notebook/JupyterLab", "IntelliJ IDEA", 1830], ["Jupyter Notebook/JupyterLab", "Jupyter Notebook/JupyterLab", 4533], ["Jupyter Notebook/JupyterLab", "Kate", 106], ["Jupyter Notebook/JupyterLab", "Micro", 53], ["Jupyter Notebook/JupyterLab", "Nano", 633], ["Jupyter Notebook/JupyterLab", "Neovim", 1111], ["Jupyter Notebook/JupyterLab", "Netbeans", 104], ["Jupyter Notebook/JupyterLab", "Notepad++", 1279], ["Jupyter Notebook/JupyterLab", "Nova", 24], ["Jupyter Notebook/JupyterLab", "PhpStorm", 277], ["Jupyter Notebook/JupyterLab", "PyCharm", 1883], ["Jupyter Notebook/JupyterLab", "Qt Creator", 167], ["Jupyter Notebook/JupyterLab", "RStudio", 289], ["Jupyter Notebook/JupyterLab", "Rad Studio (Delphi, C++ Builder)", 61], ["Jupyter Notebook/JupyterLab", "Rider", 393], ["Jupyter Notebook/JupyterLab", "RubyMine", 82], ["Jupyter Notebook/JupyterLab", "Spyder", 176], ["Jupyter Notebook/JupyterLab", "Sublime Text", 751], ["Jupyter Notebook/JupyterLab", "TextMate", 38], ["Jupyter Notebook/JupyterLab", "VSCodium", 354], ["Jupyter Notebook/JupyterLab", "Vim", 1732], ["Jupyter Notebook/JupyterLab", "Visual Studio", 1238], ["Jupyter Notebook/JupyterLab", "Visual Studio Code", 4968], ["Jupyter Notebook/JupyterLab", "WebStorm", 513], ["Jupyter Notebook/JupyterLab", "Xcode", 603], ["Jupyter Notebook/JupyterLab", "condo", 37], ["Kate", "Android Studio", 145], ["Kate", "Atom", 29], ["Kate", "BBEdit", 16], ["Kate", "CLion", 116], ["Kate", "Code::Blocks", 24], ["Kate", "DataGrip", 80], ["Kate", "Eclipse", 54], ["Kate", "Emacs", 84], ["Kate", "Fleet", 56], ["Kate", "Geany", 33], ["Kate", "Goland", 58], ["Kate", "Helix", 52], ["Kate", "IPython", 66], ["Kate", "IntelliJ IDEA", 271], ["Kate", "Jupyter Notebook/JupyterLab", 117], ["Kate", "Kate", 516], ["Kate", "Micro", 31], ["Kate", "Nano", 223], ["Kate", "Neovim", 174], ["Kate", "Netbeans", 31], ["Kate", "Notepad++", 150], ["Kate", "Nova", 12], ["Kate", "PhpStorm", 82], ["Kate", "PyCharm", 167], ["Kate", "Qt Creator", 107], ["Kate", "RStudio", 25], ["Kate", "Rad Studio (Delphi, C++ Builder)", 18], ["Kate", "Rider", 65], ["Kate", "RubyMine", 24], ["Kate", "Spyder", 26], ["Kate", "Sublime Text", 69], ["Kate", "TextMate", 11], ["Kate", "VSCodium", 149], ["Kate", "Vim", 270], ["Kate", "Visual Studio", 118], ["Kate", "Visual Studio Code", 402], ["Kate", "WebStorm", 78], ["Kate", "Xcode", 65], ["Kate", "condo", 14], ["Micro", "Android Studio", 56], ["Micro", "Atom", 23], ["Micro", "BBEdit", 11], ["Micro", "CLion", 49], ["Micro", "Code::Blocks", 17], ["Micro", "DataGrip", 37], ["Micro", "Eclipse", 20], ["Micro", "Emacs", 33], ["Micro", "Fleet", 35], ["Micro", "Geany", 14], ["Micro", "Goland", 43], ["Micro", "Helix", 37], ["Micro", "IPython", 33], ["Micro", "IntelliJ IDEA", 81], ["Micro", "Jupyter Notebook/JupyterLab", 56], ["Micro", "Kate", 28], ["Micro", "Micro", 217], ["Micro", "Nano", 78], ["Micro", "Neovim", 65], ["Micro", "Netbeans", 17], ["Micro", "Notepad++", 48], ["Micro", "Nova", 11], ["Micro", "PhpStorm", 28], ["Micro", "PyCharm", 63], ["Micro", "Qt Creator", 24], ["Micro", "RStudio", 12], ["Micro", "Rad Studio (Delphi, C++ Builder)", 10], ["Micro", "Rider", 43], ["Micro", "RubyMine", 17], ["Micro", "Spyder", 10], ["Micro", "Sublime Text", 59], ["Micro", "TextMate", 10], ["Micro", "VSCodium", 61], ["Micro", "Vim", 57], ["Micro", "Visual Studio", 42], ["Micro", "Visual Studio Code", 211], ["Micro", "WebStorm", 36], ["Micro", "Xcode", 31], ["Micro", "condo", 12], ["Nano", "Android Studio", 868], ["Nano", "Atom", 145], ["Nano", "BBEdit", 52], ["Nano", "CLion", 371], ["Nano", "Code::Blocks", 58], ["Nano", "DataGrip", 462], ["Nano", "Eclipse", 216], ["Nano", "Emacs", 275], ["Nano", "Fleet", 238], ["Nano", "Geany", 88], ["Nano", "Goland", 362], ["Nano", "Helix", 135], ["Nano", "IPython", 313], ["Nano", "IntelliJ IDEA", 1478], ["Nano", "Jupyter Notebook/JupyterLab", 838], ["Nano", "Kate", 218], ["Nano", "Micro", 112], ["Nano", "Nano", 3301], ["Nano", "Neovim", 678], ["Nano", "Netbeans", 102], ["Nano", "Notepad++", 1171], ["Nano", "Nova", 28], ["Nano", "PhpStorm", 525], ["Nano", "PyCharm", 896], ["Nano", "Qt Creator", 170], ["Nano", "RStudio", 81], ["Nano", "Rad Studio (Delphi, C++ Builder)", 66], ["Nano", "Rider", 401], ["Nano", "RubyMine", 96], ["Nano", "Spyder", 63], ["Nano", "Sublime Text", 684], ["Nano", "TextMate", 47], ["Nano", "VSCodium", 441], ["Nano", "Vim", 1245], ["Nano", "Visual Studio", 954], ["Nano", "Visual Studio Code", 3824], ["Nano", "WebStorm", 516], ["Nano", "Xcode", 594], ["Nano", "condo", 17], ["Neovim", "Android Studio", 478], ["Neovim", "Atom", 51], ["Neovim", "BBEdit", 25], ["Neovim", "CLion", 425], ["Neovim", "Code::Blocks", 29], ["Neovim", "DataGrip", 422], ["Neovim", "Eclipse", 79], ["Neovim", "Emacs", 432], ["Neovim", "Fleet", 269], ["Neovim", "Geany", 27], ["Neovim", "Goland", 346], ["Neovim", "Helix", 664], ["Neovim", "IPython", 410], ["Neovim", "IntelliJ IDEA", 1190], ["Neovim", "Jupyter Notebook/JupyterLab", 707], ["Neovim", "Kate", 109], ["Neovim", "Micro", 27], ["Neovim", "Nano", 240], ["Neovim", "Neovim", 6080], ["Neovim", "Netbeans", 39], ["Neovim", "Notepad++", 336], ["Neovim", "Nova", 26], ["Neovim", "PhpStorm", 190], ["Neovim", "PyCharm", 535], ["Neovim", "Qt Creator", 100], ["Neovim", "RStudio", 58], ["Neovim", "Rad Studio (Delphi, C++ Builder)", 17], ["Neovim", "Rider", 373], ["Neovim", "RubyMine", 81], ["Neovim", "Spyder", 29], ["Neovim", "Sublime Text", 355], ["Neovim", "TextMate", 22], ["Neovim", "VSCodium", 500], ["Neovim", "Vim", 1813], ["Neovim", "Visual Studio", 509], ["Neovim", "Visual Studio Code", 2916], ["Neovim", "WebStorm", 323], ["Neovim", "Xcode", 359], ["Neovim", "condo", 14], ["Netbeans", "Android Studio", 512], ["Netbeans", "Atom", 86], ["Netbeans", "BBEdit", 29], ["Netbeans", "CLion", 92], ["Netbeans", "Code::Blocks", 46], ["Netbeans", "DataGrip", 121], ["Netbeans", "Eclipse", 235], ["Netbeans", "Emacs", 85], ["Netbeans", "Fleet", 73], ["Netbeans", "Geany", 30], ["Netbeans", "Goland", 98], ["Netbeans", "Helix", 31], ["Netbeans", "IPython", 87], ["Netbeans", "IntelliJ IDEA", 730], ["Netbeans", "Jupyter Notebook/JupyterLab", 247], ["Netbeans", "Kate", 57], ["Netbeans", "Micro", 26], ["Netbeans", "Nano", 204], ["Netbeans", "Neovim", 190], ["Netbeans", "Netbeans", 471], ["Netbeans", "Notepad++", 631], ["Netbeans", "Nova", 12], ["Netbeans", "PhpStorm", 216], ["Netbeans", "PyCharm", 334], ["Netbeans", "Qt Creator", 74], ["Netbeans", "RStudio", 63], ["Netbeans", "Rad Studio (Delphi, C++ Builder)", 68], ["Netbeans", "Rider", 121], ["Netbeans", "RubyMine", 40], ["Netbeans", "Spyder", 54], ["Netbeans", "Sublime Text", 289], ["Netbeans", "TextMate", 24], ["Netbeans", "VSCodium", 108], ["Netbeans", "Vim", 400], ["Netbeans", "Visual Studio", 540], ["Netbeans", "Visual Studio Code", 1320], ["Netbeans", "WebStorm", 193], ["Netbeans", "Xcode", 262], ["Netbeans", "condo", 18], ["Notepad++", "Android Studio", 2109], ["Notepad++", "Atom", 307], ["Notepad++", "BBEdit", 83], ["Notepad++", "CLion", 605], ["Notepad++", "Code::Blocks", 144], ["Notepad++", "DataGrip", 807], ["Notepad++", "Eclipse", 1111], ["Notepad++", "Emacs", 310], ["Notepad++", "Fleet", 332], ["Notepad++", "Geany", 110], ["Notepad++", "Goland", 449], ["Notepad++", "Helix", 116], ["Notepad++", "IPython", 536], ["Notepad++", "IntelliJ IDEA", 3814], ["Notepad++", "Jupyter Notebook/JupyterLab", 1653], ["Notepad++", "Kate", 182], ["Notepad++", "Micro", 62], ["Notepad++", "Nano", 1209], ["Notepad++", "Neovim", 882], ["Notepad++", "Netbeans", 336], ["Notepad++", "Notepad++", 10118], ["Notepad++", "Nova", 25], ["Notepad++", "PhpStorm", 905], ["Notepad++", "PyCharm", 1976], ["Notepad++", "Qt Creator", 381], ["Notepad++", "RStudio", 250], ["Notepad++", "Rad Studio (Delphi, C++ Builder)", 600], ["Notepad++", "Rider", 1432], ["Notepad++", "RubyMine", 115], ["Notepad++", "Spyder", 165], ["Notepad++", "Sublime Text", 1226], ["Notepad++", "TextMate", 67], ["Notepad++", "VSCodium", 479], ["Notepad++", "Vim", 2342], ["Notepad++", "Visual Studio", 5824], ["Notepad++", "Visual Studio Code", 10360], ["Notepad++", "WebStorm", 1087], ["Notepad++", "Xcode", 1140], ["Notepad++", "condo", 27], ["Nova", "Android Studio", 24], ["Nova", "Atom", 14], ["Nova", "BBEdit", 31], ["Nova", "CLion", 16], ["Nova", "Code::Blocks", 10], ["Nova", "DataGrip", 18], ["Nova", "Eclipse", 11], ["Nova", "Emacs", 18], ["Nova", "Fleet", 20], ["Nova", "Geany", 11], ["Nova", "Goland", 18], ["Nova", "Helix", 16], ["Nova", "IPython", 13], ["Nova", "IntelliJ IDEA", 28], ["Nova", "Jupyter Notebook/JupyterLab", 19], ["Nova", "Kate", 12], ["Nova", "Micro", 11], ["Nova", "Nano", 26], ["Nova", "Neovim", 25], ["Nova", "Netbeans", 13], ["Nova", "Notepad++", 17], ["Nova", "Nova", 102], ["Nova", "PhpStorm", 18], ["Nova", "PyCharm", 21], ["Nova", "Qt Creator", 10], ["Nova", "RStudio", 10], ["Nova", "Rad Studio (Delphi, C++ Builder)", 9], ["Nova", "Rider", 16], ["Nova", "RubyMine", 15], ["Nova", "Spyder", 9], ["Nova", "Sublime Text", 27], ["Nova", "TextMate", 14], ["Nova", "VSCodium", 16], ["Nova", "Vim", 37], ["Nova", "Visual Studio", 20], ["Nova", "Visual Studio Code", 79], ["Nova", "WebStorm", 20], ["Nova", "Xcode", 72], ["Nova", "condo", 11], ["PhpStorm", "Android Studio", 719], ["PhpStorm", "Atom", 107], ["PhpStorm", "BBEdit", 42], ["PhpStorm", "CLion", 367], ["PhpStorm", "Code::Blocks", 34], ["PhpStorm", "DataGrip", 642], ["PhpStorm", "Eclipse", 101], ["PhpStorm", "Emacs", 84], ["PhpStorm", "Fleet", 249], ["PhpStorm", "Geany", 41], ["PhpStorm", "Goland", 444], ["PhpStorm", "Helix", 50], ["PhpStorm", "IPython", 86], ["PhpStorm", "IntelliJ IDEA", 1260], ["PhpStorm", "Jupyter Notebook/JupyterLab", 335], ["PhpStorm", "Kate", 82], ["PhpStorm", "Micro", 29], ["PhpStorm", "Nano", 469], ["PhpStorm", "Neovim", 410], ["PhpStorm", "Netbeans", 65], ["PhpStorm", "Notepad++", 729], ["PhpStorm", "Nova", 20], ["PhpStorm", "PhpStorm", 2800], ["PhpStorm", "PyCharm", 922], ["PhpStorm", "Qt Creator", 72], ["PhpStorm", "RStudio", 35], ["PhpStorm", "Rad Studio (Delphi, C++ Builder)", 68], ["PhpStorm", "Rider", 389], ["PhpStorm", "RubyMine", 116], ["PhpStorm", "Spyder", 27], ["PhpStorm", "Sublime Text", 613], ["PhpStorm", "TextMate", 41], ["PhpStorm", "VSCodium", 165], ["PhpStorm", "Vim", 886], ["PhpStorm", "Visual Studio", 550], ["PhpStorm", "Visual Studio Code", 2162], ["PhpStorm", "WebStorm", 909], ["PhpStorm", "Xcode", 428], ["PhpStorm", "condo", 19], ["PyCharm", "Android Studio", 1312], ["PyCharm", "Atom", 201], ["PyCharm", "BBEdit", 57], ["PyCharm", "CLion", 1168], ["PyCharm", "Code::Blocks", 77], ["PyCharm", "DataGrip", 1129], ["PyCharm", "Eclipse", 303], ["PyCharm", "Emacs", 285], ["PyCharm", "Fleet", 454], ["PyCharm", "Geany", 62], ["PyCharm", "Goland", 887], ["PyCharm", "Helix", 138], ["PyCharm", "IPython", 777], ["PyCharm", "IntelliJ IDEA", 3182], ["PyCharm", "Jupyter Notebook/JupyterLab", 1850], ["PyCharm", "Kate", 139], ["PyCharm", "Micro", 61], ["PyCharm", "Nano", 775], ["PyCharm", "Neovim", 1025], ["PyCharm", "Netbeans", 117], ["PyCharm", "Notepad++", 1576], ["PyCharm", "Nova", 19], ["PyCharm", "PhpStorm", 787], ["PyCharm", "PyCharm", 5674], ["PyCharm", "Qt Creator", 215], ["PyCharm", "RStudio", 162], ["PyCharm", "Rad Studio (Delphi, C++ Builder)", 90], ["PyCharm", "Rider", 819], ["PyCharm", "RubyMine", 195], ["PyCharm", "Spyder", 114], ["PyCharm", "Sublime Text", 1033], ["PyCharm", "TextMate", 50], ["PyCharm", "VSCodium", 324], ["PyCharm", "Vim", 1910], ["PyCharm", "Visual Studio", 1342], ["PyCharm", "Visual Studio Code", 4825], ["PyCharm", "WebStorm", 1430], ["PyCharm", "Xcode", 749], ["PyCharm", "condo", 26], ["Qt Creator", "Android Studio", 246], ["Qt Creator", "Atom", 51], ["Qt Creator", "BBEdit", 20], ["Qt Creator", "CLion", 216], ["Qt Creator", "Code::Blocks", 36], ["Qt Creator", "DataGrip", 82], ["Qt Creator", "Eclipse", 92], ["Qt Creator", "Emacs", 87], ["Qt Creator", "Fleet", 46], ["Qt Creator", "Geany", 39], ["Qt Creator", "Goland", 65], ["Qt Creator", "Helix", 41], ["Qt Creator", "IPython", 80], ["Qt Creator", "IntelliJ IDEA", 284], ["Qt Creator", "Jupyter Notebook/JupyterLab", 210], ["Qt Creator", "Kate", 92], ["Qt Creator", "Micro", 20], ["Qt Creator", "Nano", 171], ["Qt Creator", "Neovim", 192], ["Qt Creator", "Netbeans", 40], ["Qt Creator", "Notepad++", 366], ["Qt Creator", "Nova", 14], ["Qt Creator", "PhpStorm", 75], ["Qt Creator", "PyCharm", 262], ["Qt Creator", "Qt Creator", 603], ["Qt Creator", "RStudio", 31], ["Qt Creator", "Rad Studio (Delphi, C++ Builder)", 42], ["Qt Creator", "Rider", 81], ["Qt Creator", "RubyMine", 24], ["Qt Creator", "Spyder", 34], ["Qt Creator", "Sublime Text", 185], ["Qt Creator", "TextMate", 11], ["Qt Creator", "VSCodium", 107], ["Qt Creator", "Vim", 373], ["Qt Creator", "Visual Studio", 398], ["Qt Creator", "Visual Studio Code", 888], ["Qt Creator", "WebStorm", 103], ["Qt Creator", "Xcode", 161], ["Qt Creator", "condo", 15], ["RStudio", "Android Studio", 154], ["RStudio", "Atom", 47], ["RStudio", "BBEdit", 17], ["RStudio", "CLion", 79], ["RStudio", "Code::Blocks", 24], ["RStudio", "DataGrip", 91], ["RStudio", "Eclipse", 52], ["RStudio", "Emacs", 84], ["RStudio", "Fleet", 38], ["RStudio", "Geany", 20], ["RStudio", "Goland", 61], ["RStudio", "Helix", 25], ["RStudio", "IPython", 156], ["RStudio", "IntelliJ IDEA", 295], ["RStudio", "Jupyter Notebook/JupyterLab", 439], ["RStudio", "Kate", 26], ["RStudio", "Micro", 13], ["RStudio", "Nano", 127], ["RStudio", "Neovim", 160], ["RStudio", "Netbeans", 41], ["RStudio", "Notepad++", 295], ["RStudio", "Nova", 10], ["RStudio", "PhpStorm", 53], ["RStudio", "PyCharm", 263], ["RStudio", "Qt Creator", 47], ["RStudio", "RStudio", 490], ["RStudio", "Rad Studio (Delphi, C++ Builder)", 22], ["RStudio", "Rider", 60], ["RStudio", "RubyMine", 20], ["RStudio", "Spyder", 64], ["RStudio", "Sublime Text", 139], ["RStudio", "TextMate", 15], ["RStudio", "VSCodium", 58], ["RStudio", "Vim", 290], ["RStudio", "Visual Studio", 246], ["RStudio", "Visual Studio Code", 803], ["RStudio", "WebStorm", 82], ["RStudio", "Xcode", 92], ["RStudio", "condo", 13], ["Rad Studio (Delphi, C++ Builder)", "Android Studio", 186], ["Rad Studio (Delphi, C++ Builder)", "Atom", 32], ["Rad Studio (Delphi, C++ Builder)", "BBEdit", 19], ["Rad Studio (Delphi, C++ Builder)", "CLion", 42], ["Rad Studio (Delphi, C++ Builder)", "Code::Blocks", 34], ["Rad Studio (Delphi, C++ Builder)", "DataGrip", 52], ["Rad Studio (Delphi, C++ Builder)", "Eclipse", 94], ["Rad Studio (Delphi, C++ Builder)", "Emacs", 28], ["Rad Studio (Delphi, C++ Builder)", "Fleet", 24], ["Rad Studio (Delphi, C++ Builder)", "Geany", 19], ["Rad Studio (Delphi, C++ Builder)", "Goland", 42], ["Rad Studio (Delphi, C++ Builder)", "Helix", 16], ["Rad Studio (Delphi, C++ Builder)", "IPython", 27], ["Rad Studio (Delphi, C++ Builder)", "IntelliJ IDEA", 149], ["Rad Studio (Delphi, C++ Builder)", "Jupyter Notebook/JupyterLab", 81], ["Rad Studio (Delphi, C++ Builder)", "Kate", 20], ["Rad Studio (Delphi, C++ Builder)", "Micro", 11], ["Rad Studio (Delphi, C++ Builder)", "Nano", 72], ["Rad Studio (Delphi, C++ Builder)", "Neovim", 42], ["Rad Studio (Delphi, C++ Builder)", "Netbeans", 53], ["Rad Studio (Delphi, C++ Builder)", "Notepad++", 608], ["Rad Studio (Delphi, C++ Builder)", "Nova", 11], ["Rad Studio (Delphi, C++ Builder)", "PhpStorm", 66], ["Rad Studio (Delphi, C++ Builder)", "PyCharm", 108], ["Rad Studio (Delphi, C++ Builder)", "Qt Creator", 56], ["Rad Studio (Delphi, C++ Builder)", "RStudio", 23], ["Rad Studio (Delphi, C++ Builder)", "Rad Studio (Delphi, C++ Builder)", 1173], ["Rad Studio (Delphi, C++ Builder)", "Rider", 51], ["Rad Studio (Delphi, C++ Builder)", "RubyMine", 19], ["Rad Studio (Delphi, C++ Builder)", "Spyder", 20], ["Rad Studio (Delphi, C++ Builder)", "Sublime Text", 67], ["Rad Studio (Delphi, C++ Builder)", "TextMate", 14], ["Rad Studio (Delphi, C++ Builder)", "VSCodium", 35], ["Rad Studio (Delphi, C++ Builder)", "Vim", 83], ["Rad Studio (Delphi, C++ Builder)", "Visual Studio", 464], ["Rad Studio (Delphi, C++ Builder)", "Visual Studio Code", 591], ["Rad Studio (Delphi, C++ Builder)", "WebStorm", 55], ["Rad Studio (Delphi, C++ Builder)", "Xcode", 132], ["Rad Studio (Delphi, C++ Builder)", "condo", 15], ["Rider", "Android Studio", 437], ["Rider", "Atom", 31], ["Rider", "BBEdit", 22], ["Rider", "CLion", 522], ["Rider", "Code::Blocks", 16], ["Rider", "DataGrip", 862], ["Rider", "Eclipse", 51], ["Rider", "Emacs", 104], ["Rider", "Fleet", 351], ["Rider", "Geany", 19], ["Rider", "Goland", 348], ["Rider", "Helix", 101], ["Rider", "IPython", 56], ["Rider", "IntelliJ IDEA", 1103], ["Rider", "Jupyter Notebook/JupyterLab", 321], ["Rider", "Kate", 52], ["Rider", "Micro", 35], ["Rider", "Nano", 273], ["Rider", "Neovim", 498], ["Rider", "Netbeans", 27], ["Rider", "Notepad++", 929], ["Rider", "Nova", 13], ["Rider", "PhpStorm", 274], ["Rider", "PyCharm", 689], ["Rider", "Qt Creator", 48], ["Rider", "RStudio", 25], ["Rider", "Rad Studio (Delphi, C++ Builder)", 29], ["Rider", "Rider", 3125], ["Rider", "RubyMine", 78], ["Rider", "Spyder", 12], ["Rider", "Sublime Text", 314], ["Rider", "TextMate", 15], ["Rider", "VSCodium", 139], ["Rider", "Vim", 561], ["Rider", "Visual Studio", 1303], ["Rider", "Visual Studio Code", 2663], ["Rider", "WebStorm", 869], ["Rider", "Xcode", 285], ["Rider", "condo", 12], ["RubyMine", "Android Studio", 119], ["RubyMine", "Atom", 30], ["RubyMine", "BBEdit", 19], ["RubyMine", "CLion", 89], ["RubyMine", "Code::Blocks", 13], ["RubyMine", "DataGrip", 157], ["RubyMine", "Eclipse", 29], ["RubyMine", "Emacs", 47], ["RubyMine", "Fleet", 56], ["RubyMine", "Geany", 12], ["RubyMine", "Goland", 132], ["RubyMine", "Helix", 25], ["RubyMine", "IPython", 29], ["RubyMine", "IntelliJ IDEA", 317], ["RubyMine", "Jupyter Notebook/JupyterLab", 74], ["RubyMine", "Kate", 20], ["RubyMine", "Micro", 14], ["RubyMine", "Nano", 65], ["RubyMine", "Neovim", 125], ["RubyMine", "Netbeans", 19], ["RubyMine", "Notepad++", 72], ["RubyMine", "Nova", 15], ["RubyMine", "PhpStorm", 101], ["RubyMine", "PyCharm", 191], ["RubyMine", "Qt Creator", 23], ["RubyMine", "RStudio", 17], ["RubyMine", "Rad Studio (Delphi, C++ Builder)", 14], ["RubyMine", "Rider", 97], ["RubyMine", "RubyMine", 576], ["RubyMine", "Spyder", 10], ["RubyMine", "Sublime Text", 132], ["RubyMine", "TextMate", 16], ["RubyMine", "VSCodium", 25], ["RubyMine", "Vim", 238], ["RubyMine", "Visual Studio", 83], ["RubyMine", "Visual Studio Code", 476], ["RubyMine", "WebStorm", 204], ["RubyMine", "Xcode", 94], ["RubyMine", "condo", 11], ["Spyder", "Android Studio", 129], ["Spyder", "Atom", 47], ["Spyder", "BBEdit", 14], ["Spyder", "CLion", 43], ["Spyder", "Code::Blocks", 27], ["Spyder", "DataGrip", 38], ["Spyder", "Eclipse", 59], ["Spyder", "Emacs", 46], ["Spyder", "Fleet", 25], ["Spyder", "Geany", 24], ["Spyder", "Goland", 41], ["Spyder", "Helix", 22], ["Spyder", "IPython", 145], ["Spyder", "IntelliJ IDEA", 156], ["Spyder", "Jupyter Notebook/JupyterLab", 302], ["Spyder", "Kate", 31], ["Spyder", "Micro", 13], ["Spyder", "Nano", 78], ["Spyder", "Neovim", 77], ["Spyder", "Netbeans", 40], ["Spyder", "Notepad++", 193], ["Spyder", "Nova", 11], ["Spyder", "PhpStorm", 36], ["Spyder", "PyCharm", 196], ["Spyder", "Qt Creator", 40], ["Spyder", "RStudio", 86], ["Spyder", "Rad Studio (Delphi, C++ Builder)", 20], ["Spyder", "Rider", 32], ["Spyder", "RubyMine", 19], ["Spyder", "Spyder", 223], ["Spyder", "Sublime Text", 97], ["Spyder", "TextMate", 13], ["Spyder", "VSCodium", 54], ["Spyder", "Vim", 151], ["Spyder", "Visual Studio", 172], ["Spyder", "Visual Studio Code", 432], ["Spyder", "WebStorm", 49], ["Spyder", "Xcode", 80], ["Spyder", "condo", 22], ["Sublime Text", "Android Studio", 1267], ["Sublime Text", "Atom", 234], ["Sublime Text", "BBEdit", 49], ["Sublime Text", "CLion", 401], ["Sublime Text", "Code::Blocks", 66], ["Sublime Text", "DataGrip", 561], ["Sublime Text", "Eclipse", 352], ["Sublime Text", "Emacs", 239], ["Sublime Text", "Fleet", 239], ["Sublime Text", "Geany", 43], ["Sublime Text", "Goland", 468], ["Sublime Text", "Helix", 139], ["Sublime Text", "IPython", 392], ["Sublime Text", "IntelliJ IDEA", 2369], ["Sublime Text", "Jupyter Notebook/JupyterLab", 1032], ["Sublime Text", "Kate", 77], ["Sublime Text", "Micro", 58], ["Sublime Text", "Nano", 735], ["Sublime Text", "Neovim", 789], ["Sublime Text", "Netbeans", 144], ["Sublime Text", "Notepad++", 1126], ["Sublime Text", "Nova", 35], ["Sublime Text", "PhpStorm", 728], ["Sublime Text", "PyCharm", 1299], ["Sublime Text", "Qt Creator", 160], ["Sublime Text", "RStudio", 121], ["Sublime Text", "Rad Studio (Delphi, C++ Builder)", 67], ["Sublime Text", "Rider", 447], ["Sublime Text", "RubyMine", 170], ["Sublime Text", "Spyder", 72], ["Sublime Text", "Sublime Text", 4571], ["Sublime Text", "TextMate", 60], ["Sublime Text", "VSCodium", 312], ["Sublime Text", "Vim", 1750], ["Sublime Text", "Visual Studio", 1373], ["Sublime Text", "Visual Studio Code", 4783], ["Sublime Text", "WebStorm", 728], ["Sublime Text", "Xcode", 975], ["Sublime Text", "condo", 23], ["TextMate", "Android Studio", 69], ["TextMate", "Atom", 21], ["TextMate", "BBEdit", 22], ["TextMate", "CLion", 19], ["TextMate", "Code::Blocks", 7], ["TextMate", "DataGrip", 34], ["TextMate", "Eclipse", 26], ["TextMate", "Emacs", 18], ["TextMate", "Fleet", 23], ["TextMate", "Geany", 12], ["TextMate", "Goland", 30], ["TextMate", "Helix", 16], ["TextMate", "IPython", 25], ["TextMate", "IntelliJ IDEA", 123], ["TextMate", "Jupyter Notebook/JupyterLab", 58], ["TextMate", "Kate", 13], ["TextMate", "Micro", 11], ["TextMate", "Nano", 57], ["TextMate", "Neovim", 57], ["TextMate", "Netbeans", 16], ["TextMate", "Notepad++", 64], ["TextMate", "Nova", 19], ["TextMate", "PhpStorm", 53], ["TextMate", "PyCharm", 67], ["TextMate", "Qt Creator", 12], ["TextMate", "RStudio", 12], ["TextMate", "Rad Studio (Delphi, C++ Builder)", 13], ["TextMate", "Rider", 28], ["TextMate", "RubyMine", 23], ["TextMate", "Spyder", 9], ["TextMate", "Sublime Text", 73], ["TextMate", "TextMate", 222], ["TextMate", "VSCodium", 27], ["TextMate", "Vim", 123], ["TextMate", "Visual Studio", 50], ["TextMate", "Visual Studio Code", 238], ["TextMate", "WebStorm", 46], ["TextMate", "Xcode", 126], ["TextMate", "condo", 9], ["VSCodium", "Android Studio", 261], ["VSCodium", "Atom", 44], ["VSCodium", "BBEdit", 15], ["VSCodium", "CLion", 171], ["VSCodium", "Code::Blocks", 28], ["VSCodium", "DataGrip", 129], ["VSCodium", "Eclipse", 72], ["VSCodium", "Emacs", 198], ["VSCodium", "Fleet", 109], ["VSCodium", "Geany", 42], ["VSCodium", "Goland", 126], ["VSCodium", "Helix", 172], ["VSCodium", "IPython", 140], ["VSCodium", "IntelliJ IDEA", 481], ["VSCodium", "Jupyter Notebook/JupyterLab", 255], ["VSCodium", "Kate", 115], ["VSCodium", "Micro", 54], ["VSCodium", "Nano", 291], ["VSCodium", "Neovim", 687], ["VSCodium", "Netbeans", 37], ["VSCodium", "Notepad++", 244], ["VSCodium", "Nova", 15], ["VSCodium", "PhpStorm", 110], ["VSCodium", "PyCharm", 235], ["VSCodium", "Qt Creator", 67], ["VSCodium", "RStudio", 38], ["VSCodium", "Rad Studio (Delphi, C++ Builder)", 21], ["VSCodium", "Rider", 152], ["VSCodium", "RubyMine", 32], ["VSCodium", "Spyder", 26], ["VSCodium", "Sublime Text", 180], ["VSCodium", "TextMate", 16], ["VSCodium", "VSCodium", 1481], ["VSCodium", "Vim", 618], ["VSCodium", "Visual Studio", 215], ["VSCodium", "Visual Studio Code", 974], ["VSCodium", "WebStorm", 145], ["VSCodium", "Xcode", 129], ["VSCodium", "condo", 12], ["Vim", "Android Studio", 1389], ["Vim", "Atom", 249], ["Vim", "BBEdit", 108], ["Vim", "CLion", 868], ["Vim", "Code::Blocks", 65], ["Vim", "DataGrip", 837], ["Vim", "Eclipse", 519], ["Vim", "Emacs", 801], ["Vim", "Fleet", 374], ["Vim", "Geany", 101], ["Vim", "Goland", 752], ["Vim", "Helix", 443], ["Vim", "IPython", 904], ["Vim", "IntelliJ IDEA", 3600], ["Vim", "Jupyter Notebook/JupyterLab", 1772], ["Vim", "Kate", 240], ["Vim", "Micro", 48], ["Vim", "Nano", 923], ["Vim", "Neovim", 3206], ["Vim", "Netbeans", 158], ["Vim", "Notepad++", 1918], ["Vim", "Nova", 39], ["Vim", "PhpStorm", 775], ["Vim", "PyCharm", 1899], ["Vim", "Qt Creator", 308], ["Vim", "RStudio", 167], ["Vim", "Rad Studio (Delphi, C++ Builder)", 61], ["Vim", "Rider", 656], ["Vim", "RubyMine", 243], ["Vim", "Spyder", 82], ["Vim", "Sublime Text", 1400], ["Vim", "TextMate", 86], ["Vim", "VSCodium", 770], ["Vim", "Vim", 10214], ["Vim", "Visual Studio", 1606], ["Vim", "Visual Studio Code", 8111], ["Vim", "WebStorm", 871], ["Vim", "Xcode", 1050], ["Vim", "condo", 21], ["Visual Studio", "Android Studio", 2226], ["Visual Studio", "Atom", 235], ["Visual Studio", "BBEdit", 69], ["Visual Studio", "CLion", 755], ["Visual Studio", "Code::Blocks", 110], ["Visual Studio", "DataGrip", 853], ["Visual Studio", "Eclipse", 687], ["Visual Studio", "Emacs", 419], ["Visual Studio", "Fleet", 383], ["Visual Studio", "Geany", 69], ["Visual Studio", "Goland", 457], ["Visual Studio", "Helix", 224], ["Visual Studio", "IPython", 427], ["Visual Studio", "IntelliJ IDEA", 2763], ["Visual Studio", "Jupyter Notebook/JupyterLab", 1569], ["Visual Studio", "Kate", 139], ["Visual Studio", "Micro", 64], ["Visual Studio", "Nano", 950], ["Visual Studio", "Neovim", 1340], ["Visual Studio", "Netbeans", 232], ["Visual Studio", "Notepad++", 5530], ["Visual Studio", "Nova", 28], ["Visual Studio", "PhpStorm", 611], ["Visual Studio", "PyCharm", 1600], ["Visual Studio", "Qt Creator", 400], ["Visual Studio", "RStudio", 193], ["Visual Studio", "Rad Studio (Delphi, C++ Builder)", 445], ["Visual Studio", "Rider", 2513], ["Visual Studio", "RubyMine", 126], ["Visual Studio", "Spyder", 119], ["Visual Studio", "Sublime Text", 1204], ["Visual Studio", "TextMate", 44], ["Visual Studio", "VSCodium", 499], ["Visual Studio", "Vim", 2128], ["Visual Studio", "Visual Studio", 11758], ["Visual Studio", "Visual Studio Code", 12904], ["Visual Studio", "WebStorm", 1067], ["Visual Studio", "Xcode", 1391], ["Visual Studio", "condo", 30], ["Visual Studio Code", "Android Studio", 5032], ["Visual Studio Code", "Atom", 525], ["Visual Studio Code", "BBEdit", 173], ["Visual Studio Code", "CLion", 1666], ["Visual Studio Code", "Code::Blocks", 167], ["Visual Studio Code", "DataGrip", 2288], ["Visual Studio Code", "Eclipse", 1373], ["Visual Studio Code", "Emacs", 1250], ["Visual Studio Code", "Fleet", 1117], ["Visual Studio Code", "Geany", 149], ["Visual Studio Code", "Goland", 1697], ["Visual Studio Code", "Helix", 861], ["Visual Studio Code", "IPython", 1575], ["Visual Studio Code", "IntelliJ IDEA", 9194], ["Visual Studio Code", "Jupyter Notebook/JupyterLab", 4483], ["Visual Studio Code", "Kate", 347], ["Visual Studio Code", "Micro", 196], ["Visual Studio Code", "Nano", 2689], ["Visual Studio Code", "Neovim", 5306], ["Visual Studio Code", "Netbeans", 372], ["Visual Studio Code", "Notepad++", 7663], ["Visual Studio Code", "Nova", 95], ["Visual Studio Code", "PhpStorm", 1865], ["Visual Studio Code", "PyCharm", 4410], ["Visual Studio Code", "Qt Creator", 615], ["Visual Studio Code", "RStudio", 447], ["Visual Studio Code", "Rad Studio (Delphi, C++ Builder)", 474], ["Visual Studio Code", "Rider", 3313], ["Visual Studio Code", "RubyMine", 486], ["Visual Studio Code", "Spyder", 214], ["Visual Studio Code", "Sublime Text", 3086], ["Visual Studio Code", "TextMate", 143], ["Visual Studio Code", "VSCodium", 1568], ["Visual Studio Code", "Vim", 7683], ["Visual Studio Code", "Visual Studio", 10077], ["Visual Studio Code", "Visual Studio Code", 38125], ["Visual Studio Code", "WebStorm", 2957], ["Visual Studio Code", "Xcode", 3586], ["Visual Studio Code", "condo", 45], ["WebStorm", "Android Studio", 851], ["WebStorm", "Atom", 100], ["WebStorm", "BBEdit", 30], ["WebStorm", "CLion", 647], ["WebStorm", "Code::Blocks", 38], ["WebStorm", "DataGrip", 1137], ["WebStorm", "Eclipse", 102], ["WebStorm", "Emacs", 120], ["WebStorm", "Fleet", 480], ["WebStorm", "Geany", 37], ["WebStorm", "Goland", 678], ["WebStorm", "Helix", 93], ["WebStorm", "IPython", 140], ["WebStorm", "IntelliJ IDEA", 2145], ["WebStorm", "Jupyter Notebook/JupyterLab", 477], ["WebStorm", "Kate", 64], ["WebStorm", "Micro", 34], ["WebStorm", "Nano", 431], ["WebStorm", "Neovim", 578], ["WebStorm", "Netbeans", 49], ["WebStorm", "Notepad++", 795], ["WebStorm", "Nova", 20], ["WebStorm", "PhpStorm", 753], ["WebStorm", "PyCharm", 1380], ["WebStorm", "Qt Creator", 61], ["WebStorm", "RStudio", 53], ["WebStorm", "Rad Studio (Delphi, C++ Builder)", 44], ["WebStorm", "Rider", 900], ["WebStorm", "RubyMine", 177], ["WebStorm", "Spyder", 35], ["WebStorm", "Sublime Text", 543], ["WebStorm", "TextMate", 31], ["WebStorm", "VSCodium", 163], ["WebStorm", "Vim", 825], ["WebStorm", "Visual Studio", 733], ["WebStorm", "Visual Studio Code", 2706], ["WebStorm", "WebStorm", 3504], ["WebStorm", "Xcode", 532], ["WebStorm", "condo", 19], ["Xcode", "Android Studio", 1864], ["Xcode", "Atom", 134], ["Xcode", "BBEdit", 147], ["Xcode", "CLion", 290], ["Xcode", "Code::Blocks", 37], ["Xcode", "DataGrip", 381], ["Xcode", "Eclipse", 200], ["Xcode", "Emacs", 252], ["Xcode", "Fleet", 184], ["Xcode", "Geany", 34], ["Xcode", "Goland", 261], ["Xcode", "Helix", 97], ["Xcode", "IPython", 175], ["Xcode", "IntelliJ IDEA", 1408], ["Xcode", "Jupyter Notebook/JupyterLab", 596], ["Xcode", "Kate", 59], ["Xcode", "Micro", 27], ["Xcode", "Nano", 502], ["Xcode", "Neovim", 655], ["Xcode", "Netbeans", 82], ["Xcode", "Notepad++", 762], ["Xcode", "Nova", 70], ["Xcode", "PhpStorm", 337], ["Xcode", "PyCharm", 638], ["Xcode", "Qt Creator", 127], ["Xcode", "RStudio", 56], ["Xcode", "Rad Studio (Delphi, C++ Builder)", 110], ["Xcode", "Rider", 412], ["Xcode", "RubyMine", 115], ["Xcode", "Spyder", 35], ["Xcode", "Sublime Text", 678], ["Xcode", "TextMate", 93], ["Xcode", "VSCodium", 189], ["Xcode", "Vim", 1189], ["Xcode", "Visual Studio", 1167], ["Xcode", "Visual Studio Code", 4235], ["Xcode", "WebStorm", 564], ["Xcode", "Xcode", 3373], ["Xcode", "condo", 17], ["condo", "Android Studio", 22], ["condo", "Atom", 15], ["condo", "BBEdit", 11], ["condo", "CLion", 13], ["condo", "Code::Blocks", 13], ["condo", "DataGrip", 15], ["condo", "Eclipse", 15], ["condo", "Emacs", 14], ["condo", "Fleet", 13], ["condo", "Geany", 11], ["condo", "Goland", 12], ["condo", "Helix", 10], ["condo", "IPython", 17], ["condo", "IntelliJ IDEA", 27], ["condo", "Jupyter Notebook/JupyterLab", 33], ["condo", "Kate", 12], ["condo", "Micro", 9], ["condo", "Nano", 19], ["condo", "Neovim", 18], ["condo", "Netbeans", 13], ["condo", "Notepad++", 24], ["condo", "Nova", 9], ["condo", "PhpStorm", 13], ["condo", "PyCharm", 26], ["condo", "Qt Creator", 13], ["condo", "RStudio", 14], ["condo", "Rad Studio (Delphi, C++ Builder)", 10], ["condo", "Rider", 12], ["condo", "RubyMine", 10], ["condo", "Spyder", 17], ["condo", "Sublime Text", 19], ["condo", "TextMate", 7], ["condo", "VSCodium", 12], ["condo", "Vim", 25], ["condo", "Visual Studio", 22], ["condo", "Visual Studio Code", 43], ["condo", "WebStorm", 20], ["condo", "Xcode", 19], ["condo", "condo", 32]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which asynchronous communication tool do how many professional coders want to use and which tool are they currently using?", "labels": [{"query": "SELECT OfficeStackAsync1.name AS have_worked_with, OfficeStackAsync2.name AS want_to_work_with, COUNT(*) FROM Response_OfficeStackAsyncHaveWorkedWith JOIN OfficeStackAsync AS OfficeStackAsync1 ON Response_OfficeStackAsyncHaveWorkedWith.OfficeStackAsync_id = OfficeStackAsync1.id JOIN Response_OfficeStackAsyncWantToWorkWith ON Response_OfficeStackAsyncWantToWorkWith.Response_id = Response_OfficeStackAsyncHaveWorkedWith.Response_id JOIN Responses ON Response_OfficeStackAsyncWantToWorkWith.Response_id = Responses.id JOIN OfficeStackAsync AS OfficeStackAsync2 ON Response_OfficeStackAsyncWantToWorkWith.OfficeStackAsync_id = OfficeStackAsync2.id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY OfficeStackAsync1.name, OfficeStackAsync2.name", "results": [["Adobe Workfront", "Adobe Workfront", 102], ["Adobe Workfront", "Airtable", 16], ["Adobe Workfront", "Asana", 20], ["Adobe Workfront", "Azure Devops", 47], ["Adobe Workfront", "Basecamp", 13], ["Adobe Workfront", "Cerri", 13], ["Adobe Workfront", "Clickup", 23], ["Adobe Workfront", "Confluence", 34], ["Adobe Workfront", "Dingtalk (Teambition)", 11], ["Adobe Workfront", "Document360", 15], ["Adobe Workfront", "Doxygen", 18], ["Adobe Workfront", "GitHub Discussions", 52], ["Adobe Workfront", "Jira", 60], ["Adobe Workfront", "Leankor", 16], ["Adobe Workfront", "Linear", 15], ["Adobe Workfront", "Markdown File", 32], ["Adobe Workfront", "Microsoft Lists", 28], ["Adobe Workfront", "Microsoft Planner", 30], ["Adobe Workfront", "Miro", 22], ["Adobe Workfront", "Monday.com", 20], ["Adobe Workfront", "Notion", 28], ["Adobe Workfront", "Nuclino", 12], ["Adobe Workfront", "Planview Projectplace Or Clarizen", 15], ["Adobe Workfront", "Redmine", 13], ["Adobe Workfront", "Redocly", 15], ["Adobe Workfront", "Shortcut", 16], ["Adobe Workfront", "Smartsheet", 16], ["Adobe Workfront", "Stack Overflow for Teams", 26], ["Adobe Workfront", "Swit", 18], ["Adobe Workfront", "Tettra", 13], ["Adobe Workfront", "Trello", 34], ["Adobe Workfront", "Wikis", 21], ["Adobe Workfront", "Wimi", 12], ["Adobe Workfront", "Workzone", 20], ["Adobe Workfront", "Wrike", 16], ["Adobe Workfront", "YouTrack", 19], ["Airtable", "Adobe Workfront", 16], ["Airtable", "Airtable", 454], ["Airtable", "Asana", 83], ["Airtable", "Azure Devops", 86], ["Airtable", "Basecamp", 36], ["Airtable", "Cerri", 12], ["Airtable", "Clickup", 68], ["Airtable", "Confluence", 214], ["Airtable", "Dingtalk (Teambition)", 14], ["Airtable", "Document360", 16], ["Airtable", "Doxygen", 32], ["Airtable", "GitHub Discussions", 268], ["Airtable", "Jira", 367], ["Airtable", "Leankor", 14], ["Airtable", "Linear", 123], ["Airtable", "Markdown File", 353], ["Airtable", "Microsoft Lists", 22], ["Airtable", "Microsoft Planner", 18], ["Airtable", "Miro", 215], ["Airtable", "Monday.com", 39], ["Airtable", "Notion", 399], ["Airtable", "Nuclino", 12], ["Airtable", "Planview Projectplace Or Clarizen", 12], ["Airtable", "Redmine", 24], ["Airtable", "Redocly", 12], ["Airtable", "Shortcut", 31], ["Airtable", "Smartsheet", 21], ["Airtable", "Stack Overflow for Teams", 62], ["Airtable", "Swit", 12], ["Airtable", "Tettra", 14], ["Airtable", "Trello", 228], ["Airtable", "Wikis", 85], ["Airtable", "Wimi", 11], ["Airtable", "Workzone", 16], ["Airtable", "Wrike", 20], ["Airtable", "YouTrack", 41], ["Asana", "Adobe Workfront", 23], ["Asana", "Airtable", 107], ["Asana", "Asana", 1128], ["Asana", "Azure Devops", 273], ["Asana", "Basecamp", 69], ["Asana", "Cerri", 13], ["Asana", "Clickup", 144], ["Asana", "Confluence", 444], ["Asana", "Dingtalk (Teambition)", 12], ["Asana", "Document360", 16], ["Asana", "Doxygen", 52], ["Asana", "GitHub Discussions", 503], ["Asana", "Jira", 876], ["Asana", "Leankor", 13], ["Asana", "Linear", 120], ["Asana", "Markdown File", 559], ["Asana", "Microsoft Lists", 31], ["Asana", "Microsoft Planner", 49], ["Asana", "Miro", 330], ["Asana", "Monday.com", 77], ["Asana", "Notion", 715], ["Asana", "Nuclino", 16], ["Asana", "Planview Projectplace Or Clarizen", 12], ["Asana", "Redmine", 44], ["Asana", "Redocly", 20], ["Asana", "Shortcut", 36], ["Asana", "Smartsheet", 30], ["Asana", "Stack Overflow for Teams", 92], ["Asana", "Swit", 15], ["Asana", "Tettra", 13], ["Asana", "Trello", 458], ["Asana", "Wikis", 152], ["Asana", "Wimi", 10], ["Asana", "Workzone", 15], ["Asana", "Wrike", 20], ["Asana", "YouTrack", 67], ["Azure Devops", "Adobe Workfront", 47], ["Azure Devops", "Airtable", 107], ["Azure Devops", "Asana", 172], ["Azure Devops", "Azure Devops", 6405], ["Azure Devops", "Basecamp", 82], ["Azure Devops", "Cerri", 12], ["Azure Devops", "Clickup", 154], ["Azure Devops", "Confluence", 1840], ["Azure Devops", "Dingtalk (Teambition)", 14], ["Azure Devops", "Document360", 25], ["Azure Devops", "Doxygen", 160], ["Azure Devops", "GitHub Discussions", 1381], ["Azure Devops", "Jira", 2576], ["Azure Devops", "Leankor", 14], ["Azure Devops", "Linear", 119], ["Azure Devops", "Markdown File", 2090], ["Azure Devops", "Microsoft Lists", 141], ["Azure Devops", "Microsoft Planner", 230], ["Azure Devops", "Miro", 963], ["Azure Devops", "Monday.com", 118], ["Azure Devops", "Notion", 949], ["Azure Devops", "Nuclino", 18], ["Azure Devops", "Planview Projectplace Or Clarizen", 15], ["Azure Devops", "Redmine", 70], ["Azure Devops", "Redocly", 37], ["Azure Devops", "Shortcut", 37], ["Azure Devops", "Smartsheet", 55], ["Azure Devops", "Stack Overflow for Teams", 405], ["Azure Devops", "Swit", 22], ["Azure Devops", "Tettra", 15], ["Azure Devops", "Trello", 897], ["Azure Devops", "Wikis", 595], ["Azure Devops", "Wimi", 14], ["Azure Devops", "Workzone", 21], ["Azure Devops", "Wrike", 31], ["Azure Devops", "YouTrack", 190], ["Basecamp", "Adobe Workfront", 14], ["Basecamp", "Airtable", 38], ["Basecamp", "Asana", 68], ["Basecamp", "Azure Devops", 102], ["Basecamp", "Basecamp", 336], ["Basecamp", "Cerri", 11], ["Basecamp", "Clickup", 46], ["Basecamp", "Confluence", 148], ["Basecamp", "Dingtalk (Teambition)", 10], ["Basecamp", "Document360", 11], ["Basecamp", "Doxygen", 21], ["Basecamp", "GitHub Discussions", 188], ["Basecamp", "Jira", 274], ["Basecamp", "Leankor", 13], ["Basecamp", "Linear", 36], ["Basecamp", "Markdown File", 173], ["Basecamp", "Microsoft Lists", 16], ["Basecamp", "Microsoft Planner", 21], ["Basecamp", "Miro", 92], ["Basecamp", "Monday.com", 40], ["Basecamp", "Notion", 203], ["Basecamp", "Nuclino", 12], ["Basecamp", "Planview Projectplace Or Clarizen", 11], ["Basecamp", "Redmine", 23], ["Basecamp", "Redocly", 14], ["Basecamp", "Shortcut", 17], ["Basecamp", "Smartsheet", 13], ["Basecamp", "Stack Overflow for Teams", 34], ["Basecamp", "Swit", 10], ["Basecamp", "Tettra", 10], ["Basecamp", "Trello", 168], ["Basecamp", "Wikis", 69], ["Basecamp", "Wimi", 10], ["Basecamp", "Workzone", 13], ["Basecamp", "Wrike", 15], ["Basecamp", "YouTrack", 25], ["Cerri", "Adobe Workfront", 10], ["Cerri", "Airtable", 11], ["Cerri", "Asana", 14], ["Cerri", "Azure Devops", 13], ["Cerri", "Basecamp", 9], ["Cerri", "Cerri", 15], ["Cerri", "Clickup", 13], ["Cerri", "Confluence", 10], ["Cerri", "Dingtalk (Teambition)", 10], ["Cerri", "Document360", 10], ["Cerri", "Doxygen", 13], ["Cerri", "GitHub Discussions", 13], ["Cerri", "Jira", 14], ["Cerri", "Leankor", 12], ["Cerri", "Linear", 13], ["Cerri", "Markdown File", 13], ["Cerri", "Microsoft Lists", 11], ["Cerri", "Microsoft Planner", 13], ["Cerri", "Miro", 12], ["Cerri", "Monday.com", 11], ["Cerri", "Notion", 10], ["Cerri", "Nuclino", 11], ["Cerri", "Planview Projectplace Or Clarizen", 11], ["Cerri", "Redmine", 11], ["Cerri", "Redocly", 12], ["Cerri", "Shortcut", 12], ["Cerri", "Smartsheet", 11], ["Cerri", "Stack Overflow for Teams", 11], ["Cerri", "Swit", 11], ["Cerri", "Tettra", 11], ["Cerri", "Trello", 12], ["Cerri", "Wikis", 11], ["Cerri", "Wimi", 11], ["Cerri", "Workzone", 12], ["Cerri", "Wrike", 12], ["Cerri", "YouTrack", 12], ["Clickup", "Adobe Workfront", 21], ["Clickup", "Airtable", 71], ["Clickup", "Asana", 101], ["Clickup", "Azure Devops", 195], ["Clickup", "Basecamp", 43], ["Clickup", "Cerri", 11], ["Clickup", "Clickup", 1090], ["Clickup", "Confluence", 265], ["Clickup", "Dingtalk (Teambition)", 10], ["Clickup", "Document360", 16], ["Clickup", "Doxygen", 41], ["Clickup", "GitHub Discussions", 359], ["Clickup", "Jira", 607], ["Clickup", "Leankor", 13], ["Clickup", "Linear", 130], ["Clickup", "Markdown File", 436], ["Clickup", "Microsoft Lists", 22], ["Clickup", "Microsoft Planner", 36], ["Clickup", "Miro", 271], ["Clickup", "Monday.com", 52], ["Clickup", "Notion", 576], ["Clickup", "Nuclino", 12], ["Clickup", "Planview Projectplace Or Clarizen", 12], ["Clickup", "Redmine", 24], ["Clickup", "Redocly", 21], ["Clickup", "Shortcut", 38], ["Clickup", "Smartsheet", 21], ["Clickup", "Stack Overflow for Teams", 81], ["Clickup", "Swit", 13], ["Clickup", "Tettra", 13], ["Clickup", "Trello", 325], ["Clickup", "Wikis", 89], ["Clickup", "Wimi", 10], ["Clickup", "Workzone", 17], ["Clickup", "Wrike", 17], ["Clickup", "YouTrack", 62], ["Confluence", "Adobe Workfront", 39], ["Confluence", "Airtable", 272], ["Confluence", "Asana", 400], ["Confluence", "Azure Devops", 2294], ["Confluence", "Basecamp", 205], ["Confluence", "Cerri", 9], ["Confluence", "Clickup", 321], ["Confluence", "Confluence", 11042], ["Confluence", "Dingtalk (Teambition)", 13], ["Confluence", "Document360", 33], ["Confluence", "Doxygen", 541], ["Confluence", "GitHub Discussions", 2775], ["Confluence", "Jira", 10481], ["Confluence", "Leankor", 12], ["Confluence", "Linear", 423], ["Confluence", "Markdown File", 5249], ["Confluence", "Microsoft Lists", 80], ["Confluence", "Microsoft Planner", 159], ["Confluence", "Miro", 2897], ["Confluence", "Monday.com", 240], ["Confluence", "Notion", 2811], ["Confluence", "Nuclino", 31], ["Confluence", "Planview Projectplace Or Clarizen", 12], ["Confluence", "Redmine", 148], ["Confluence", "Redocly", 71], ["Confluence", "Shortcut", 81], ["Confluence", "Smartsheet", 86], ["Confluence", "Stack Overflow for Teams", 723], ["Confluence", "Swit", 17], ["Confluence", "Tettra", 11], ["Confluence", "Trello", 2068], ["Confluence", "Wikis", 1039], ["Confluence", "Wimi", 11], ["Confluence", "Workzone", 19], ["Confluence", "Wrike", 38], ["Confluence", "YouTrack", 425], ["Dingtalk (Teambition)", "Adobe Workfront", 11], ["Dingtalk (Teambition)", "Airtable", 15], ["Dingtalk (Teambition)", "Asana", 13], ["Dingtalk (Teambition)", "Azure Devops", 15], ["Dingtalk (Teambition)", "Basecamp", 11], ["Dingtalk (Teambition)", "Cerri", 11], ["Dingtalk (Teambition)", "Clickup", 12], ["Dingtalk (Teambition)", "Confluence", 16], ["Dingtalk (Teambition)", "Dingtalk (Teambition)", 30], ["Dingtalk (Teambition)", "Document360", 12], ["Dingtalk (Teambition)", "Doxygen", 13], ["Dingtalk (Teambition)", "GitHub Discussions", 20], ["Dingtalk (Teambition)", "Jira", 21], ["Dingtalk (Teambition)", "Leankor", 13], ["Dingtalk (Teambition)", "Linear", 11], ["Dingtalk (Teambition)", "Markdown File", 28], ["Dingtalk (Teambition)", "Microsoft Lists", 11], ["Dingtalk (Teambition)", "Microsoft Planner", 14], ["Dingtalk (Teambition)", "Miro", 12], ["Dingtalk (Teambition)", "Monday.com", 11], ["Dingtalk (Teambition)", "Notion", 19], ["Dingtalk (Teambition)", "Nuclino", 11], ["Dingtalk (Teambition)", "Planview Projectplace Or Clarizen", 13], ["Dingtalk (Teambition)", "Redmine", 13], ["Dingtalk (Teambition)", "Redocly", 12], ["Dingtalk (Teambition)", "Shortcut", 11], ["Dingtalk (Teambition)", "Smartsheet", 11], ["Dingtalk (Teambition)", "Stack Overflow for Teams", 10], ["Dingtalk (Teambition)", "Swit", 10], ["Dingtalk (Teambition)", "Tettra", 11], ["Dingtalk (Teambition)", "Trello", 18], ["Dingtalk (Teambition)", "Wikis", 11], ["Dingtalk (Teambition)", "Wimi", 10], ["Dingtalk (Teambition)", "Workzone", 12], ["Dingtalk (Teambition)", "Wrike", 11], ["Dingtalk (Teambition)", "YouTrack", 13], ["Document360", "Adobe Workfront", 19], ["Document360", "Airtable", 15], ["Document360", "Asana", 19], ["Document360", "Azure Devops", 32], ["Document360", "Basecamp", 15], ["Document360", "Cerri", 13], ["Document360", "Clickup", 19], ["Document360", "Confluence", 35], ["Document360", "Dingtalk (Teambition)", 13], ["Document360", "Document360", 47], ["Document360", "Doxygen", 18], ["Document360", "GitHub Discussions", 39], ["Document360", "Jira", 49], ["Document360", "Leankor", 15], ["Document360", "Linear", 16], ["Document360", "Markdown File", 35], ["Document360", "Microsoft Lists", 16], ["Document360", "Microsoft Planner", 19], ["Document360", "Miro", 25], ["Document360", "Monday.com", 15], ["Document360", "Notion", 21], ["Document360", "Nuclino", 13], ["Document360", "Planview Projectplace Or Clarizen", 14], ["Document360", "Redmine", 17], ["Document360", "Redocly", 14], ["Document360", "Shortcut", 16], ["Document360", "Smartsheet", 15], ["Document360", "Stack Overflow for Teams", 19], ["Document360", "Swit", 13], ["Document360", "Tettra", 15], ["Document360", "Trello", 29], ["Document360", "Wikis", 19], ["Document360", "Wimi", 13], ["Document360", "Workzone", 18], ["Document360", "Wrike", 14], ["Document360", "YouTrack", 19], ["Doxygen", "Adobe Workfront", 15], ["Doxygen", "Airtable", 25], ["Doxygen", "Asana", 36], ["Doxygen", "Azure Devops", 164], ["Doxygen", "Basecamp", 18], ["Doxygen", "Cerri", 12], ["Doxygen", "Clickup", 30], ["Doxygen", "Confluence", 469], ["Doxygen", "Dingtalk (Teambition)", 12], ["Doxygen", "Document360", 16], ["Doxygen", "Doxygen", 1106], ["Doxygen", "GitHub Discussions", 341], ["Doxygen", "Jira", 648], ["Doxygen", "Leankor", 13], ["Doxygen", "Linear", 25], ["Doxygen", "Markdown File", 869], ["Doxygen", "Microsoft Lists", 23], ["Doxygen", "Microsoft Planner", 34], ["Doxygen", "Miro", 126], ["Doxygen", "Monday.com", 31], ["Doxygen", "Notion", 184], ["Doxygen", "Nuclino", 11], ["Doxygen", "Planview Projectplace Or Clarizen", 13], ["Doxygen", "Redmine", 80], ["Doxygen", "Redocly", 20], ["Doxygen", "Shortcut", 19], ["Doxygen", "Smartsheet", 15], ["Doxygen", "Stack Overflow for Teams", 61], ["Doxygen", "Swit", 14], ["Doxygen", "Tettra", 13], ["Doxygen", "Trello", 188], ["Doxygen", "Wikis", 272], ["Doxygen", "Wimi", 11], ["Doxygen", "Workzone", 17], ["Doxygen", "Wrike", 11], ["Doxygen", "YouTrack", 59], ["GitHub Discussions", "Adobe Workfront", 64], ["GitHub Discussions", "Airtable", 193], ["GitHub Discussions", "Asana", 255], ["GitHub Discussions", "Azure Devops", 1027], ["GitHub Discussions", "Basecamp", 136], ["GitHub Discussions", "Cerri", 16], ["GitHub Discussions", "Clickup", 210], ["GitHub Discussions", "Confluence", 1343], ["GitHub Discussions", "Dingtalk (Teambition)", 21], ["GitHub Discussions", "Document360", 31], ["GitHub Discussions", "Doxygen", 248], ["GitHub Discussions", "GitHub Discussions", 6360], ["GitHub Discussions", "Jira", 2214], ["GitHub Discussions", "Leankor", 16], ["GitHub Discussions", "Linear", 328], ["GitHub Discussions", "Markdown File", 2827], ["GitHub Discussions", "Microsoft Lists", 88], ["GitHub Discussions", "Microsoft Planner", 123], ["GitHub Discussions", "Miro", 831], ["GitHub Discussions", "Monday.com", 134], ["GitHub Discussions", "Notion", 1530], ["GitHub Discussions", "Nuclino", 26], ["GitHub Discussions", "Planview Projectplace Or Clarizen", 16], ["GitHub Discussions", "Redmine", 102], ["GitHub Discussions", "Redocly", 36], ["GitHub Discussions", "Shortcut", 69], ["GitHub Discussions", "Smartsheet", 44], ["GitHub Discussions", "Stack Overflow for Teams", 432], ["GitHub Discussions", "Swit", 23], ["GitHub Discussions", "Tettra", 17], ["GitHub Discussions", "Trello", 1024], ["GitHub Discussions", "Wikis", 729], ["GitHub Discussions", "Wimi", 16], ["GitHub Discussions", "Workzone", 21], ["GitHub Discussions", "Wrike", 27], ["GitHub Discussions", "YouTrack", 245], ["Jira", "Adobe Workfront", 68], ["Jira", "Airtable", 396], ["Jira", "Asana", 692], ["Jira", "Azure Devops", 3204], ["Jira", "Basecamp", 331], ["Jira", "Cerri", 14], ["Jira", "Clickup", 587], ["Jira", "Confluence", 9612], ["Jira", "Dingtalk (Teambition)", 19], ["Jira", "Document360", 47], ["Jira", "Doxygen", 677], ["Jira", "GitHub Discussions", 3950], ["Jira", "Jira", 18116], ["Jira", "Leankor", 18], ["Jira", "Linear", 734], ["Jira", "Markdown File", 6741], ["Jira", "Microsoft Lists", 137], ["Jira", "Microsoft Planner", 246], ["Jira", "Miro", 3792], ["Jira", "Monday.com", 407], ["Jira", "Notion", 4622], ["Jira", "Nuclino", 46], ["Jira", "Planview Projectplace Or Clarizen", 17], ["Jira", "Redmine", 258], ["Jira", "Redocly", 91], ["Jira", "Shortcut", 139], ["Jira", "Smartsheet", 108], ["Jira", "Stack Overflow for Teams", 1014], ["Jira", "Swit", 35], ["Jira", "Tettra", 20], ["Jira", "Trello", 3356], ["Jira", "Wikis", 1499], ["Jira", "Wimi", 13], ["Jira", "Workzone", 30], ["Jira", "Wrike", 52], ["Jira", "YouTrack", 611], ["Leankor", "Adobe Workfront", 11], ["Leankor", "Airtable", 11], ["Leankor", "Asana", 12], ["Leankor", "Azure Devops", 13], ["Leankor", "Basecamp", 10], ["Leankor", "Cerri", 10], ["Leankor", "Clickup", 13], ["Leankor", "Confluence", 11], ["Leankor", "Dingtalk (Teambition)", 11], ["Leankor", "Document360", 11], ["Leankor", "Doxygen", 12], ["Leankor", "GitHub Discussions", 12], ["Leankor", "Jira", 12], ["Leankor", "Leankor", 14], ["Leankor", "Linear", 12], ["Leankor", "Markdown File", 12], ["Leankor", "Microsoft Lists", 12], ["Leankor", "Microsoft Planner", 11], ["Leankor", "Miro", 12], ["Leankor", "Monday.com", 12], ["Leankor", "Notion", 14], ["Leankor", "Nuclino", 10], ["Leankor", "Planview Projectplace Or Clarizen", 10], ["Leankor", "Redmine", 10], ["Leankor", "Redocly", 10], ["Leankor", "Shortcut", 12], ["Leankor", "Smartsheet", 13], ["Leankor", "Stack Overflow for Teams", 10], ["Leankor", "Swit", 11], ["Leankor", "Tettra", 11], ["Leankor", "Trello", 11], ["Leankor", "Wikis", 12], ["Leankor", "Wimi", 12], ["Leankor", "Workzone", 12], ["Leankor", "Wrike", 11], ["Leankor", "YouTrack", 12], ["Linear", "Adobe Workfront", 16], ["Linear", "Airtable", 60], ["Linear", "Asana", 34], ["Linear", "Azure Devops", 40], ["Linear", "Basecamp", 40], ["Linear", "Cerri", 12], ["Linear", "Clickup", 46], ["Linear", "Confluence", 83], ["Linear", "Dingtalk (Teambition)", 11], ["Linear", "Document360", 14], ["Linear", "Doxygen", 17], ["Linear", "GitHub Discussions", 226], ["Linear", "Jira", 157], ["Linear", "Leankor", 15], ["Linear", "Linear", 1009], ["Linear", "Markdown File", 251], ["Linear", "Microsoft Lists", 17], ["Linear", "Microsoft Planner", 19], ["Linear", "Miro", 163], ["Linear", "Monday.com", 21], ["Linear", "Notion", 562], ["Linear", "Nuclino", 13], ["Linear", "Planview Projectplace Or Clarizen", 13], ["Linear", "Redmine", 16], ["Linear", "Redocly", 17], ["Linear", "Shortcut", 25], ["Linear", "Smartsheet", 15], ["Linear", "Stack Overflow for Teams", 50], ["Linear", "Swit", 13], ["Linear", "Tettra", 13], ["Linear", "Trello", 117], ["Linear", "Wikis", 45], ["Linear", "Wimi", 11], ["Linear", "Workzone", 15], ["Linear", "Wrike", 15], ["Linear", "YouTrack", 32], ["Markdown File", "Adobe Workfront", 37], ["Markdown File", "Airtable", 242], ["Markdown File", "Asana", 304], ["Markdown File", "Azure Devops", 1690], ["Markdown File", "Basecamp", 152], ["Markdown File", "Cerri", 11], ["Markdown File", "Clickup", 264], ["Markdown File", "Confluence", 3033], ["Markdown File", "Dingtalk (Teambition)", 21], ["Markdown File", "Document360", 27], ["Markdown File", "Doxygen", 695], ["Markdown File", "GitHub Discussions", 3014], ["Markdown File", "Jira", 4211], ["Markdown File", "Leankor", 12], ["Markdown File", "Linear", 345], ["Markdown File", "Markdown File", 12068], ["Markdown File", "Microsoft Lists", 118], ["Markdown File", "Microsoft Planner", 173], ["Markdown File", "Miro", 1569], ["Markdown File", "Monday.com", 172], ["Markdown File", "Notion", 2355], ["Markdown File", "Nuclino", 33], ["Markdown File", "Planview Projectplace Or Clarizen", 15], ["Markdown File", "Redmine", 220], ["Markdown File", "Redocly", 59], ["Markdown File", "Shortcut", 82], ["Markdown File", "Smartsheet", 63], ["Markdown File", "Stack Overflow for Teams", 522], ["Markdown File", "Swit", 19], ["Markdown File", "Tettra", 13], ["Markdown File", "Trello", 1558], ["Markdown File", "Wikis", 1635], ["Markdown File", "Wimi", 13], ["Markdown File", "Workzone", 24], ["Markdown File", "Wrike", 43], ["Markdown File", "YouTrack", 362], ["Microsoft Lists", "Adobe Workfront", 25], ["Microsoft Lists", "Airtable", 20], ["Microsoft Lists", "Asana", 31], ["Microsoft Lists", "Azure Devops", 171], ["Microsoft Lists", "Basecamp", 18], ["Microsoft Lists", "Cerri", 13], ["Microsoft Lists", "Clickup", 29], ["Microsoft Lists", "Confluence", 89], ["Microsoft Lists", "Dingtalk (Teambition)", 13], ["Microsoft Lists", "Document360", 15], ["Microsoft Lists", "Doxygen", 24], ["Microsoft Lists", "GitHub Discussions", 114], ["Microsoft Lists", "Jira", 149], ["Microsoft Lists", "Leankor", 16], ["Microsoft Lists", "Linear", 23], ["Microsoft Lists", "Markdown File", 160], ["Microsoft Lists", "Microsoft Lists", 219], ["Microsoft Lists", "Microsoft Planner", 119], ["Microsoft Lists", "Miro", 55], ["Microsoft Lists", "Monday.com", 23], ["Microsoft Lists", "Notion", 77], ["Microsoft Lists", "Nuclino", 12], ["Microsoft Lists", "Planview Projectplace Or Clarizen", 14], ["Microsoft Lists", "Redmine", 18], ["Microsoft Lists", "Redocly", 13], ["Microsoft Lists", "Shortcut", 16], ["Microsoft Lists", "Smartsheet", 20], ["Microsoft Lists", "Stack Overflow for Teams", 50], ["Microsoft Lists", "Swit", 12], ["Microsoft Lists", "Tettra", 14], ["Microsoft Lists", "Trello", 63], ["Microsoft Lists", "Wikis", 65], ["Microsoft Lists", "Wimi", 13], ["Microsoft Lists", "Workzone", 22], ["Microsoft Lists", "Wrike", 15], ["Microsoft Lists", "YouTrack", 26], ["Microsoft Planner", "Adobe Workfront", 29], ["Microsoft Planner", "Airtable", 22], ["Microsoft Planner", "Asana", 51], ["Microsoft Planner", "Azure Devops", 339], ["Microsoft Planner", "Basecamp", 22], ["Microsoft Planner", "Cerri", 13], ["Microsoft Planner", "Clickup", 45], ["Microsoft Planner", "Confluence", 202], ["Microsoft Planner", "Dingtalk (Teambition)", 13], ["Microsoft Planner", "Document360", 17], ["Microsoft Planner", "Doxygen", 43], ["Microsoft Planner", "GitHub Discussions", 194], ["Microsoft Planner", "Jira", 321], ["Microsoft Planner", "Leankor", 15], ["Microsoft Planner", "Linear", 25], ["Microsoft Planner", "Markdown File", 288], ["Microsoft Planner", "Microsoft Lists", 122], ["Microsoft Planner", "Microsoft Planner", 456], ["Microsoft Planner", "Miro", 104], ["Microsoft Planner", "Monday.com", 38], ["Microsoft Planner", "Notion", 135], ["Microsoft Planner", "Nuclino", 12], ["Microsoft Planner", "Planview Projectplace Or Clarizen", 14], ["Microsoft Planner", "Redmine", 33], ["Microsoft Planner", "Redocly", 13], ["Microsoft Planner", "Shortcut", 17], ["Microsoft Planner", "Smartsheet", 29], ["Microsoft Planner", "Stack Overflow for Teams", 78], ["Microsoft Planner", "Swit", 14], ["Microsoft Planner", "Tettra", 14], ["Microsoft Planner", "Trello", 150], ["Microsoft Planner", "Wikis", 92], ["Microsoft Planner", "Wimi", 13], ["Microsoft Planner", "Workzone", 19], ["Microsoft Planner", "Wrike", 16], ["Microsoft Planner", "YouTrack", 40], ["Miro", "Adobe Workfront", 25], ["Miro", "Airtable", 213], ["Miro", "Asana", 245], ["Miro", "Azure Devops", 1119], ["Miro", "Basecamp", 127], ["Miro", "Cerri", 12], ["Miro", "Clickup", 245], ["Miro", "Confluence", 2649], ["Miro", "Dingtalk (Teambition)", 11], ["Miro", "Document360", 18], ["Miro", "Doxygen", 158], ["Miro", "GitHub Discussions", 1349], ["Miro", "Jira", 3788], ["Miro", "Leankor", 12], ["Miro", "Linear", 377], ["Miro", "Markdown File", 2436], ["Miro", "Microsoft Lists", 49], ["Miro", "Microsoft Planner", 93], ["Miro", "Miro", 4787], ["Miro", "Monday.com", 146], ["Miro", "Notion", 2019], ["Miro", "Nuclino", 26], ["Miro", "Planview Projectplace Or Clarizen", 12], ["Miro", "Redmine", 81], ["Miro", "Redocly", 41], ["Miro", "Shortcut", 97], ["Miro", "Smartsheet", 37], ["Miro", "Stack Overflow for Teams", 310], ["Miro", "Swit", 16], ["Miro", "Tettra", 15], ["Miro", "Trello", 1198], ["Miro", "Wikis", 503], ["Miro", "Wimi", 12], ["Miro", "Workzone", 14], ["Miro", "Wrike", 30], ["Miro", "YouTrack", 209], ["Monday.com", "Adobe Workfront", 19], ["Monday.com", "Airtable", 49], ["Monday.com", "Asana", 74], ["Monday.com", "Azure Devops", 191], ["Monday.com", "Basecamp", 29], ["Monday.com", "Cerri", 13], ["Monday.com", "Clickup", 67], ["Monday.com", "Confluence", 249], ["Monday.com", "Dingtalk (Teambition)", 12], ["Monday.com", "Document360", 15], ["Monday.com", "Doxygen", 35], ["Monday.com", "GitHub Discussions", 237], ["Monday.com", "Jira", 457], ["Monday.com", "Leankor", 14], ["Monday.com", "Linear", 74], ["Monday.com", "Markdown File", 330], ["Monday.com", "Microsoft Lists", 24], ["Monday.com", "Microsoft Planner", 28], ["Monday.com", "Miro", 181], ["Monday.com", "Monday.com", 478], ["Monday.com", "Notion", 339], ["Monday.com", "Nuclino", 17], ["Monday.com", "Planview Projectplace Or Clarizen", 14], ["Monday.com", "Redmine", 27], ["Monday.com", "Redocly", 16], ["Monday.com", "Shortcut", 25], ["Monday.com", "Smartsheet", 22], ["Monday.com", "Stack Overflow for Teams", 71], ["Monday.com", "Swit", 13], ["Monday.com", "Tettra", 12], ["Monday.com", "Trello", 240], ["Monday.com", "Wikis", 98], ["Monday.com", "Wimi", 11], ["Monday.com", "Workzone", 17], ["Monday.com", "Wrike", 19], ["Monday.com", "YouTrack", 43], ["Notion", "Adobe Workfront", 24], ["Notion", "Airtable", 314], ["Notion", "Asana", 398], ["Notion", "Azure Devops", 773], ["Notion", "Basecamp", 189], ["Notion", "Cerri", 13], ["Notion", "Clickup", 370], ["Notion", "Confluence", 1492], ["Notion", "Dingtalk (Teambition)", 16], ["Notion", "Document360", 22], ["Notion", "Doxygen", 127], ["Notion", "GitHub Discussions", 1818], ["Notion", "Jira", 3012], ["Notion", "Leankor", 14], ["Notion", "Linear", 857], ["Notion", "Markdown File", 2546], ["Notion", "Microsoft Lists", 62], ["Notion", "Microsoft Planner", 94], ["Notion", "Miro", 1493], ["Notion", "Monday.com", 191], ["Notion", "Notion", 6723], ["Notion", "Nuclino", 27], ["Notion", "Planview Projectplace Or Clarizen", 15], ["Notion", "Redmine", 78], ["Notion", "Redocly", 47], ["Notion", "Shortcut", 164], ["Notion", "Smartsheet", 32], ["Notion", "Stack Overflow for Teams", 277], ["Notion", "Swit", 18], ["Notion", "Tettra", 15], ["Notion", "Trello", 1342], ["Notion", "Wikis", 442], ["Notion", "Wimi", 11], ["Notion", "Workzone", 17], ["Notion", "Wrike", 34], ["Notion", "YouTrack", 261], ["Nuclino", "Adobe Workfront", 11], ["Nuclino", "Airtable", 12], ["Nuclino", "Asana", 15], ["Nuclino", "Azure Devops", 22], ["Nuclino", "Basecamp", 13], ["Nuclino", "Cerri", 11], ["Nuclino", "Clickup", 14], ["Nuclino", "Confluence", 29], ["Nuclino", "Dingtalk (Teambition)", 10], ["Nuclino", "Document360", 12], ["Nuclino", "Doxygen", 12], ["Nuclino", "GitHub Discussions", 31], ["Nuclino", "Jira", 40], ["Nuclino", "Leankor", 13], ["Nuclino", "Linear", 14], ["Nuclino", "Markdown File", 48], ["Nuclino", "Microsoft Lists", 12], ["Nuclino", "Microsoft Planner", 15], ["Nuclino", "Miro", 30], ["Nuclino", "Monday.com", 15], ["Nuclino", "Notion", 35], ["Nuclino", "Nuclino", 49], ["Nuclino", "Planview Projectplace Or Clarizen", 13], ["Nuclino", "Redmine", 12], ["Nuclino", "Redocly", 12], ["Nuclino", "Shortcut", 13], ["Nuclino", "Smartsheet", 11], ["Nuclino", "Stack Overflow for Teams", 12], ["Nuclino", "Swit", 10], ["Nuclino", "Tettra", 11], ["Nuclino", "Trello", 30], ["Nuclino", "Wikis", 14], ["Nuclino", "Wimi", 10], ["Nuclino", "Workzone", 12], ["Nuclino", "Wrike", 10], ["Nuclino", "YouTrack", 15], ["Planview Projectplace Or Clarizen", "Adobe Workfront", 12], ["Planview Projectplace Or Clarizen", "Airtable", 13], ["Planview Projectplace Or Clarizen", "Asana", 14], ["Planview Projectplace Or Clarizen", "Azure Devops", 15], ["Planview Projectplace Or Clarizen", "Basecamp", 11], ["Planview Projectplace Or Clarizen", "Cerri", 11], ["Planview Projectplace Or Clarizen", "Clickup", 15], ["Planview Projectplace Or Clarizen", "Confluence", 20], ["Planview Projectplace Or Clarizen", "Dingtalk (Teambition)", 11], ["Planview Projectplace Or Clarizen", "Document360", 12], ["Planview Projectplace Or Clarizen", "Doxygen", 14], ["Planview Projectplace Or Clarizen", "GitHub Discussions", 18], ["Planview Projectplace Or Clarizen", "Jira", 26], ["Planview Projectplace Or Clarizen", "Leankor", 13], ["Planview Projectplace Or Clarizen", "Linear", 14], ["Planview Projectplace Or Clarizen", "Markdown File", 23], ["Planview Projectplace Or Clarizen", "Microsoft Lists", 13], ["Planview Projectplace Or Clarizen", "Microsoft Planner", 15], ["Planview Projectplace Or Clarizen", "Miro", 17], ["Planview Projectplace Or Clarizen", "Monday.com", 13], ["Planview Projectplace Or Clarizen", "Notion", 17], ["Planview Projectplace Or Clarizen", "Nuclino", 11], ["Planview Projectplace Or Clarizen", "Planview Projectplace Or Clarizen", 20], ["Planview Projectplace Or Clarizen", "Redmine", 14], ["Planview Projectplace Or Clarizen", "Redocly", 12], ["Planview Projectplace Or Clarizen", "Shortcut", 14], ["Planview Projectplace Or Clarizen", "Smartsheet", 15], ["Planview Projectplace Or Clarizen", "Stack Overflow for Teams", 12], ["Planview Projectplace Or Clarizen", "Swit", 12], ["Planview Projectplace Or Clarizen", "Tettra", 12], ["Planview Projectplace Or Clarizen", "Trello", 17], ["Planview Projectplace Or Clarizen", "Wikis", 14], ["Planview Projectplace Or Clarizen", "Wimi", 11], ["Planview Projectplace Or Clarizen", "Workzone", 14], ["Planview Projectplace Or Clarizen", "Wrike", 11], ["Planview Projectplace Or Clarizen", "YouTrack", 16], ["Redmine", "Adobe Workfront", 15], ["Redmine", "Airtable", 26], ["Redmine", "Asana", 45], ["Redmine", "Azure Devops", 163], ["Redmine", "Basecamp", 27], ["Redmine", "Cerri", 11], ["Redmine", "Clickup", 43], ["Redmine", "Confluence", 272], ["Redmine", "Dingtalk (Teambition)", 10], ["Redmine", "Document360", 12], ["Redmine", "Doxygen", 105], ["Redmine", "GitHub Discussions", 189], ["Redmine", "Jira", 503], ["Redmine", "Leankor", 12], ["Redmine", "Linear", 30], ["Redmine", "Markdown File", 411], ["Redmine", "Microsoft Lists", 19], ["Redmine", "Microsoft Planner", 31], ["Redmine", "Miro", 135], ["Redmine", "Monday.com", 31], ["Redmine", "Notion", 193], ["Redmine", "Nuclino", 10], ["Redmine", "Planview Projectplace Or Clarizen", 12], ["Redmine", "Redmine", 650], ["Redmine", "Redocly", 13], ["Redmine", "Shortcut", 15], ["Redmine", "Smartsheet", 17], ["Redmine", "Stack Overflow for Teams", 53], ["Redmine", "Swit", 12], ["Redmine", "Tettra", 11], ["Redmine", "Trello", 242], ["Redmine", "Wikis", 156], ["Redmine", "Wimi", 10], ["Redmine", "Workzone", 14], ["Redmine", "Wrike", 14], ["Redmine", "YouTrack", 64], ["Redocly", "Adobe Workfront", 12], ["Redocly", "Airtable", 14], ["Redocly", "Asana", 17], ["Redocly", "Azure Devops", 31], ["Redocly", "Basecamp", 11], ["Redocly", "Cerri", 11], ["Redocly", "Clickup", 14], ["Redocly", "Confluence", 50], ["Redocly", "Dingtalk (Teambition)", 11], ["Redocly", "Document360", 11], ["Redocly", "Doxygen", 17], ["Redocly", "GitHub Discussions", 43], ["Redocly", "Jira", 78], ["Redocly", "Leankor", 12], ["Redocly", "Linear", 19], ["Redocly", "Markdown File", 67], ["Redocly", "Microsoft Lists", 13], ["Redocly", "Microsoft Planner", 14], ["Redocly", "Miro", 38], ["Redocly", "Monday.com", 14], ["Redocly", "Notion", 46], ["Redocly", "Nuclino", 11], ["Redocly", "Planview Projectplace Or Clarizen", 11], ["Redocly", "Redmine", 12], ["Redocly", "Redocly", 101], ["Redocly", "Shortcut", 13], ["Redocly", "Smartsheet", 14], ["Redocly", "Stack Overflow for Teams", 17], ["Redocly", "Swit", 12], ["Redocly", "Tettra", 12], ["Redocly", "Trello", 24], ["Redocly", "Wikis", 19], ["Redocly", "Wimi", 12], ["Redocly", "Workzone", 13], ["Redocly", "Wrike", 11], ["Redocly", "YouTrack", 16], ["Shortcut", "Adobe Workfront", 13], ["Shortcut", "Airtable", 29], ["Shortcut", "Asana", 26], ["Shortcut", "Azure Devops", 29], ["Shortcut", "Basecamp", 24], ["Shortcut", "Cerri", 12], ["Shortcut", "Clickup", 31], ["Shortcut", "Confluence", 57], ["Shortcut", "Dingtalk (Teambition)", 10], ["Shortcut", "Document360", 13], ["Shortcut", "Doxygen", 20], ["Shortcut", "GitHub Discussions", 91], ["Shortcut", "Jira", 87], ["Shortcut", "Leankor", 14], ["Shortcut", "Linear", 49], ["Shortcut", "Markdown File", 124], ["Shortcut", "Microsoft Lists", 13], ["Shortcut", "Microsoft Planner", 15], ["Shortcut", "Miro", 80], ["Shortcut", "Monday.com", 16], ["Shortcut", "Notion", 192], ["Shortcut", "Nuclino", 11], ["Shortcut", "Planview Projectplace Or Clarizen", 12], ["Shortcut", "Redmine", 14], ["Shortcut", "Redocly", 13], ["Shortcut", "Shortcut", 318], ["Shortcut", "Smartsheet", 14], ["Shortcut", "Stack Overflow for Teams", 23], ["Shortcut", "Swit", 13], ["Shortcut", "Tettra", 12], ["Shortcut", "Trello", 55], ["Shortcut", "Wikis", 37], ["Shortcut", "Wimi", 10], ["Shortcut", "Workzone", 14], ["Shortcut", "Wrike", 11], ["Shortcut", "YouTrack", 22], ["Smartsheet", "Adobe Workfront", 18], ["Smartsheet", "Airtable", 31], ["Smartsheet", "Asana", 31], ["Smartsheet", "Azure Devops", 107], ["Smartsheet", "Basecamp", 22], ["Smartsheet", "Cerri", 13], ["Smartsheet", "Clickup", 27], ["Smartsheet", "Confluence", 150], ["Smartsheet", "Dingtalk (Teambition)", 11], ["Smartsheet", "Document360", 15], ["Smartsheet", "Doxygen", 24], ["Smartsheet", "GitHub Discussions", 94], ["Smartsheet", "Jira", 202], ["Smartsheet", "Leankor", 15], ["Smartsheet", "Linear", 21], ["Smartsheet", "Markdown File", 160], ["Smartsheet", "Microsoft Lists", 24], ["Smartsheet", "Microsoft Planner", 30], ["Smartsheet", "Miro", 67], ["Smartsheet", "Monday.com", 27], ["Smartsheet", "Notion", 65], ["Smartsheet", "Nuclino", 12], ["Smartsheet", "Planview Projectplace Or Clarizen", 14], ["Smartsheet", "Redmine", 18], ["Smartsheet", "Redocly", 15], ["Smartsheet", "Shortcut", 16], ["Smartsheet", "Smartsheet", 139], ["Smartsheet", "Stack Overflow for Teams", 40], ["Smartsheet", "Swit", 12], ["Smartsheet", "Tettra", 13], ["Smartsheet", "Trello", 94], ["Smartsheet", "Wikis", 57], ["Smartsheet", "Wimi", 11], ["Smartsheet", "Workzone", 16], ["Smartsheet", "Wrike", 14], ["Smartsheet", "YouTrack", 21], ["Stack Overflow for Teams", "Adobe Workfront", 36], ["Stack Overflow for Teams", "Airtable", 39], ["Stack Overflow for Teams", "Asana", 47], ["Stack Overflow for Teams", "Azure Devops", 252], ["Stack Overflow for Teams", "Basecamp", 31], ["Stack Overflow for Teams", "Cerri", 15], ["Stack Overflow for Teams", "Clickup", 48], ["Stack Overflow for Teams", "Confluence", 294], ["Stack Overflow for Teams", "Dingtalk (Teambition)", 12], ["Stack Overflow for Teams", "Document360", 18], ["Stack Overflow for Teams", "Doxygen", 41], ["Stack Overflow for Teams", "GitHub Discussions", 375], ["Stack Overflow for Teams", "Jira", 482], ["Stack Overflow for Teams", "Leankor", 16], ["Stack Overflow for Teams", "Linear", 56], ["Stack Overflow for Teams", "Markdown File", 369], ["Stack Overflow for Teams", "Microsoft Lists", 39], ["Stack Overflow for Teams", "Microsoft Planner", 51], ["Stack Overflow for Teams", "Miro", 165], ["Stack Overflow for Teams", "Monday.com", 37], ["Stack Overflow for Teams", "Notion", 210], ["Stack Overflow for Teams", "Nuclino", 15], ["Stack Overflow for Teams", "Planview Projectplace Or Clarizen", 13], ["Stack Overflow for Teams", "Redmine", 26], ["Stack Overflow for Teams", "Redocly", 18], ["Stack Overflow for Teams", "Shortcut", 21], ["Stack Overflow for Teams", "Smartsheet", 22], ["Stack Overflow for Teams", "Stack Overflow for Teams", 813], ["Stack Overflow for Teams", "Swit", 16], ["Stack Overflow for Teams", "Tettra", 15], ["Stack Overflow for Teams", "Trello", 175], ["Stack Overflow for Teams", "Wikis", 117], ["Stack Overflow for Teams", "Wimi", 12], ["Stack Overflow for Teams", "Workzone", 21], ["Stack Overflow for Teams", "Wrike", 20], ["Stack Overflow for Teams", "YouTrack", 40], ["Swit", "Adobe Workfront", 17], ["Swit", "Airtable", 14], ["Swit", "Asana", 20], ["Swit", "Azure Devops", 19], ["Swit", "Basecamp", 10], ["Swit", "Cerri", 13], ["Swit", "Clickup", 15], ["Swit", "Confluence", 18], ["Swit", "Dingtalk (Teambition)", 11], ["Swit", "Document360", 13], ["Swit", "Doxygen", 16], ["Swit", "GitHub Discussions", 19], ["Swit", "Jira", 32], ["Swit", "Leankor", 15], ["Swit", "Linear", 14], ["Swit", "Markdown File", 17], ["Swit", "Microsoft Lists", 13], ["Swit", "Microsoft Planner", 16], ["Swit", "Miro", 17], ["Swit", "Monday.com", 14], ["Swit", "Notion", 15], ["Swit", "Nuclino", 12], ["Swit", "Planview Projectplace Or Clarizen", 13], ["Swit", "Redmine", 13], ["Swit", "Redocly", 14], ["Swit", "Shortcut", 14], ["Swit", "Smartsheet", 13], ["Swit", "Stack Overflow for Teams", 16], ["Swit", "Swit", 39], ["Swit", "Tettra", 14], ["Swit", "Trello", 22], ["Swit", "Wikis", 15], ["Swit", "Wimi", 11], ["Swit", "Workzone", 15], ["Swit", "Wrike", 12], ["Swit", "YouTrack", 14], ["Tettra", "Adobe Workfront", 13], ["Tettra", "Airtable", 15], ["Tettra", "Asana", 16], ["Tettra", "Azure Devops", 18], ["Tettra", "Basecamp", 12], ["Tettra", "Cerri", 12], ["Tettra", "Clickup", 16], ["Tettra", "Confluence", 20], ["Tettra", "Dingtalk (Teambition)", 11], ["Tettra", "Document360", 15], ["Tettra", "Doxygen", 14], ["Tettra", "GitHub Discussions", 25], ["Tettra", "Jira", 26], ["Tettra", "Leankor", 16], ["Tettra", "Linear", 16], ["Tettra", "Markdown File", 23], ["Tettra", "Microsoft Lists", 13], ["Tettra", "Microsoft Planner", 15], ["Tettra", "Miro", 17], ["Tettra", "Monday.com", 14], ["Tettra", "Notion", 22], ["Tettra", "Nuclino", 11], ["Tettra", "Planview Projectplace Or Clarizen", 13], ["Tettra", "Redmine", 13], ["Tettra", "Redocly", 14], ["Tettra", "Shortcut", 15], ["Tettra", "Smartsheet", 16], ["Tettra", "Stack Overflow for Teams", 15], ["Tettra", "Swit", 14], ["Tettra", "Tettra", 24], ["Tettra", "Trello", 21], ["Tettra", "Wikis", 17], ["Tettra", "Wimi", 12], ["Tettra", "Workzone", 16], ["Tettra", "Wrike", 12], ["Tettra", "YouTrack", 16], ["Trello", "Adobe Workfront", 40], ["Trello", "Airtable", 260], ["Trello", "Asana", 421], ["Trello", "Azure Devops", 1278], ["Trello", "Basecamp", 186], ["Trello", "Cerri", 13], ["Trello", "Clickup", 386], ["Trello", "Confluence", 2139], ["Trello", "Dingtalk (Teambition)", 15], ["Trello", "Document360", 25], ["Trello", "Doxygen", 213], ["Trello", "GitHub Discussions", 1816], ["Trello", "Jira", 3879], ["Trello", "Leankor", 13], ["Trello", "Linear", 316], ["Trello", "Markdown File", 2553], ["Trello", "Microsoft Lists", 75], ["Trello", "Microsoft Planner", 150], ["Trello", "Miro", 1337], ["Trello", "Monday.com", 228], ["Trello", "Notion", 2214], ["Trello", "Nuclino", 32], ["Trello", "Planview Projectplace Or Clarizen", 13], ["Trello", "Redmine", 138], ["Trello", "Redocly", 35], ["Trello", "Shortcut", 76], ["Trello", "Smartsheet", 60], ["Trello", "Stack Overflow for Teams", 368], ["Trello", "Swit", 22], ["Trello", "Tettra", 12], ["Trello", "Trello", 5273], ["Trello", "Wikis", 657], ["Trello", "Wimi", 14], ["Trello", "Workzone", 16], ["Trello", "Wrike", 36], ["Trello", "YouTrack", 286], ["Wikis", "Adobe Workfront", 23], ["Wikis", "Airtable", 73], ["Wikis", "Asana", 85], ["Wikis", "Azure Devops", 609], ["Wikis", "Basecamp", 60], ["Wikis", "Cerri", 13], ["Wikis", "Clickup", 72], ["Wikis", "Confluence", 695], ["Wikis", "Dingtalk (Teambition)", 14], ["Wikis", "Document360", 16], ["Wikis", "Doxygen", 248], ["Wikis", "GitHub Discussions", 896], ["Wikis", "Jira", 1144], ["Wikis", "Leankor", 15], ["Wikis", "Linear", 73], ["Wikis", "Markdown File", 1910], ["Wikis", "Microsoft Lists", 60], ["Wikis", "Microsoft Planner", 82], ["Wikis", "Miro", 391], ["Wikis", "Monday.com", 56], ["Wikis", "Notion", 495], ["Wikis", "Nuclino", 18], ["Wikis", "Planview Projectplace Or Clarizen", 13], ["Wikis", "Redmine", 114], ["Wikis", "Redocly", 20], ["Wikis", "Shortcut", 40], ["Wikis", "Smartsheet", 30], ["Wikis", "Stack Overflow for Teams", 191], ["Wikis", "Swit", 16], ["Wikis", "Tettra", 16], ["Wikis", "Trello", 507], ["Wikis", "Wikis", 2704], ["Wikis", "Wimi", 13], ["Wikis", "Workzone", 22], ["Wikis", "Wrike", 22], ["Wikis", "YouTrack", 115], ["Wimi", "Adobe Workfront", 11], ["Wimi", "Airtable", 12], ["Wimi", "Asana", 12], ["Wimi", "Azure Devops", 14], ["Wimi", "Basecamp", 11], ["Wimi", "Cerri", 11], ["Wimi", "Clickup", 13], ["Wimi", "Confluence", 12], ["Wimi", "Dingtalk (Teambition)", 10], ["Wimi", "Document360", 12], ["Wimi", "Doxygen", 12], ["Wimi", "GitHub Discussions", 16], ["Wimi", "Jira", 16], ["Wimi", "Leankor", 14], ["Wimi", "Linear", 12], ["Wimi", "Markdown File", 16], ["Wimi", "Microsoft Lists", 12], ["Wimi", "Microsoft Planner", 15], ["Wimi", "Miro", 13], ["Wimi", "Monday.com", 11], ["Wimi", "Notion", 13], ["Wimi", "Nuclino", 11], ["Wimi", "Planview Projectplace Or Clarizen", 12], ["Wimi", "Redmine", 10], ["Wimi", "Redocly", 12], ["Wimi", "Shortcut", 12], ["Wimi", "Smartsheet", 12], ["Wimi", "Stack Overflow for Teams", 9], ["Wimi", "Swit", 11], ["Wimi", "Tettra", 11], ["Wimi", "Trello", 15], ["Wimi", "Wikis", 13], ["Wimi", "Wimi", 15], ["Wimi", "Workzone", 13], ["Wimi", "Wrike", 11], ["Wimi", "YouTrack", 12], ["Workzone", "Adobe Workfront", 17], ["Workzone", "Airtable", 14], ["Workzone", "Asana", 14], ["Workzone", "Azure Devops", 21], ["Workzone", "Basecamp", 12], ["Workzone", "Cerri", 11], ["Workzone", "Clickup", 17], ["Workzone", "Confluence", 19], ["Workzone", "Dingtalk (Teambition)", 10], ["Workzone", "Document360", 13], ["Workzone", "Doxygen", 15], ["Workzone", "GitHub Discussions", 22], ["Workzone", "Jira", 27], ["Workzone", "Leankor", 14], ["Workzone", "Linear", 14], ["Workzone", "Markdown File", 21], ["Workzone", "Microsoft Lists", 19], ["Workzone", "Microsoft Planner", 17], ["Workzone", "Miro", 16], ["Workzone", "Monday.com", 14], ["Workzone", "Notion", 16], ["Workzone", "Nuclino", 11], ["Workzone", "Planview Projectplace Or Clarizen", 11], ["Workzone", "Redmine", 12], ["Workzone", "Redocly", 13], ["Workzone", "Shortcut", 13], ["Workzone", "Smartsheet", 14], ["Workzone", "Stack Overflow for Teams", 14], ["Workzone", "Swit", 13], ["Workzone", "Tettra", 12], ["Workzone", "Trello", 16], ["Workzone", "Wikis", 20], ["Workzone", "Wimi", 10], ["Workzone", "Workzone", 28], ["Workzone", "Wrike", 14], ["Workzone", "YouTrack", 15], ["Wrike", "Adobe Workfront", 17], ["Wrike", "Airtable", 17], ["Wrike", "Asana", 24], ["Wrike", "Azure Devops", 45], ["Wrike", "Basecamp", 14], ["Wrike", "Cerri", 12], ["Wrike", "Clickup", 21], ["Wrike", "Confluence", 52], ["Wrike", "Dingtalk (Teambition)", 11], ["Wrike", "Document360", 12], ["Wrike", "Doxygen", 18], ["Wrike", "GitHub Discussions", 54], ["Wrike", "Jira", 91], ["Wrike", "Leankor", 13], ["Wrike", "Linear", 22], ["Wrike", "Markdown File", 78], ["Wrike", "Microsoft Lists", 17], ["Wrike", "Microsoft Planner", 20], ["Wrike", "Miro", 34], ["Wrike", "Monday.com", 19], ["Wrike", "Notion", 53], ["Wrike", "Nuclino", 12], ["Wrike", "Planview Projectplace Or Clarizen", 12], ["Wrike", "Redmine", 15], ["Wrike", "Redocly", 14], ["Wrike", "Shortcut", 13], ["Wrike", "Smartsheet", 16], ["Wrike", "Stack Overflow for Teams", 25], ["Wrike", "Swit", 12], ["Wrike", "Tettra", 11], ["Wrike", "Trello", 47], ["Wrike", "Wikis", 33], ["Wrike", "Wimi", 12], ["Wrike", "Workzone", 16], ["Wrike", "Wrike", 97], ["Wrike", "YouTrack", 22], ["YouTrack", "Adobe Workfront", 16], ["YouTrack", "Airtable", 30], ["YouTrack", "Asana", 40], ["YouTrack", "Azure Devops", 151], ["YouTrack", "Basecamp", 25], ["YouTrack", "Cerri", 14], ["YouTrack", "Clickup", 52], ["YouTrack", "Confluence", 247], ["YouTrack", "Dingtalk (Teambition)", 14], ["YouTrack", "Document360", 16], ["YouTrack", "Doxygen", 54], ["YouTrack", "GitHub Discussions", 239], ["YouTrack", "Jira", 393], ["YouTrack", "Leankor", 16], ["YouTrack", "Linear", 40], ["YouTrack", "Markdown File", 369], ["YouTrack", "Microsoft Lists", 24], ["YouTrack", "Microsoft Planner", 26], ["YouTrack", "Miro", 140], ["YouTrack", "Monday.com", 34], ["YouTrack", "Notion", 228], ["YouTrack", "Nuclino", 17], ["YouTrack", "Planview Projectplace Or Clarizen", 15], ["YouTrack", "Redmine", 39], ["YouTrack", "Redocly", 18], ["YouTrack", "Shortcut", 20], ["YouTrack", "Smartsheet", 19], ["YouTrack", "Stack Overflow for Teams", 51], ["YouTrack", "Swit", 14], ["YouTrack", "Tettra", 14], ["YouTrack", "Trello", 182], ["YouTrack", "Wikis", 101], ["YouTrack", "Wimi", 13], ["YouTrack", "Workzone", 19], ["YouTrack", "Wrike", 18], ["YouTrack", "YouTrack", 734]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents who are currently using which synchronous tool want to use which synchronous tool in the future?", "labels": [{"query": "SELECT OfficeStackSync.name, COUNT(OfficeStackSync.id) * 100.0 / (SELECT COUNT(DISTINCT Response_OfficeStackSyncHaveWorkedWith.Response_id) FROM Response_OfficeStackSyncHaveWorkedWith JOIN Responses ON Responses.id = Response_OfficeStackSyncHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession') FROM OfficeStackSync JOIN Response_OfficeStackSyncHaveWorkedWith ON OfficeStackSync.id = Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id JOIN Responses ON Responses.id = Response_OfficeStackSyncHaveWorkedWith.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY OfficeStackSync.name", "results": [["Cisco Webex Teams", 6.979679802955665], ["Coolfire Core", 0.04926108374384237], ["Discord", 35.62038177339902], ["Google Chat", 11.186884236453203], ["Google Meet", 38.54064039408867], ["IRC", 2.6077586206896552], ["Jitsi", 3.6360837438423643], ["Matrix", 2.7878694581280787], ["Mattermost", 4.148706896551724], ["Microsoft Teams", 54.715209359605915], ["Ringcentral", 0.5295566502463054], ["Rocketchat", 1.7934113300492611], ["Signal", 11.414716748768473], ["Skype", 14.06557881773399], ["Slack", 53.93318965517241], ["Symphony", 0.40794334975369456], ["Telegram", 17.94027093596059], ["Unify Circuit", 0.06927339901477833], ["Whatsapp", 28.335899014778324], ["Wickr", 0.2170566502463054], ["Wire", 0.26939655172413796], ["Zoom", 45.991379310344826], ["Zulip", 1.3069581280788178]]}, {"query": "SELECT OfficeStackSyncHaveWorkedWith.Name AS CurrentTool, OfficeStackSyncWantToWorkWith.Name AS FutureTool, COUNT(*) AS Respondents FROM Response_OfficeStackSyncHaveWorkedWith JOIN Response_OfficeStackSyncWantToWorkWith ON Response_OfficeStackSyncHaveWorkedWith.Response_id = Response_OfficeStackSyncWantToWorkWith.Response_id JOIN OfficeStackSync AS OfficeStackSyncHaveWorkedWith ON Response_OfficeStackSyncHaveWorkedWith.OfficeStackSync_id = OfficeStackSyncHaveWorkedWith.id JOIN OfficeStackSync AS OfficeStackSyncWantToWorkWith ON Response_OfficeStackSyncWantToWorkWith.OfficeStackSync_id = OfficeStackSyncWantToWorkWith.id GROUP BY CurrentTool, FutureTool", "results": [["Cisco Webex Teams", "Cisco Webex Teams", 1617], ["Cisco Webex Teams", "Coolfire Core", 33], ["Cisco Webex Teams", "Discord", 1910], ["Cisco Webex Teams", "Google Chat", 526], ["Cisco Webex Teams", "Google Meet", 1400], ["Cisco Webex Teams", "IRC", 238], ["Cisco Webex Teams", "Jitsi", 267], ["Cisco Webex Teams", "Matrix", 298], ["Cisco Webex Teams", "Mattermost", 261], ["Cisco Webex Teams", "Microsoft Teams", 2214], ["Cisco Webex Teams", "Ringcentral", 46], ["Cisco Webex Teams", "Rocketchat", 136], ["Cisco Webex Teams", "Signal", 875], ["Cisco Webex Teams", "Skype", 461], ["Cisco Webex Teams", "Slack", 2130], ["Cisco Webex Teams", "Symphony", 47], ["Cisco Webex Teams", "Telegram", 991], ["Cisco Webex Teams", "Unify Circuit", 35], ["Cisco Webex Teams", "Whatsapp", 1463], ["Cisco Webex Teams", "Wickr", 44], ["Cisco Webex Teams", "Wire", 53], ["Cisco Webex Teams", "Zoom", 1653], ["Cisco Webex Teams", "Zulip", 97], ["Coolfire Core", "Cisco Webex Teams", 28], ["Coolfire Core", "Coolfire Core", 34], ["Coolfire Core", "Discord", 30], ["Coolfire Core", "Google Chat", 31], ["Coolfire Core", "Google Meet", 30], ["Coolfire Core", "IRC", 24], ["Coolfire Core", "Jitsi", 22], ["Coolfire Core", "Matrix", 24], ["Coolfire Core", "Mattermost", 23], ["Coolfire Core", "Microsoft Teams", 31], ["Coolfire Core", "Ringcentral", 24], ["Coolfire Core", "Rocketchat", 22], ["Coolfire Core", "Signal", 27], ["Coolfire Core", "Skype", 27], ["Coolfire Core", "Slack", 28], ["Coolfire Core", "Symphony", 21], ["Coolfire Core", "Telegram", 30], ["Coolfire Core", "Unify Circuit", 24], ["Coolfire Core", "Whatsapp", 27], ["Coolfire Core", "Wickr", 23], ["Coolfire Core", "Wire", 24], ["Coolfire Core", "Zoom", 28], ["Coolfire Core", "Zulip", 24], ["Discord", "Cisco Webex Teams", 625], ["Discord", "Coolfire Core", 47], ["Discord", "Discord", 24400], ["Discord", "Google Chat", 2043], ["Discord", "Google Meet", 8297], ["Discord", "IRC", 1523], ["Discord", "Jitsi", 1101], ["Discord", "Matrix", 2350], ["Discord", "Mattermost", 1002], ["Discord", "Microsoft Teams", 7095], ["Discord", "Ringcentral", 77], ["Discord", "Rocketchat", 391], ["Discord", "Signal", 4729], ["Discord", "Skype", 1407], ["Discord", "Slack", 11628], ["Discord", "Symphony", 77], ["Discord", "Telegram", 6301], ["Discord", "Unify Circuit", 52], ["Discord", "Whatsapp", 7800], ["Discord", "Wickr", 98], ["Discord", "Wire", 113], ["Discord", "Zoom", 7137], ["Discord", "Zulip", 611], ["Google Chat", "Cisco Webex Teams", 340], ["Google Chat", "Coolfire Core", 46], ["Google Chat", "Discord", 3087], ["Google Chat", "Google Chat", 4407], ["Google Chat", "Google Meet", 4565], ["Google Chat", "IRC", 391], ["Google Chat", "Jitsi", 283], ["Google Chat", "Matrix", 391], ["Google Chat", "Mattermost", 264], ["Google Chat", "Microsoft Teams", 2211], ["Google Chat", "Ringcentral", 72], ["Google Chat", "Rocketchat", 133], ["Google Chat", "Signal", 1073], ["Google Chat", "Skype", 818], ["Google Chat", "Slack", 3503], ["Google Chat", "Symphony", 63], ["Google Chat", "Telegram", 1606], ["Google Chat", "Unify Circuit", 46], ["Google Chat", "Whatsapp", 2344], ["Google Chat", "Wickr", 70], ["Google Chat", "Wire", 72], ["Google Chat", "Zoom", 2544], ["Google Chat", "Zulip", 167], ["Google Meet", "Cisco Webex Teams", 664], ["Google Meet", "Coolfire Core", 46], ["Google Meet", "Discord", 10258], ["Google Meet", "Google Chat", 3780], ["Google Meet", "Google Meet", 19023], ["Google Meet", "IRC", 850], ["Google Meet", "Jitsi", 958], ["Google Meet", "Matrix", 1107], ["Google Meet", "Mattermost", 773], ["Google Meet", "Microsoft Teams", 6015], ["Google Meet", "Ringcentral", 88], ["Google Meet", "Rocketchat", 318], ["Google Meet", "Signal", 3146], ["Google Meet", "Skype", 1994], ["Google Meet", "Slack", 14637], ["Google Meet", "Symphony", 92], ["Google Meet", "Telegram", 5637], ["Google Meet", "Unify Circuit", 49], ["Google Meet", "Whatsapp", 7565], ["Google Meet", "Wickr", 99], ["Google Meet", "Wire", 106], ["Google Meet", "Zoom", 8116], ["Google Meet", "Zulip", 439], ["IRC", "Cisco Webex Teams", 95], ["IRC", "Coolfire Core", 31], ["IRC", "Discord", 1128], ["IRC", "Google Chat", 232], ["IRC", "Google Meet", 557], ["IRC", "IRC", 1525], ["IRC", "Jitsi", 327], ["IRC", "Matrix", 634], ["IRC", "Mattermost", 183], ["IRC", "Microsoft Teams", 437], ["IRC", "Ringcentral", 37], ["IRC", "Rocketchat", 93], ["IRC", "Signal", 696], ["IRC", "Skype", 165], ["IRC", "Slack", 790], ["IRC", "Symphony", 45], ["IRC", "Telegram", 610], ["IRC", "Unify Circuit", 31], ["IRC", "Whatsapp", 498], ["IRC", "Wickr", 46], ["IRC", "Wire", 48], ["IRC", "Zoom", 526], ["IRC", "Zulip", 164], ["Jitsi", "Cisco Webex Teams", 111], ["Jitsi", "Coolfire Core", 26], ["Jitsi", "Discord", 1083], ["Jitsi", "Google Chat", 170], ["Jitsi", "Google Meet", 774], ["Jitsi", "IRC", 317], ["Jitsi", "Jitsi", 1718], ["Jitsi", "Matrix", 641], ["Jitsi", "Mattermost", 404], ["Jitsi", "Microsoft Teams", 625], ["Jitsi", "Ringcentral", 33], ["Jitsi", "Rocketchat", 182], ["Jitsi", "Signal", 887], ["Jitsi", "Skype", 182], ["Jitsi", "Slack", 931], ["Jitsi", "Symphony", 27], ["Jitsi", "Telegram", 759], ["Jitsi", "Unify Circuit", 30], ["Jitsi", "Whatsapp", 711], ["Jitsi", "Wickr", 32], ["Jitsi", "Wire", 46], ["Jitsi", "Zoom", 663], ["Jitsi", "Zulip", 200], ["Matrix", "Cisco Webex Teams", 71], ["Matrix", "Coolfire Core", 33], ["Matrix", "Discord", 1171], ["Matrix", "Google Chat", 139], ["Matrix", "Google Meet", 438], ["Matrix", "IRC", 503], ["Matrix", "Jitsi", 521], ["Matrix", "Matrix", 2030], ["Matrix", "Mattermost", 269], ["Matrix", "Microsoft Teams", 285], ["Matrix", "Ringcentral", 33], ["Matrix", "Rocketchat", 112], ["Matrix", "Signal", 935], ["Matrix", "Skype", 104], ["Matrix", "Slack", 608], ["Matrix", "Symphony", 31], ["Matrix", "Telegram", 596], ["Matrix", "Unify Circuit", 34], ["Matrix", "Whatsapp", 388], ["Matrix", "Wickr", 41], ["Matrix", "Wire", 51], ["Matrix", "Zoom", 393], ["Matrix", "Zulip", 234], ["Mattermost", "Cisco Webex Teams", 114], ["Mattermost", "Coolfire Core", 27], ["Mattermost", "Discord", 1098], ["Mattermost", "Google Chat", 167], ["Mattermost", "Google Meet", 665], ["Mattermost", "IRC", 186], ["Mattermost", "Jitsi", 340], ["Mattermost", "Matrix", 348], ["Mattermost", "Mattermost", 1747], ["Mattermost", "Microsoft Teams", 715], ["Mattermost", "Ringcentral", 29], ["Mattermost", "Rocketchat", 95], ["Mattermost", "Signal", 641], ["Mattermost", "Skype", 192], ["Mattermost", "Slack", 907], ["Mattermost", "Symphony", 28], ["Mattermost", "Telegram", 553], ["Mattermost", "Unify Circuit", 28], ["Mattermost", "Whatsapp", 553], ["Mattermost", "Wickr", 31], ["Mattermost", "Wire", 36], ["Mattermost", "Zoom", 733], ["Mattermost", "Zulip", 122], ["Microsoft Teams", "Cisco Webex Teams", 1058], ["Microsoft Teams", "Coolfire Core", 51], ["Microsoft Teams", "Discord", 13051], ["Microsoft Teams", "Google Chat", 2327], ["Microsoft Teams", "Google Meet", 8441], ["Microsoft Teams", "IRC", 1057], ["Microsoft Teams", "Jitsi", 1065], ["Microsoft Teams", "Matrix", 1515], ["Microsoft Teams", "Mattermost", 1168], ["Microsoft Teams", "Microsoft Teams", 20667], ["Microsoft Teams", "Ringcentral", 121], ["Microsoft Teams", "Rocketchat", 476], ["Microsoft Teams", "Signal", 4442], ["Microsoft Teams", "Skype", 2156], ["Microsoft Teams", "Slack", 14597], ["Microsoft Teams", "Symphony", 106], ["Microsoft Teams", "Telegram", 5187], ["Microsoft Teams", "Unify Circuit", 50], ["Microsoft Teams", "Whatsapp", 8345], ["Microsoft Teams", "Wickr", 95], ["Microsoft Teams", "Wire", 105], ["Microsoft Teams", "Zoom", 8712], ["Microsoft Teams", "Zulip", 449], ["Ringcentral", "Cisco Webex Teams", 39], ["Ringcentral", "Coolfire Core", 29], ["Ringcentral", "Discord", 139], ["Ringcentral", "Google Chat", 79], ["Ringcentral", "Google Meet", 121], ["Ringcentral", "IRC", 46], ["Ringcentral", "Jitsi", 44], ["Ringcentral", "Matrix", 48], ["Ringcentral", "Mattermost", 46], ["Ringcentral", "Microsoft Teams", 171], ["Ringcentral", "Ringcentral", 137], ["Ringcentral", "Rocketchat", 33], ["Ringcentral", "Signal", 70], ["Ringcentral", "Skype", 56], ["Ringcentral", "Slack", 199], ["Ringcentral", "Symphony", 26], ["Ringcentral", "Telegram", 74], ["Ringcentral", "Unify Circuit", 29], ["Ringcentral", "Whatsapp", 85], ["Ringcentral", "Wickr", 32], ["Ringcentral", "Wire", 31], ["Ringcentral", "Zoom", 155], ["Ringcentral", "Zulip", 35], ["Rocketchat", "Cisco Webex Teams", 69], ["Rocketchat", "Coolfire Core", 28], ["Rocketchat", "Discord", 515], ["Rocketchat", "Google Chat", 113], ["Rocketchat", "Google Meet", 339], ["Rocketchat", "IRC", 112], ["Rocketchat", "Jitsi", 197], ["Rocketchat", "Matrix", 187], ["Rocketchat", "Mattermost", 146], ["Rocketchat", "Microsoft Teams", 379], ["Rocketchat", "Ringcentral", 32], ["Rocketchat", "Rocketchat", 595], ["Rocketchat", "Signal", 313], ["Rocketchat", "Skype", 109], ["Rocketchat", "Slack", 390], ["Rocketchat", "Symphony", 32], ["Rocketchat", "Telegram", 308], ["Rocketchat", "Unify Circuit", 32], ["Rocketchat", "Whatsapp", 280], ["Rocketchat", "Wickr", 33], ["Rocketchat", "Wire", 37], ["Rocketchat", "Zoom", 296], ["Rocketchat", "Zulip", 64], ["Signal", "Cisco Webex Teams", 284], ["Signal", "Coolfire Core", 37], ["Signal", "Discord", 4183], ["Signal", "Google Chat", 648], ["Signal", "Google Meet", 2280], ["Signal", "IRC", 770], ["Signal", "Jitsi", 892], ["Signal", "Matrix", 1360], ["Signal", "Mattermost", 632], ["Signal", "Microsoft Teams", 2324], ["Signal", "Ringcentral", 46], ["Signal", "Rocketchat", 249], ["Signal", "Signal", 7053], ["Signal", "Skype", 519], ["Signal", "Slack", 3687], ["Signal", "Symphony", 39], ["Signal", "Telegram", 2098], ["Signal", "Unify Circuit", 38], ["Signal", "Whatsapp", 2445], ["Signal", "Wickr", 73], ["Signal", "Wire", 88], ["Signal", "Zoom", 2386], ["Signal", "Zulip", 364], ["Skype", "Cisco Webex Teams", 481], ["Skype", "Coolfire Core", 47], ["Skype", "Discord", 3638], ["Skype", "Google Chat", 1160], ["Skype", "Google Meet", 3692], ["Skype", "IRC", 370], ["Skype", "Jitsi", 397], ["Skype", "Matrix", 391], ["Skype", "Mattermost", 440], ["Skype", "Microsoft Teams", 3943], ["Skype", "Ringcentral", 70], ["Skype", "Rocketchat", 194], ["Skype", "Signal", 1312], ["Skype", "Skype", 3827], ["Skype", "Slack", 3901], ["Skype", "Symphony", 94], ["Skype", "Telegram", 2773], ["Skype", "Unify Circuit", 48], ["Skype", "Whatsapp", 3497], ["Skype", "Wickr", 67], ["Skype", "Wire", 94], ["Skype", "Zoom", 3549], ["Skype", "Zulip", 151], ["Slack", "Cisco Webex Teams", 716], ["Slack", "Coolfire Core", 42], ["Slack", "Discord", 12182], ["Slack", "Google Chat", 2201], ["Slack", "Google Meet", 12422], ["Slack", "IRC", 1171], ["Slack", "Jitsi", 1055], ["Slack", "Matrix", 1573], ["Slack", "Mattermost", 1001], ["Slack", "Microsoft Teams", 7250], ["Slack", "Ringcentral", 91], ["Slack", "Rocketchat", 326], ["Slack", "Signal", 4171], ["Slack", "Skype", 1635], ["Slack", "Slack", 27865], ["Slack", "Symphony", 71], ["Slack", "Telegram", 5031], ["Slack", "Unify Circuit", 44], ["Slack", "Whatsapp", 6590], ["Slack", "Wickr", 85], ["Slack", "Wire", 96], ["Slack", "Zoom", 11197], ["Slack", "Zulip", 621], ["Symphony", "Cisco Webex Teams", 42], ["Symphony", "Coolfire Core", 28], ["Symphony", "Discord", 116], ["Symphony", "Google Chat", 55], ["Symphony", "Google Meet", 82], ["Symphony", "IRC", 45], ["Symphony", "Jitsi", 37], ["Symphony", "Matrix", 38], ["Symphony", "Mattermost", 31], ["Symphony", "Microsoft Teams", 133], ["Symphony", "Ringcentral", 29], ["Symphony", "Rocketchat", 32], ["Symphony", "Signal", 64], ["Symphony", "Skype", 62], ["Symphony", "Slack", 131], ["Symphony", "Symphony", 116], ["Symphony", "Telegram", 76], ["Symphony", "Unify Circuit", 29], ["Symphony", "Whatsapp", 104], ["Symphony", "Wickr", 31], ["Symphony", "Wire", 33], ["Symphony", "Zoom", 163], ["Symphony", "Zulip", 39], ["Telegram", "Cisco Webex Teams", 459], ["Telegram", "Coolfire Core", 48], ["Telegram", "Discord", 6844], ["Telegram", "Google Chat", 1255], ["Telegram", "Google Meet", 5450], ["Telegram", "IRC", 765], ["Telegram", "Jitsi", 843], ["Telegram", "Matrix", 1207], ["Telegram", "Mattermost", 638], ["Telegram", "Microsoft Teams", 3629], ["Telegram", "Ringcentral", 67], ["Telegram", "Rocketchat", 289], ["Telegram", "Signal", 2657], ["Telegram", "Skype", 1430], ["Telegram", "Slack", 5458], ["Telegram", "Symphony", 78], ["Telegram", "Telegram", 10543], ["Telegram", "Unify Circuit", 52], ["Telegram", "Whatsapp", 5442], ["Telegram", "Wickr", 90], ["Telegram", "Wire", 114], ["Telegram", "Zoom", 4374], ["Telegram", "Zulip", 294], ["Unify Circuit", "Cisco Webex Teams", 28], ["Unify Circuit", "Coolfire Core", 29], ["Unify Circuit", "Discord", 40], ["Unify Circuit", "Google Chat", 34], ["Unify Circuit", "Google Meet", 37], ["Unify Circuit", "IRC", 27], ["Unify Circuit", "Jitsi", 28], ["Unify Circuit", "Matrix", 30], ["Unify Circuit", "Mattermost", 26], ["Unify Circuit", "Microsoft Teams", 40], ["Unify Circuit", "Ringcentral", 26], ["Unify Circuit", "Rocketchat", 28], ["Unify Circuit", "Signal", 34], ["Unify Circuit", "Skype", 30], ["Unify Circuit", "Slack", 36], ["Unify Circuit", "Symphony", 26], ["Unify Circuit", "Telegram", 36], ["Unify Circuit", "Unify Circuit", 44], ["Unify Circuit", "Whatsapp", 35], ["Unify Circuit", "Wickr", 29], ["Unify Circuit", "Wire", 30], ["Unify Circuit", "Zoom", 36], ["Unify Circuit", "Zulip", 29], ["Whatsapp", "Cisco Webex Teams", 762], ["Whatsapp", "Coolfire Core", 49], ["Whatsapp", "Discord", 10425], ["Whatsapp", "Google Chat", 2089], ["Whatsapp", "Google Meet", 8393], ["Whatsapp", "IRC", 811], ["Whatsapp", "Jitsi", 912], ["Whatsapp", "Matrix", 1206], ["Whatsapp", "Mattermost", 769], ["Whatsapp", "Microsoft Teams", 7368], ["Whatsapp", "Ringcentral", 83], ["Whatsapp", "Rocketchat", 322], ["Whatsapp", "Signal", 3879], ["Whatsapp", "Skype", 2121], ["Whatsapp", "Slack", 8788], ["Whatsapp", "Symphony", 101], ["Whatsapp", "Telegram", 6539], ["Whatsapp", "Unify Circuit", 53], ["Whatsapp", "Whatsapp", 15051], ["Whatsapp", "Wickr", 97], ["Whatsapp", "Wire", 112], ["Whatsapp", "Zoom", 7337], ["Whatsapp", "Zulip", 345], ["Wickr", "Cisco Webex Teams", 34], ["Wickr", "Coolfire Core", 25], ["Wickr", "Discord", 105], ["Wickr", "Google Chat", 49], ["Wickr", "Google Meet", 83], ["Wickr", "IRC", 43], ["Wickr", "Jitsi", 34], ["Wickr", "Matrix", 41], ["Wickr", "Mattermost", 31], ["Wickr", "Microsoft Teams", 74], ["Wickr", "Ringcentral", 27], ["Wickr", "Rocketchat", 29], ["Wickr", "Signal", 90], ["Wickr", "Skype", 51], ["Wickr", "Slack", 101], ["Wickr", "Symphony", 26], ["Wickr", "Telegram", 82], ["Wickr", "Unify Circuit", 26], ["Wickr", "Whatsapp", 76], ["Wickr", "Wickr", 90], ["Wickr", "Wire", 33], ["Wickr", "Zoom", 78], ["Wickr", "Zulip", 27], ["Wire", "Cisco Webex Teams", 40], ["Wire", "Coolfire Core", 28], ["Wire", "Discord", 107], ["Wire", "Google Chat", 50], ["Wire", "Google Meet", 83], ["Wire", "IRC", 43], ["Wire", "Jitsi", 55], ["Wire", "Matrix", 62], ["Wire", "Mattermost", 43], ["Wire", "Microsoft Teams", 95], ["Wire", "Ringcentral", 30], ["Wire", "Rocketchat", 38], ["Wire", "Signal", 110], ["Wire", "Skype", 61], ["Wire", "Slack", 105], ["Wire", "Symphony", 28], ["Wire", "Telegram", 101], ["Wire", "Unify Circuit", 28], ["Wire", "Whatsapp", 81], ["Wire", "Wickr", 37], ["Wire", "Wire", 107], ["Wire", "Zoom", 91], ["Wire", "Zulip", 42], ["Zoom", "Cisco Webex Teams", 949], ["Zoom", "Coolfire Core", 49], ["Zoom", "Discord", 12705], ["Zoom", "Google Chat", 2671], ["Zoom", "Google Meet", 11053], ["Zoom", "IRC", 1155], ["Zoom", "Jitsi", 1192], ["Zoom", "Matrix", 1597], ["Zoom", "Mattermost", 1150], ["Zoom", "Microsoft Teams", 9135], ["Zoom", "Ringcentral", 119], ["Zoom", "Rocketchat", 403], ["Zoom", "Signal", 4488], ["Zoom", "Skype", 2355], ["Zoom", "Slack", 17221], ["Zoom", "Symphony", 126], ["Zoom", "Telegram", 6173], ["Zoom", "Unify Circuit", 56], ["Zoom", "Whatsapp", 8683], ["Zoom", "Wickr", 94], ["Zoom", "Wire", 125], ["Zoom", "Zoom", 17641], ["Zoom", "Zulip", 575], ["Zulip", "Cisco Webex Teams", 46], ["Zulip", "Coolfire Core", 28], ["Zulip", "Discord", 456], ["Zulip", "Google Chat", 100], ["Zulip", "Google Meet", 313], ["Zulip", "IRC", 126], ["Zulip", "Jitsi", 185], ["Zulip", "Matrix", 231], ["Zulip", "Mattermost", 103], ["Zulip", "Microsoft Teams", 171], ["Zulip", "Ringcentral", 31], ["Zulip", "Rocketchat", 46], ["Zulip", "Signal", 309], ["Zulip", "Skype", 71], ["Zulip", "Slack", 396], ["Zulip", "Symphony", 31], ["Zulip", "Telegram", 207], ["Zulip", "Unify Circuit", 29], ["Zulip", "Whatsapp", 202], ["Zulip", "Wickr", 31], ["Zulip", "Wire", 36], ["Zulip", "Zoom", 293], ["Zulip", "Zulip", 683]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents learning to code want to use which AI search tool and what search tool are they using?", "labels": [{"query": "SELECT AISearch.name AS have_worked_with, AISearch.name AS want_to_work_with, COUNT(*) FROM Response_AISearchHaveWorkedWith JOIN AISearch ON Response_AISearchHaveWorkedWith.AISearch_id = AISearch.id JOIN Response_AISearchWantToWorkWith ON Response_AISearchWantToWorkWith.Response_id = Response_AISearchHaveWorkedWith.Response_id JOIN Responses ON Response_AISearchWantToWorkWith.Response_id = Responses.id WHERE Responses.ResponderDescription = 'I am learning to code' GROUP BY AISearch.name, AISearch.name", "results": [["Andi", "Andi", 129], ["Bing AI", "Bing AI", 2657], ["ChatGPT", "ChatGPT", 5752], ["Google Bard AI", "Google Bard AI", 1287], ["Metaphor", "Metaphor", 97], ["Neeva AI", "Neeva AI", 152], ["Perplexity AI", "Perplexity AI", 270], ["Phind", "Phind", 547], ["Quora Poe", "Quora Poe", 327], ["WolframAlpha", "WolframAlpha", 1382], ["You.com", "You.com", 535]]}, {"query": "SELECT AISearch.Name AS \"AI Search Tool\", COUNT(*) AS \"Number of Respondents\" FROM Response_AISearchWantToWorkWith JOIN AISearch ON Response_AISearchWantToWorkWith.AISearch_id = AISearch.id JOIN Response_LearningToCodeMethods ON Response_AISearchWantToWorkWith.Response_id = Response_LearningToCodeMethods.Response_id GROUP BY AISearch.Name UNION SELECT AISearch.Name AS \"AI Search Tool\", COUNT(*) AS \"Number of Respondents\" FROM Response_AISearchHaveWorkedWith JOIN AISearch ON Response_AISearchHaveWorkedWith.AISearch_id = AISearch.id JOIN Response_LearningToCodeMethods ON Response_AISearchHaveWorkedWith.Response_id = Response_LearningToCodeMethods.Response_id GROUP BY AISearch.Name", "results": [["Andi", 737], ["Andi", 1612], ["Bing AI", 42284], ["Bing AI", 44747], ["ChatGPT", 144458], ["ChatGPT", 179331], ["Google Bard AI", 21939], ["Google Bard AI", 43823], ["Metaphor", 496], ["Metaphor", 1696], ["Neeva AI", 1077], ["Neeva AI", 1925], ["Perplexity AI", 2547], ["Perplexity AI", 3526], ["Phind", 6976], ["Phind", 7613], ["Quora Poe", 2351], ["Quora Poe", 2864], ["WolframAlpha", 25815], ["WolframAlpha", 29454], ["You.com", 4620], ["You.com", 5587]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What AI developer tool do how many respondents want to who has used what AI developer tool previously?", "labels": [{"query": "SELECT AIDev.name AS have_worked_with, AIDev.name AS want_to_work_with, COUNT(*) FROM Response_AIDevHaveWorkedWith JOIN AIDev ON Response_AIDevHaveWorkedWith.AIDev_id = AIDev.id JOIN Response_AIDevWantToWorkWith ON Response_AIDevWantToWorkWith.Response_id = Response_AIDevHaveWorkedWith.Response_id GROUP BY AIDev.name, AIDev.name", "results": [["AWS CodeWhisperer", "AWS CodeWhisperer", 2956], ["Adrenaline", "Adrenaline", 519], ["Codeium", "Codeium", 899], ["GitHub Copilot", "GitHub Copilot", 21588], ["Mintlify", "Mintlify", 548], ["Replit Ghostwriter", "Replit Ghostwriter", 726], ["Rubber Duck.AI", "Rubber Duck.AI", 469], ["Synk Code", "Synk Code", 1006], ["Tabnine", "Tabnine", 6373], ["Whispr AI", "Whispr AI", 934]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the average pay by programming language in dollar?", "labels": [{"query": "SELECT Languages.name, AVG(Responses.ConvertedCompYearly) FROM Responses JOIN Response_LanguageHaveWorkedWith ON Responses.id = Response_LanguageHaveWorkedWith.Response_id JOIN Languages ON Response_LanguageHaveWorkedWith.Languages_id = Languages.id GROUP BY Response_LanguageHaveWorkedWith.Languages_id", "results": [["HTML/CSS", 97730.18722627737], ["JavaScript", 100059.00022744256], ["Python", 109210.72897023479], ["Bash/Shell (all shells)", 118733.66764079148], ["C#", 102242.86673016338], ["Dart", 106978.4350305499], ["Elixir", 174773.4704968944], ["GDScript", 224510.3526119403], ["Rust", 131945.27951228523], ["Go", 131129.61292654712], ["Haskell", 236434.55469953775], ["OCaml", 448438.5447154472], ["PHP", 83080.61823094092], ["Ruby", 142087.52664223287], ["SQL", 100316.89280540802], ["TypeScript", 100365.1830972202], ["Ada", 1095432.2568093385], ["Clojure", 226901.47619047618], ["Java", 107365.55541148654], ["Lisp", 389494.98204667866], ["Raku", 1372007.0158730159], ["Scala", 173254.1076433121], ["Swift", 215075.64759825327], ["Zig", 428891.5238095238], ["Julia", 280932.77805486287], ["R", 151815.93188667874], ["PowerShell", 108575.00601805416], ["C++", 122076.8720009743], ["Kotlin", 119503.31861848125], ["Solidity", 231794.76978417265], ["C", 122876.24079232436], ["Assembly", 208343.7208706786], ["Perl", 182612.98910310143], ["Delphi", 215868.22304283603], ["Lua", 136249.0198789974], ["MATLAB", 146885.51410153104], ["Groovy", 145347.57000498255], ["APL", 2462996.8870967743], ["VBA", 171315.18019680196], ["Visual Basic (.Net)", 161144.72521551725], ["F#", 277939.78303747537], ["Nim", 715922.1937984496], ["Objective-C", 246212.47630922694], ["Crystal", 515074.875], ["Prolog", 702881.0], ["Cobol", 755668.8340080972], ["Fortran", 496051.06282722513], ["Erlang", 278031.41570881224], ["Apex", 356613.81469648564], ["SAS", 834179.3024390244], ["Flow", 790372.4424778761]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the plans on using AI in % among professional developers?", "labels": [{"query": "SELECT AISelect, COUNT(AISelect) * 100.0 / (SELECT COUNT(AISelect) FROM Responses WHERE ResponderDescription = 'I am a developer by profession') FROM Responses WHERE ResponderDescription = 'I am a developer by profession' GROUP BY AISelect", "results": [["No, and I don't plan to", 29.95225842913872], ["No, but I plan to soon", 25.880095780596992], ["Yes", 44.16764579026429]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of developers learning to code has which sentiment towards AI tools?", "labels": [{"query": "SELECT AISent, COUNT(AISent) * 100.0 / (SELECT COUNT(AISelect) FROM Responses WHERE ResponderDescription = 'I am learning to code') FROM Responses WHERE ResponderDescription = 'I am learning to code' AND NOT AISent IS NULL GROUP BY AISent", "results": [["Favorable", 40.83854061681113], ["Indifferent", 11.892763555734732], ["Unfavorable", 1.894779278371296], ["Unsure", 4.192703084055634], ["Very favorable", 22.19310622858295], ["Very unfavorable", 0.5644023382382584]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How important are the benefits of AI considered to be by developers using AI in %?", "labels": [{"query": "SELECT AIBenefits.name, COUNT(AIBenefits.id) * 100.0 / (SELECT COUNT(id) FROM Responses WHERE AISelect = 'Yes') FROM AIBenefits JOIN Response_AIBenefits ON AIBenefits.id = Response_AIBenefits.AIBenefits_id GROUP BY AIBenefits.id", "results": [["Other (please explain)", 5.458224476205112], ["Increase productivity", 83.26673838430408], ["Greater efficiency", 63.3650940013319], ["Speed up learning", 63.87480149582501], ["Improve accuracy in coding", 33.78156856718406], ["Improve collaboration", 9.530761743763128]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How much does which percentage of developers trust AI tools?", "labels": [{"query": "SELECT AIAccuracy, COUNT(AIAccuracy) * 100.0 / (SELECT COUNT(AIAccuracy) FROM Responses) FROM Responses WHERE NOT AIAccuracy IS NULL GROUP BY AIAccuracy", "results": [["Highly distrust", 5.456381523226269], ["Highly trust", 2.851977327513193], ["Neither trust nor distrust", 30.681151866571113], ["Somewhat distrust", 21.711512150628707], ["Somewhat trust", 39.29897713206072]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "For which tasks do developers who are currently using AI tools find those tools most useful?", "labels": [{"query": "SELECT AIToolUsage.name, COUNT(\"Response_AIToolCurrentlyUsing\".Response_id) * 100.0 / (SELECT COUNT(DISTINCT \"Response_AIToolCurrentlyUsing\".Response_id) FROM \"Response_AIToolCurrentlyUsing\") FROM \"Response_AIToolCurrentlyUsing\" JOIN AIToolUsage ON AIToolUsage.id = \"Response_AIToolCurrentlyUsing\".\"AIToolUsage_id\" GROUP BY AIToolUsage.id", "results": [["Learning about a codebase", 31.408251930154687], ["Writing code", 86.14716218833883], ["Debugging and getting help", 51.019730470155245], ["Committing and reviewing code", 10.53214157234967], ["Project planning", 14.104657276475635], ["Testing code", 24.90522179483632], ["Deployment and monitoring", 4.9478373965741484], ["Collaborating with teammates ", 3.8104989346099565], ["Documenting code", 35.871821125162576], ["Other (please describe)", 1.602235935467803]]}, {"query": "SELECT AIToolUsage.Name, COUNT(*) AS Count FROM Response_AIToolCurrentlyUsing JOIN AIToolUsage ON Response_AIToolCurrentlyUsing.AIToolUsage_id = AIToolUsage.id GROUP BY AIToolUsage_id ORDER BY Count DESC", "results": [["Writing code", 31131], ["Debugging and getting help", 18437], ["Documenting code", 12963], ["Learning about a codebase", 11350], ["Testing code", 9000], ["Project planning", 5097], ["Committing and reviewing code", 3806], ["Deployment and monitoring", 1788], ["Collaborating with teammates ", 1377], ["Other (please describe)", 579]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of professional developers considers which aspects of programming to be very different next year due to AI tools?", "labels": [{"query": "SELECT AIToolUsage.name, COUNT(\"Response_AINextVeryDifferent\".Response_id) * 100.0 / n FROM \"Response_AINextVeryDifferent\" JOIN AIToolUsage ON AIToolUsage.id = \"Response_AINextVeryDifferent\".\"AIToolUsage_id\" JOIN (SELECT name AS name2, COUNT(Response_id2) AS n FROM (SELECT Response_id AS Response_id2, name FROM (SELECT \"Response_AINextNeitherDifferentNorSimilar\".Response_id, \"AIToolUsage\".name FROM \"Response_AINextNeitherDifferentNorSimilar\" JOIN \"AIToolUsage\" ON \"AIToolUsage\".id = \"Response_AINextNeitherDifferentNorSimilar\".\"AIToolUsage_id\" UNION SELECT \"Response_AINextSomewhatDifferent\".Response_id, \"AIToolUsage\".name FROM \"Response_AINextSomewhatDifferent\" JOIN \"AIToolUsage\" ON \"AIToolUsage\".id = \"Response_AINextSomewhatDifferent\".\"AIToolUsage_id\" UNION SELECT \"Response_AINextSomewhatSimilar\".Response_id, \"AIToolUsage\".name FROM \"Response_AINextSomewhatSimilar\" JOIN \"AIToolUsage\" ON \"AIToolUsage\".id = \"Response_AINextSomewhatSimilar\".\"AIToolUsage_id\" UNION SELECT \"Response_AINextVeryDifferent\".Response_id, AIToolUsage.name FROM \"Response_AINextVeryDifferent\" JOIN AIToolUsage ON AIToolUsage.id = \"Response_AINextVeryDifferent\".\"AIToolUsage_id\" UNION SELECT \"Response_AINextVerySimilar\".Response_id, \"AIToolUsage\".name FROM \"Response_AINextVerySimilar\" JOIN \"AIToolUsage\" ON \"AIToolUsage\".id = \"Response_AINextVerySimilar\".\"AIToolUsage_id\") GROUP BY Response_id, name) JOIN Responses ON Response_id2 = Responses.id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY name2) ON name2 = AIToolUsage.name GROUP BY AIToolUsage.id", "results": [["Learning about a codebase", 43.288293976512186], ["Writing code", 27.895413630518647], ["Debugging and getting help", 45.69712101115706], ["Committing and reviewing code", 46.203554119547654], ["Project planning", 42.70353302611367], ["Testing code", 43.53830498618985], ["Deployment and monitoring", 43.556280587275694], ["Collaborating with teammates ", 42.1505376344086], ["Documenting code", 48.76222175993343], ["Other (please describe)", 38.797814207650276]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What % of professional developers who responded have which employment status?", "labels": [{"query": "SELECT Employment.name, COUNT(Response_Employment.Response_id) * 100.0 / (SELECT COUNT(DISTINCT Response_Employment.Response_id) FROM Response_Employment JOIN Responses ON Responses.id = Response_Employment.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession') FROM Response_Employment JOIN Employment ON Employment.id = Response_Employment.Employment_id JOIN Responses ON Responses.id = Response_Employment.Response_id WHERE Responses.ResponderDescription = 'I am a developer by profession' GROUP BY Employment.id", "results": [["Employed, full-time", 79.84852542927715], ["Independent contractor, freelancer, or self-employed", 17.41511174597506], ["Not employed, but looking for work", 2.9669969943159837], ["Student, full-time", 5.554563580632681], ["Employed, part-time", 5.460821950421093], ["Student, part-time", 3.05776269975895], ["I prefer not to say", 0.23361009433681518], ["Retired", 0.2663452667916555], ["Not employed, and not looking for work", 0.49251554920691604]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many German developers have which employment status in percent?", "labels": [{"query": "SELECT Employment.name, COUNT(Response_Employment.Response_id) * 100.0 / (SELECT COUNT(DISTINCT Response_Employment.Response_id) FROM Response_Employment JOIN Responses ON Responses.id = Response_Employment.Response_id WHERE Responses.Country = 'Germany') FROM Response_Employment JOIN Employment ON Employment.id = Response_Employment.Employment_id JOIN Responses ON Responses.id = Response_Employment.Response_id WHERE Responses.Country = 'Germany' GROUP BY Employment.id", "results": [["Employed, full-time", 65.78336292856167], ["Independent contractor, freelancer, or self-employed", 12.730501297636934], ["Not employed, but looking for work", 1.9396257341893184], ["Student, full-time", 17.060510859172243], ["Employed, part-time", 11.869963119792379], ["Student, part-time", 4.903701680098347], ["I prefer not to say", 0.4507580931566726], ["Retired", 0.628329463188089], ["Not employed, and not looking for work", 1.256658926376178]]}, {"query": "SELECT Employment.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE Country = 'Germany') AS Percentage FROM Responses JOIN Response_Employment ON Responses.id = Response_Employment.Response_id JOIN Employment ON Response_Employment.Employment_id = Employment.id WHERE Responses.Country = 'Germany' GROUP BY Employment.Name", "results": [["Employed, full-time", 65.72052401746726], ["Employed, part-time", 11.858624454148472], ["I prefer not to say", 0.45032751091703055], ["Independent contractor, freelancer, or self-employed", 12.718340611353712], ["Not employed, and not looking for work", 1.255458515283843], ["Not employed, but looking for work", 1.9377729257641922], ["Retired", 0.6277292576419214], ["Student, full-time", 17.044213973799128], ["Student, part-time", 4.899017467248909]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many developers work in which work environment (remote, hybrid etc.) in %?", "labels": [{"query": "SELECT RemoteWork, COUNT(RemoteWork) * 100.0 / (SELECT COUNT(RemoteWork) FROM Responses) FROM Responses WHERE NOT RemoteWork IS NULL GROUP BY RemoteWork", "results": [["Hybrid (some remote, some in-person)", 42.17721175992413], ["In-person", 16.411055412545725], ["Remote", 41.411732827530145]]}, {"query": "SELECT RemoteWork, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT RemoteWork IS NULL GROUP BY RemoteWork", "results": [["Hybrid (some remote, some in-person)", 34.90648546824543], ["In-person", 13.582032651596698], ["Remote", 34.272963760315754]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How common are the various company size groups in %?", "labels": [{"query": "SELECT OrgSize, COUNT(OrgSize) * 100.0 / (SELECT COUNT(OrgSize) FROM Responses) AS a FROM Responses WHERE NOT OrgSize IS NULL GROUP BY OrgSize", "results": [["1,000 to 4,999 employees", 11.123410666789662], ["10 to 19 employees", 8.077733191888443], ["10,000 or more employees", 12.19039712190397], ["100 to 499 employees", 18.784496410067188], ["2 to 9 employees", 9.899604876773827], ["20 to 99 employees", 20.571006872376735], ["5,000 to 9,999 employees", 4.115738818935166], ["500 to 999 employees", 6.875451624310072], ["I don\u2019t know", 1.911043463554879], ["Just me - I am a freelancer, sole proprietor, etc.", 6.451116953400058]]}, {"query": "SELECT OrgSize, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT OrgSize IS NULL GROUP BY OrgSize", "results": [["1,000 to 4,999 employees", 8.112441693577324], ["10 to 19 employees", 5.89119124506638], ["10,000 or more employees", 8.890608180839612], ["100 to 499 employees", 13.699766774309293], ["2 to 9 employees", 7.219904915679942], ["20 to 99 employees", 15.002691065662003], ["5,000 to 9,999 employees", 3.001659490491568], ["500 to 999 employees", 5.014352350197345], ["I don\u2019t know", 1.3937477574452817], ["Just me - I am a freelancer, sole proprietor, etc.", 4.704879799067097]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the average salaries by developer type in Germany in dollar?", "labels": [{"query": "SELECT DevType, AVG(ConvertedCompYearly) FROM Responses WHERE Country = 'Germany' AND NOT DevType IS NULL GROUP BY DevType", "results": [["Academic researcher", 61578.69285714286], ["Blockchain", 241888.5], ["Cloud infrastructure engineer", 92632.0], ["Data or business analyst", 67134.44], ["Data scientist or machine learning specialist", 91226.02898550725], ["Database administrator", 88122.77777777778], ["Designer", 52367.0], ["DevOps specialist", 76547.34736842105], ["Developer Advocate", 136116.26315789475], ["Developer Experience", 97169.73684210527], ["Developer, QA or test", 83554.27272727272], ["Developer, back-end", 86222.73043478261], ["Developer, desktop or enterprise applications", 79970.64642857143], ["Developer, embedded applications or devices", 81634.6225165563], ["Developer, front-end", 71501.01777777777], ["Developer, full-stack", 77057.22214285714], ["Developer, game or graphics", 73541.56756756757], ["Developer, mobile", 91694.56302521008], ["Educator", 79127.33333333333], ["Engineer, data", 95158.26829268293], ["Engineer, site reliability", 94403.53846153847], ["Engineering manager", 112352.88888888889], ["Hardware Engineer", 71134.375], ["Marketing or sales professional", 185622.0], ["Other (please specify):", 91543.74561403508], ["Product manager", 91841.04545454546], ["Project manager", 87775.96875], ["Research & Development role", 93563.97183098592], ["Scientist", 92406.64705882352], ["Security professional", 73288.57142857143], ["Senior Executive (C-Suite, VP, etc.)", 117090.32258064517], ["Student", 28343.0], ["System administrator", 61488.91176470588]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the average salaries in dollar and the average years of work experience for the developer types?", "labels": [{"query": "SELECT DevType, AVG(ConvertedCompYearly), AVG(WorkExp) FROM Responses WHERE NOT DevType IS NULL GROUP BY DevType", "results": [["Academic researcher", 68094.43577235773, 10.636200716845877], ["Blockchain", 170566.6054054054, 9.1437125748503], ["Cloud infrastructure engineer", 128800.25065274151, 12.50788643533123], ["Data or business analyst", 72026.94888888889, 12.181592039800995], ["Data scientist or machine learning specialist", 115506.12096774194, 8.734873487348734], ["Database administrator", 94903.54477611941, 17.047619047619047], ["Designer", 83706.78899082569, 14.887755102040817], ["DevOps specialist", 98357.77189409369, 11.961098398169336], ["Developer Advocate", 125761.5948275862, 16.949152542372882], ["Developer Experience", 301328.4474885845, 12.843434343434344], ["Developer, QA or test", 79615.15555555555, 9.955882352941176], ["Developer, back-end", 96317.08423145338, 10.705601636177708], ["Developer, desktop or enterprise applications", 118488.33100616017, 15.048220973782772], ["Developer, embedded applications or devices", 97276.72217837411, 12.108325872873769], ["Developer, front-end", 78004.4432895139, 8.004481213374698], ["Developer, full-stack", 92933.59109026963, 10.82076408660531], ["Developer, game or graphics", 95022.31364562118, 10.567632850241546], ["Developer, mobile", 86396.47387606319, 9.462546816479401], ["Educator", 74649.91666666667, 17.09090909090909], ["Engineer, data", 101084.6825221239, 10.157961783439491], ["Engineer, site reliability", 146705.4827586207, 12.106227106227106], ["Engineering manager", 153061.81922196798, 15.699021820917983], ["Hardware Engineer", 117205.6809815951, 10.695652173913043], ["Marketing or sales professional", 128233.05, 12.862745098039216], ["Other (please specify):", 115617.36972538513, 14.472319551506658], ["Product manager", 127523.23981900452, 16.834123222748815], ["Project manager", 84371.71764705882, 14.788590604026846], ["Research & Development role", 113854.04474002418, 14.018181818181818], ["Scientist", 105434.30102040817, 13.251612903225807], ["Security professional", 126063.55696202532, 12.860262008733624], ["Senior Executive (C-Suite, VP, etc.)", 169683.8775773196, 18.48143405889885], ["Student", 42799.565217391304, 3.7586206896551726], ["System administrator", 62346.19207317073, 12.893103448275863]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the average salaries in dollar and the average years of work experience by programming language?", "labels": [{"query": "SELECT Languages.name, AVG(Responses.ConvertedCompYearly), AVG(Responses.WorkExp) FROM Responses JOIN Response_LanguageHaveWorkedWith ON Response_LanguageHaveWorkedWith.Response_id = Responses.id JOIN Languages ON Languages.id = Response_LanguageHaveWorkedWith.Languages_id GROUP BY Languages.name", "results": [["APL", 2462996.8870967743, 19.216666666666665], ["Ada", 1095432.2568093385, 16.593984962406015], ["Apex", 356613.81469648564, 14.759868421052632], ["Assembly", 208343.7208706786, 13.62547288776797], ["Bash/Shell (all shells)", 118733.66764079148, 12.167851212221853], ["C", 122876.24079232436, 12.107976208631996], ["C#", 102242.86673016338, 12.50921458514593], ["C++", 122076.8720009743, 11.788420657746656], ["Clojure", 226901.47619047618, 14.050986842105264], ["Cobol", 755668.8340080972, 21.289256198347108], ["Crystal", 515074.875, 16.654054054054054], ["Dart", 106978.4350305499, 9.08420208500401], ["Delphi", 215868.22304283603, 23.1793893129771], ["Elixir", 174773.4704968944, 12.75045871559633], ["Erlang", 278031.41570881224, 14.452282157676349], ["F#", 277939.78303747537, 15.183222958057396], ["Flow", 790372.4424778761, 13.358333333333333], ["Fortran", 496051.06282722513, 18.82758620689655], ["GDScript", 224510.3526119403, 10.375241779497099], ["Go", 131129.61292654712, 11.445189458911585], ["Groovy", 145347.57000498255, 13.498650836481382], ["HTML/CSS", 97730.18722627737, 10.885418957554432], ["Haskell", 236434.55469953775, 10.15919629057187], ["Java", 107365.55541148654, 11.057737079000466], ["JavaScript", 100059.00022744256, 11.069090008140728], ["Julia", 280932.77805486287, 10.642045454545455], ["Kotlin", 119503.31861848125, 10.769026334863494], ["Lisp", 389494.98204667866, 15.212389380530974], ["Lua", 136249.0198789974, 10.907042253521126], ["MATLAB", 146885.51410153104, 9.629179331306991], ["Nim", 715922.1937984496, 14.428571428571429], ["OCaml", 448438.5447154472, 12.829383886255924], ["Objective-C", 246212.47630922694, 14.125688073394496], ["PHP", 83080.61823094092, 11.67950342031923], ["Perl", 182612.98910310143, 18.1588785046729], ["PowerShell", 108575.00601805416, 12.686499215070643], ["Prolog", 702881.0, 13.162162162162161], ["Python", 109210.72897023479, 10.711200676717919], ["R", 151815.93188667874, 11.41566645609602], ["Raku", 1372007.0158730159, 20.18032786885246], ["Ruby", 142087.52664223287, 12.677565555195857], ["Rust", 131945.27951228523, 10.188727922206787], ["SAS", 834179.3024390244, 16.07035175879397], ["SQL", 100316.89280540802, 12.061623551955405], ["Scala", 173254.1076433121, 12.038352272727273], ["Solidity", 231794.76978417265, 9.707317073170731], ["Swift", 215075.64759825327, 12.358436606291706], ["TypeScript", 100365.1830972202, 10.315341664450944], ["VBA", 171315.18019680196, 15.46004169562196], ["Visual Basic (.Net)", 161144.72521551725, 14.329732802728824], ["Zig", 428891.5238095238, 11.817490494296578]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many developers have which level of influence on purchasing decisions?", "labels": [{"query": "SELECT PurchaseInfluence, COUNT(PurchaseInfluence) FROM Responses WHERE NOT PurchaseInfluence IS NULL GROUP BY PurchaseInfluence", "results": [["I have a great deal of influence", 15425], ["I have little or no influence", 22734], ["I have some influence", 26805]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How common are approaches to making purchasing decisions (e.g. using a list) in %?", "labels": [{"query": "SELECT TechList, COUNT(TechList) * 100.0 / (SELECT COUNT(TechList) FROM Responses) FROM Responses WHERE NOT TechList IS NULL GROUP BY TechList", "results": [["Given a list", 13.040048643407667], ["Investigate", 80.87295196463492], ["Other", 6.086999391957404]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of respondents use which approach to research new tools and technologies?", "labels": [{"query": "SELECT BuyNewTool.name, COUNT(BuyNewTool.id) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_BuyNewTool) FROM Response_BuyNewTool JOIN BuyNewTool ON BuyNewTool.id = Response_BuyNewTool.BuyNewTool_id GROUP BY BuyNewTool.id", "results": [["Start a free trial", 73.7389921574769], ["Ask developers I know/work with", 71.02241925574336], ["Visit developer communities like Stack Overflow", 64.11473454685637], ["Other (please specify):", 7.067908299100098], ["Research companies that have advertised on sites I visit", 14.863448541724392], ["Read ratings or reviews on third party sites like G2 Crowd", 33.64454456745654], ["Ask a generative AI tool", 15.389897480996037], ["Research companies that have emailed me", 5.460853642376128]]}, {"query": "SELECT BuyNewTool.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Response_BuyNewTool) AS Percentage FROM Response_BuyNewTool JOIN BuyNewTool ON Response_BuyNewTool.BuyNewTool_id = BuyNewTool.id GROUP BY BuyNewTool_id", "results": [["Start a free trial", 25.845870614414743], ["Ask developers I know/work with", 24.893698775899708], ["Visit developer communities like Stack Overflow", 22.47252213641181], ["Other (please specify):", 2.4773357767484283], ["Research companies that have advertised on sites I visit", 5.209710041507091], ["Read ratings or reviews on third party sites like G2 Crowd", 11.79257432640704], ["Ask a generative AI tool", 5.394232921077411], ["Research companies that have emailed me", 1.9140554075337695]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often are the reasons to code outside work mentioned?", "labels": [{"query": "SELECT CodingActivities.name, COUNT(*) FROM CodingActivities JOIN Response_CodingActivities ON Response_CodingActivities.CodingActivities_id = CodingActivities.id GROUP BY CodingActivities.id", "results": [["Hobby", 51942], ["Contribute to open-source projects", 18231], ["Bootstrapping a business", 10293], ["Professional development or self-paced learning from online courses", 26957], ["I don\u2019t code outside of work", 8809], ["Freelance/contract work", 14258], ["School or academic work", 8636], ["Other (please specify):", 1182]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which percentage of respondents have visited which Stack Overflow site?", "labels": [{"query": "SELECT NEWSOSites.name, COUNT(*) * 100.0 / (SELECT COUNT(DISTINCT Response_id) FROM Response_NEWSOSites) FROM NEWSOSites JOIN Response_NEWSOSites ON Response_NEWSOSites.NEWSOSites_id = NEWSOSites.id GROUP BY NEWSOSites.id", "results": [["Stack Overflow", 98.02894069771408], ["Stack Exchange", 67.09899628295045], ["Stack Overflow for Teams (private knowledge sharing & collaboration platform for companies)", 4.9981244245393475], ["Collectives on Stack Overflow", 8.060427631205028], ["I have never visited Stack Overflow or the Stack Exchange network", 0.6945312766416969]]}, {"query": "SELECT NEWSOSites.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Response_NEWSOSites JOIN NEWSOSites ON Response_NEWSOSites.NEWSOSites_id = NEWSOSites.id GROUP BY NEWSOSites.Name", "results": [["Collectives on Stack Overflow", 7.950977753857194], ["I have never visited Stack Overflow or the Stack Exchange network", 0.6851004664513815], ["Stack Exchange", 66.18788123430211], ["Stack Overflow", 96.69783817725153], ["Stack Overflow for Teams (private knowledge sharing & collaboration platform for companies)", 4.930256548259777]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How common are the categories of the frequency of visiting stack overflow in %?", "labels": [{"query": "SELECT SOVisitFreq, COUNT(SOVisitFreq) * 100.0 / (SELECT COUNT(SOVisitFreq) FROM Responses) FROM Responses WHERE NOT SOVisitFreq IS NULL GROUP BY SOVisitFreq", "results": [["A few times per month or weekly", 23.30961670874455], ["A few times per week", 32.22974523754877], ["Daily or almost daily", 25.38902914849667], ["Less than once per month or monthly", 5.355749368831765], ["Multiple times per day", 13.715859536378241]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many users (don't) have a Stack Overflow account/don't know in %?", "labels": [{"query": "SELECT SOAccount, COUNT(SOAccount) * 100.0 / (SELECT COUNT(SOAccount) FROM Responses) FROM Responses WHERE NOT SOAccount IS NULL GROUP BY SOAccount", "results": [["No", 16.63934799435414], ["Not sure/can't remember", 7.913308746528252], ["Yes", 75.4473432591176]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How common are the participation frequency categories?", "labels": [{"query": "SELECT SOPartFreq, COUNT(SOPartFreq) FROM Responses WHERE NOT SOPartFreq IS NULL GROUP BY SOPartFreq", "results": [["A few times per month or weekly", 9160], ["A few times per week", 3285], ["Daily or almost daily", 1309], ["I have never participated in Q&A on Stack Overflow", 16961], ["Less than once per month or monthly", 34661], ["Multiple times per day", 685]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents consider themselves to be \"definitely\" or \"somewhat\" a part of the Stack Overflow community by age in %?", "labels": [{"query": "SELECT Age, COUNT(SOComm) * 100.0 / count2 FROM Responses JOIN (SELECT Age AS age2, COUNT(Age) AS count2 FROM Responses GROUP BY Age) ON age2 = Responses.Age WHERE SOComm = 'Yes, definitely' OR SOComm = 'Yes, somewhat' GROUP BY Age", "results": [["18-24 years old", 26.30639674307066], ["25-34 years old", 30.43582879658315], ["35-44 years old", 32.7829729203195], ["45-54 years old", 35.02519798416127], ["55-64 years old", 34.5813679245283], ["65 years or older", 29.803586678052945], ["Prefer not to say", 20.71269487750557], ["Under 18 years old", 22.311046511627907]]}, {"query": "SELECT Age, COUNT(*) AS Total, SUM(CASE WHEN SOComm IN ('Yes, definitely', 'Yes, somewhat') THEN 1 ELSE 0 END) AS PartOfSOCommunity, ROUND((SUM(CASE WHEN SOComm IN ('Yes, definitely', 'Yes, somewhat') THEN 1 ELSE 0 END) * 100.0) / COUNT(*), 2) AS Percentage FROM Responses WHERE NOT Age IS NULL GROUP BY Age ORDER BY Age", "results": [["18-24 years old", 17931, 4717, 26.31], ["25-34 years old", 33247, 10119, 30.44], ["35-44 years old", 20532, 6731, 32.78], ["45-54 years old", 8334, 2919, 35.03], ["55-64 years old", 3392, 1173, 34.58], ["65 years or older", 1171, 349, 29.8], ["Prefer not to say", 449, 93, 20.71], ["Under 18 years old", 4128, 921, 22.31]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of respondents are Individual Contributors or People Manager?", "labels": [{"query": "SELECT IndividualContributorOrPeopleManager, COUNT(IndividualContributorOrPeopleManager) * 100.0 / (SELECT COUNT(IndividualContributorOrPeopleManager) FROM Responses) FROM Responses WHERE NOT IndividualContributorOrPeopleManager IS NULL GROUP BY IndividualContributorOrPeopleManager", "results": [["Individual contributor", 86.29889163689658], ["People manager", 13.701108363103417]]}, {"query": "SELECT ROUND((COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses)), 2) AS Percentage FROM Responses WHERE NOT IndividualContributorOrPeopleManager IS NULL", "results": [[48.96]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of years of experience among all respondents grouped into buckets of 5 years?", "labels": [{"query": "SELECT CEIL(WorkExp / 5) * 5 AS bucket_start, CEIL(WorkExp / 5) * 5 + 4 AS bucket_end, COUNT(WorkExp) * 100.0 / (SELECT COUNT(WorkExp) FROM Responses) AS count_in_bucket FROM Responses WHERE NOT WorkExp IS NULL GROUP BY CEIL(WorkExp / 5)", "results": [[0, 4, 24.41084008352647], [5, 9, 26.86385644461782], [10, 14, 18.554808508685376], [15, 19, 11.209527524725212], [20, 24, 8.393951215034765], [25, 29, 5.105670162234103], [30, 34, 2.732967713807109], [35, 39, 1.4731866265861997], [40, 44, 0.8214965923954198], [45, 49, 0.2570045205259414], [50, 54, 0.17669060786158472]]}, {"query": "SELECT CASE WHEN WorkExp BETWEEN 0 AND 5 THEN '0-5' WHEN WorkExp BETWEEN 6 AND 10 THEN '6-10' WHEN WorkExp BETWEEN 11 AND 15 THEN '11-15' WHEN WorkExp BETWEEN 16 AND 20 THEN '16-20' WHEN WorkExp BETWEEN 21 AND 25 THEN '21-25' WHEN WorkExp BETWEEN 26 AND 30 THEN '26-30' WHEN WorkExp BETWEEN 31 AND 35 THEN '31-35' WHEN WorkExp BETWEEN 36 AND 40 THEN '36-40' WHEN WorkExp BETWEEN 41 AND 45 THEN '41-45' WHEN WorkExp BETWEEN 46 AND 50 THEN '46-50' ELSE '50+' END AS \"Experience_Bucket\", COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE NOT WorkExp IS NULL) AS \"Percentage\" FROM Responses WHERE NOT WorkExp IS NULL GROUP BY Experience_Bucket ORDER BY MIN(WorkExp)", "results": [["0-5", 31.981000022946834], ["6-10", 26.221345143302965], ["11-15", 16.218820991762087], ["16-20", 10.307717019665436], ["21-25", 7.462309828128227], ["26-30", 3.7793432616627274], ["31-35", 1.9711328851052112], ["36-40", 1.2092980564033136], ["41-45", 0.536955873241699], ["46-50", 0.31207691778150026]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of years of experience among Individual Contributors grouped into buckets of 5 years?", "labels": [{"query": "SELECT CEIL(WorkExp / 5) * 5 AS bucket_start, CEIL(WorkExp / 5) * 5 + 4 AS bucket_end, COUNT(WorkExp) * 100.0 / (SELECT COUNT(WorkExp) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS count_in_bucket FROM Responses WHERE NOT WorkExp IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY CEIL(WorkExp / 5)", "results": [[0, 4, 26.686248331108143], [5, 9, 27.740987983978638], [10, 14, 17.858477970627504], [15, 19, 10.259012016021362], [20, 24, 7.762349799732977], [25, 29, 4.571428571428571], [30, 34, 2.502002670226969], [35, 39, 1.3991989319092122], [40, 44, 0.8197596795727636], [45, 49, 0.24566088117489987], [50, 54, 0.1548731642189586]]}, {"query": "SELECT CASE WHEN WorkExp BETWEEN 0 AND 5 THEN '0-5' WHEN WorkExp BETWEEN 6 AND 10 THEN '6-10' WHEN WorkExp BETWEEN 11 AND 15 THEN '11-15' WHEN WorkExp BETWEEN 16 AND 20 THEN '16-20' WHEN WorkExp BETWEEN 21 AND 25 THEN '21-25' WHEN WorkExp BETWEEN 26 AND 30 THEN '26-30' WHEN WorkExp BETWEEN 31 AND 35 THEN '31-35' WHEN WorkExp BETWEEN 36 AND 40 THEN '36-40' WHEN WorkExp > 40 THEN '40+' END AS \"Experience_Bucket\", COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor' AND NOT WorkExp IS NULL) AS \"Percentage\" FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor' AND NOT WorkExp IS NULL GROUP BY Experience_Bucket ORDER BY MIN(WorkExp)", "results": [["0-5", 34.712950600801065], ["6-10", 26.518024032042725], ["11-15", 15.2630173564753], ["16-20", 9.447263017356475], ["21-25", 6.835781041388518], ["26-30", 3.399198931909212], ["31-35", 1.8317757009345794], ["36-40", 1.1775700934579438], ["40+", 0.8144192256341789]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of years of experience among People managers grouped into buckets of 5 years?", "labels": [{"query": "SELECT CEIL(WorkExp / 5) * 5 AS bucket_start, CEIL(WorkExp / 5) * 5 + 4 AS bucket_end, COUNT(WorkExp) * 100.0 / (SELECT COUNT(WorkExp) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS count_in_bucket FROM Responses WHERE NOT WorkExp IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY CEIL(WorkExp / 5)", "results": [[0, 4, 9.87757840013416], [5, 9, 21.432165017608586], [10, 14, 23.17625356364246], [15, 19, 17.20610430991112], [20, 24, 12.27570015093074], [25, 29, 8.502431661915143], [30, 34, 4.142210296830455], [35, 39, 1.9285594499413048], [40, 44, 0.8385041086701325], [45, 49, 0.31863156129465037], [50, 54, 0.30186147912124767]]}, {"query": "SELECT CASE WHEN WorkExp BETWEEN 0 AND 5 THEN '0-5' WHEN WorkExp BETWEEN 6 AND 10 THEN '6-10' WHEN WorkExp BETWEEN 11 AND 15 THEN '11-15' WHEN WorkExp BETWEEN 16 AND 20 THEN '16-20' WHEN WorkExp > 20 THEN '20+' END AS \"Experience_Bucket\", COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager' AND NOT WorkExp IS NULL) AS \"Percentage\" FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager' AND NOT WorkExp IS NULL GROUP BY Experience_Bucket", "results": [["0-5", 14.573201408686902], ["11-15", 22.455140030186147], ["16-20", 15.663256749958075], ["20+", 22.7905416736542], ["6-10", 24.517860137514674]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of industry the respondents are in?", "labels": [{"query": "SELECT Industry, COUNT(Industry) * 100.0 / (SELECT COUNT(Industry) FROM Responses) FROM Responses WHERE NOT Industry IS NULL GROUP BY Industry", "results": [["Advertising Services", 2.137379670419318], ["Financial Services", 12.022080817969217], ["Healthcare", 6.025996628052428], ["Higher Education", 3.3773861967694567], ["Information Services, IT, Software Development, or other Technology", 49.37999673682493], ["Insurance", 1.922553978354272], ["Legal Services", 0.5710556371349322], ["Manufacturing, Transportation, or Supply Chain", 7.089247838146517], ["Oil & Gas", 0.7505302659487681], ["Other", 10.907162669277207], ["Retail and Consumer Services", 5.316256050470441], ["Wholesale", 0.5003535106325121]]}, {"query": "SELECT Industry, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT Industry IS NULL GROUP BY Industry", "results": [["Advertising Services", 0.881324004305705], ["Financial Services", 4.9571672048797994], ["Healthcare", 2.484750627915321], ["Higher Education", 1.3926264800861141], ["Information Services, IT, Software Development, or other Technology", 20.36127556512379], ["Insurance", 0.7927430929314675], ["Legal Services", 0.23546824542518838], ["Manufacturing, Transportation, or Supply Chain", 2.9231700753498386], ["Oil & Gas", 0.3094725511302476], ["Other", 4.497443487621098], ["Retail and Consumer Services", 2.192097237172587], ["Wholesale", 0.20631503408683172]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of industry the Individual Contributors are in?", "labels": [{"query": "SELECT Industry, COUNT(Industry) * 100.0 / (SELECT COUNT(Industry) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') FROM Responses WHERE NOT Industry IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY Industry", "results": [["Advertising Services", 2.19435736677116], ["Financial Services", 11.886894018555461], ["Healthcare", 6.0922706690731765], ["Higher Education", 3.4324435578354073], ["Information Services, IT, Software Development, or other Technology", 48.87432316899402], ["Insurance", 1.944206959880941], ["Legal Services", 0.547797726481112], ["Manufacturing, Transportation, or Supply Chain", 7.289192869130173], ["Oil & Gas", 0.7567841423640796], ["Other", 11.085779424337417], ["Retail and Consumer Services", 5.414648047876888], ["Wholesale", 0.4813020487001678]]}, {"query": "SELECT Industry, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS Percentage FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor' AND NOT Industry IS NULL GROUP BY Industry", "results": [["Advertising Services", 1.8389279554199283], ["Financial Services", 9.961523152447924], ["Healthcare", 5.105479633806555], ["Higher Education", 2.8764760514793686], ["Information Services, IT, Software Development, or other Technology", 40.95794082526204], ["Insurance", 1.629295475653443], ["Legal Services", 0.4590685949316704], ["Manufacturing, Transportation, or Supply Chain", 6.108531245853788], ["Oil & Gas", 0.6342045906859494], ["Other", 9.29016850205652], ["Retail and Consumer Services", 4.537614435451771], ["Wholesale", 0.4033435053734908]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of industry the People managers are in?", "labels": [{"query": "SELECT Industry, COUNT(Industry) * 100.0 / (SELECT COUNT(Industry) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') FROM Responses WHERE NOT Industry IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY Industry", "results": [["Advertising Services", 1.7730496453900708], ["Financial Services", 12.8053585500394], ["Healthcare", 5.673758865248227], ["Higher Education", 3.0732860520094563], ["Information Services, IT, Software Development, or other Technology", 52.62017336485422], ["Insurance", 1.7336485421591805], ["Legal Services", 0.6895193065405831], ["Manufacturing, Transportation, or Supply Chain", 5.91016548463357], ["Oil & Gas", 0.7092198581560284], ["Other", 9.692671394799055], ["Retail and Consumer Services", 4.70843183609141], ["Wholesale", 0.6107171000788022]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of respondents in terms of agreement with \"I have interactions with people outside of my immediate team\"?", "labels": [{"query": "SELECT InteractionOutsideTeam, COUNT(InteractionOutsideTeam) * 100.0 / (SELECT COUNT(InteractionOutsideTeam) FROM Responses) AS percentage FROM Responses WHERE NOT InteractionOutsideTeam IS NULL GROUP BY InteractionOutsideTeam", "results": [["Agree", 46.57811214294111], ["Disagree", 6.119666157282238], ["Neither agree nor disagree", 8.447161161396497], ["Strongly agree", 36.44528035735277], ["Strongly disagree", 2.409780181027389]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of Individual Contributors in terms of agreement with \"I have interactions with people outside of my immediate team\"?", "labels": [{"query": "SELECT InteractionOutsideTeam, COUNT(InteractionOutsideTeam) * 100.0 / (SELECT COUNT(InteractionOutsideTeam) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS percentage FROM Responses WHERE NOT InteractionOutsideTeam IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY InteractionOutsideTeam", "results": [["Agree", 48.27256327556989], ["Disagree", 6.835948176898267], ["Neither agree nor disagree", 9.170174383644017], ["Strongly agree", 33.21762422784672], ["Strongly disagree", 2.5036899360411087]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of People managers in terms of agreement with \"I have interactions with people outside of my immediate team\"?", "labels": [{"query": "SELECT InteractionOutsideTeam, COUNT(InteractionOutsideTeam) * 100.0 / (SELECT COUNT(InteractionOutsideTeam) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS percentage FROM Responses WHERE NOT InteractionOutsideTeam IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY InteractionOutsideTeam", "results": [["Agree", 35.79759862778731], ["Disagree", 1.5608919382504287], ["Neither agree nor disagree", 3.825042881646655], ["Strongly agree", 57.01543739279588], ["Strongly disagree", 1.8010291595197256]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of respondents in terms of agreement with them being able to quickly find answers with existing tools and resources?", "labels": [{"query": "SELECT QuicklyFindAnswers, COUNT(QuicklyFindAnswers) * 100.0 / (SELECT COUNT(QuicklyFindAnswers) FROM Responses) AS percentage FROM Responses WHERE NOT QuicklyFindAnswers IS NULL GROUP BY QuicklyFindAnswers", "results": [["Agree", 45.52826024373861], ["Disagree", 14.463583149409846], ["Neither agree nor disagree", 25.70530659245754], ["Strongly agree", 11.40965358410901], ["Strongly disagree", 2.8931964302850015]]}, {"query": "SELECT QuicklyFindAnswers, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT QuicklyFindAnswers IS NULL GROUP BY QuicklyFindAnswers", "results": [["Agree", 21.279601722282024], ["Disagree", 6.760181198421241], ["Neither agree nor disagree", 12.014486903480446], ["Strongly agree", 5.332795120200933], ["Strongly disagree", 1.3522604951560817]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of Individual contributors in terms of agreement with them being able to quickly find answers with existing tools and resources?", "labels": [{"query": "SELECT QuicklyFindAnswers, COUNT(QuicklyFindAnswers) * 100.0 / (SELECT COUNT(QuicklyFindAnswers) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS percentage FROM Responses WHERE NOT QuicklyFindAnswers IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY QuicklyFindAnswers", "results": [["Agree", 45.273964959267936], ["Disagree", 14.663542015400067], ["Neither agree nor disagree", 25.965294052003124], ["Strongly agree", 11.098091730833612], ["Strongly disagree", 2.999107242495257]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the percentage distribution of People managers in terms of agreement with them being able to quickly find answers with existing tools and resources?", "labels": [{"query": "SELECT QuicklyFindAnswers, COUNT(QuicklyFindAnswers) * 100.0 / (SELECT COUNT(QuicklyFindAnswers) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS percentage FROM Responses WHERE NOT QuicklyFindAnswers IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY QuicklyFindAnswers", "results": [["Agree", 47.04446381865737], ["Disagree", 13.286835222319093], ["Neither agree nor disagree", 24.027898866608545], ["Strongly agree", 13.374019180470793], ["Strongly disagree", 2.2667829119442024]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often do respondents encounter knowledge silos as producitivity friction in percentage terms?", "labels": [{"query": "SELECT KnowledgeSilosFreq, COUNT(KnowledgeSilosFreq) * 100.0 / (SELECT COUNT(KnowledgeSilosFreq) FROM Responses) AS percentage FROM Responses WHERE NOT KnowledgeSilosFreq IS NULL GROUP BY KnowledgeSilosFreq", "results": [["1-2 times a week", 52.29697471622741], ["10+ times a week", 2.6111950114483364], ["3-5 times a week", 12.483558240366348], ["6-10 times a week", 3.1178447897890584], ["Never", 29.490427242168852]]}, {"query": "SELECT KnowledgeSilosFreq, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM Responses WHERE NOT KnowledgeSilosFreq IS NULL GROUP BY KnowledgeSilosFreq", "results": [["1-2 times a week", 24.073824901327594], ["10+ times a week", 1.2020093290276284], ["3-5 times a week", 5.746546465733764], ["6-10 times a week", 1.4352350197344814], ["Never", 13.575304987441694]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often do Individual Contributors encounter knowledge silos as producitivity friction in percentage terms?", "labels": [{"query": "SELECT KnowledgeSilosFreq, COUNT(KnowledgeSilosFreq) * 100.0 / (SELECT COUNT(KnowledgeSilosFreq) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS percentage FROM Responses WHERE NOT KnowledgeSilosFreq IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY KnowledgeSilosFreq", "results": [["1-2 times a week", 51.94797835264784], ["10+ times a week", 2.5727481370243392], ["3-5 times a week", 12.268721842858357], ["6-10 times a week", 3.043096364718216], ["Never", 30.167455302751254]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How often do People managers encounter knowledge silos as producitivity friction in percentage terms?", "labels": [{"query": "SELECT KnowledgeSilosFreq, COUNT(KnowledgeSilosFreq) * 100.0 / (SELECT COUNT(KnowledgeSilosFreq) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS percentage FROM Responses WHERE NOT KnowledgeSilosFreq IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY KnowledgeSilosFreq", "results": [["1-2 times a week", 54.6031746031746], ["10+ times a week", 2.892416225749559], ["3-5 times a week", 13.791887125220459], ["6-10 times a week", 3.580246913580247], ["Never", 25.132275132275133]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the respondents spend searching for answers/solutions?", "labels": [{"query": "SELECT TimeSearching, COUNT(TimeSearching) * 100.0 / (SELECT COUNT(TimeSearching) FROM Responses) AS percentage FROM Responses WHERE NOT TimeSearching IS NULL GROUP BY TimeSearching", "results": [["15-30 minutes a day", 27.521155734255927], ["30-60 minutes a day", 38.192528869979895], ["60-120 minutes a day", 17.82692037963439], ["Less than 15 minutes a day", 9.254757118144841], ["Over 120 minutes a day", 7.204637897984946]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the Individual Contributors spend searching for answers/solutions?", "labels": [{"query": "SELECT TimeSearching, COUNT(TimeSearching) * 100.0 / (SELECT COUNT(TimeSearching) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS percentage FROM Responses WHERE NOT TimeSearching IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY TimeSearching", "results": [["15-30 minutes a day", 26.958625564073287], ["30-60 minutes a day", 38.23737291360844], ["60-120 minutes a day", 18.37111944761594], ["Less than 15 minutes a day", 9.038764747458272], ["Over 120 minutes a day", 7.39411732724406]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the People managers spend searching for answers/solutions?", "labels": [{"query": "SELECT TimeSearching, COUNT(TimeSearching) * 100.0 / (SELECT COUNT(TimeSearching) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS percentage FROM Responses WHERE NOT TimeSearching IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY TimeSearching", "results": [["15-30 minutes a day", 30.988560696602356], ["30-60 minutes a day", 38.00580501963463], ["60-120 minutes a day", 14.495475499402424], ["Less than 15 minutes a day", 10.602697626771384], ["Over 120 minutes a day", 5.90746115758921]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the respondents spend answering questions?", "labels": [{"query": "SELECT TimeAnswering, COUNT(TimeAnswering) * 100.0 / (SELECT COUNT(TimeAnswering) FROM Responses) AS percentage FROM Responses WHERE NOT TimeAnswering IS NULL GROUP BY TimeAnswering", "results": [["15-30 minutes a day", 32.086138544183534], ["30-60 minutes a day", 30.526167632362945], ["60-120 minutes a day", 13.310187900255695], ["Less than 15 minutes a day", 19.519575875577658], ["Over 120 minutes a day", 4.5579300476201645]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the Individual Contributors spend answering questions?", "labels": [{"query": "SELECT TimeAnswering, COUNT(TimeAnswering) * 100.0 / (SELECT COUNT(TimeAnswering) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS percentage FROM Responses WHERE NOT TimeAnswering IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY TimeAnswering", "results": [["15-30 minutes a day", 33.808731695345095], ["30-60 minutes a day", 29.723759919282266], ["60-120 minutes a day", 11.518638706334706], ["Less than 15 minutes a day", 21.37383763737013], ["Over 120 minutes a day", 3.5750320416678028]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What's the percentage distribution of responses on how much time the People managers spend answering questions?", "labels": [{"query": "SELECT TimeAnswering, COUNT(TimeAnswering) * 100.0 / (SELECT COUNT(TimeAnswering) FROM Responses WHERE IndividualContributorOrPeopleManager = 'People manager') AS percentage FROM Responses WHERE NOT TimeAnswering IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY TimeAnswering", "results": [["15-30 minutes a day", 21.30360205831904], ["30-60 minutes a day", 35.54030874785592], ["60-120 minutes a day", 24.614065180102916], ["Less than 15 minutes a day", 7.753001715265866], ["Over 120 minutes a day", 10.789022298456262]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What processes, tools, and programs do respondents (in percentage) report having inside their organization?", "labels": [{"query": "SELECT ProfessionalTech.name AS tech, COUNT(ProfessionalTech.id) * 100.0 / (SELECT COUNT(DISTINCT Response_ProfessionalTech.Response_id) FROM Response_ProfessionalTech) AS num_responses FROM ProfessionalTech JOIN Response_ProfessionalTech ON ProfessionalTech.id = Response_ProfessionalTech.ProfessionalTech_id GROUP BY ProfessionalTech.name", "results": [["AI-assisted technology tool(s)", 15.659478735370845], ["Automated testing", 60.78548692051791], ["Continuous integration (CI) and (more often) continuous delivery", 71.93356149630232], ["DevOps function", 60.45042242060168], ["Developer portal or other central places to find tools/services", 36.70152933011033], ["Innersource initiative", 14.13493526075198], ["Microservices", 49.12524232343298], ["None of these", 11.928296197017925], ["Observability tools", 39.35093219730513]]}, {"query": "SELECT ProfessionalTech.Name, COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS Percentage FROM ProfessionalTech JOIN Response_ProfessionalTech ON ProfessionalTech.id = Response_ProfessionalTech.ProfessionalTech_id GROUP BY ProfessionalTech.Name", "results": [["AI-assisted technology tool(s)", 7.336517761033369], ["Automated testing", 28.478202368137783], ["Continuous integration (CI) and (more often) continuous delivery", 33.70111230714029], ["DevOps function", 28.321223537854323], ["Developer portal or other central places to find tools/services", 17.19478830283459], ["Innersource initiative", 6.622264083243631], ["Microservices", 23.015339074273413], ["None of these", 5.588446358091137], ["Observability tools", 18.436042339433083]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which industries had more than 3000 respondents?", "labels": [{"query": "SELECT industry, COUNT(industry) AS cnt FROM Responses WHERE NOT industry IS NULL GROUP BY industry HAVING COUNT(industry) > 3000", "results": [["Financial Services", 4421], ["Information Services, IT, Software Development, or other Technology", 18159], ["Other", 4011]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which industries have at least 10% of the Individual Contributors working in?", "labels": [{"query": "SELECT Industry, percentage FROM (SELECT Industry, COUNT(Industry) * 100.0 / SUM(COUNT(Industry)) OVER () AS percentage FROM Responses WHERE NOT Industry IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY Industry) WHERE percentage >= 10.", "results": [["Financial Services", 11.886894018555461], ["Information Services, IT, Software Development, or other Technology", 48.87432316899402], ["Other", 11.085779424337417]]}, {"query": "SELECT Industry, COUNT(*) AS Total FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor' GROUP BY Industry HAVING Total >= (SELECT COUNT(*) * 0.1 FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor')", "results": [[null, 6104], ["Information Services, IT, Software Development, or other Technology", 15435]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Which industry apart from Software has the highest number of respondents?", "labels": [{"query": "SELECT Industry FROM (SELECT Industry, COUNT(Industry) * 100.0 / SUM(COUNT(Industry)) OVER () AS percentage FROM Responses WHERE NOT Industry IS NULL GROUP BY Industry) WHERE NOT Industry LIKE '%Software%' ORDER BY percentage DESC LIMIT 1", "results": [["Financial Services"]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many respondents agreed to participate in the Professional Developer series?", "labels": [{"query": "SELECT COUNT(ProfessionalDeveloperParticipation) FROM Responses WHERE ProfessionalDeveloperParticipation = 'Yes'", "results": [[43872]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of Individual Contributors had more than twenty years of experience?", "labels": [{"query": "SELECT (SUM(CASE WHEN WorkExp >= 20 THEN 1 ELSE 0 END) * 100. / COUNT(*)) AS percentage FROM Responses WHERE NOT WorkExp IS NULL AND IndividualContributorOrPeopleManager = 'Individual contributor'", "results": [[17.455273698264353]]}, {"query": "SELECT ROUND(CAST((SELECT COUNT(*) FROM Responses WHERE WorkExp > 20 AND IndividualContributorOrPeopleManager = 'Individual contributor') AS REAL) / CAST((SELECT COUNT(*) FROM Responses WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS REAL) * 100, 2) AS Percentage", "results": [[13.97]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the mean years of experience do Individual Contributors and People Manager have?", "labels": [{"query": "SELECT IndividualContributorOrPeopleManager, AVG(WorkExp) FROM Responses WHERE NOT WorkExp IS NULL AND NOT IndividualContributorOrPeopleManager IS NULL GROUP BY IndividualContributorOrPeopleManager", "results": [["Individual contributor", 10.879813084112149], ["People manager", 14.703672647995976]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Is the mean years of experience higher for People Manager than Individual Contributors? Return 1 if true otherwise return 0.", "labels": [{"query": "WITH avgworkexp AS (SELECT IndividualContributorOrPeopleManager, AVG(WorkExp) AS avg_exp FROM Responses WHERE NOT WorkExp IS NULL AND NOT IndividualContributorOrPeopleManager IS NULL GROUP BY IndividualContributorOrPeopleManager) SELECT (SELECT avg_exp FROM avgworkexp WHERE IndividualContributorOrPeopleManager = 'People manager') > (SELECT avg_exp FROM avgworkexp WHERE IndividualContributorOrPeopleManager = 'Individual contributor') AS result", "results": [[1]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the mean years of experience by industry?", "labels": [{"query": "SELECT Industry, AVG(WorkExp) AS avg_exp FROM Responses WHERE NOT Industry IS NULL AND NOT WorkExp IS NULL GROUP BY Industry", "results": [["Advertising Services", 10.89987163029525], ["Financial Services", 11.237587848560418], ["Healthcare", 12.15036231884058], ["Higher Education", 12.975728155339805], ["Information Services, IT, Software Development, or other Technology", 11.206936608031862], ["Insurance", 11.964488636363637], ["Legal Services", 11.159420289855072], ["Manufacturing, Transportation, or Supply Chain", 11.98764001544998], ["Oil & Gas", 12.192727272727273], ["Other", 11.345208228800804], ["Retail and Consumer Services", 11.056613484302625], ["Wholesale", 10.858695652173912]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the top 5 industries with the most average years of People manager experience?", "labels": [{"query": "SELECT Industry, AVG(WorkExp) AS avg_exp FROM Responses WHERE NOT Industry IS NULL AND NOT WorkExp IS NULL AND IndividualContributorOrPeopleManager = 'People manager' GROUP BY Industry ORDER BY avg_exp DESC LIMIT 5", "results": [["Oil & Gas", 16.555555555555557], ["Higher Education", 15.724358974358974], ["Wholesale", 15.451612903225806], ["Manufacturing, Transportation, or Supply Chain", 15.37], ["Advertising Services", 15.157303370786517]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What percentage of respondents agree or strongly agree that they can find up-to-date information within the organization to help them do their job?", "labels": [{"query": "SELECT SUM(percentage) FROM (SELECT UpToDateInformation, COUNT(UpToDateInformation) * 100.0 / (SELECT COUNT(UpToDateInformation) FROM Responses) AS percentage FROM Responses WHERE NOT UpToDateInformation IS NULL GROUP BY UpToDateInformation) WHERE UpToDateInformation IN ('Agree', 'Strongly agree')", "results": [[50.05263409732523]]}, {"query": "SELECT ROUND((COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses WHERE NOT UpToDateInformation IS NULL)), 2) AS Percentage FROM Responses WHERE UpToDateInformation IN ('Agree', 'Strongly agree')", "results": [[50.05]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What is the % of Automated testing setup per industry?", "labels": [{"query": "WITH rel_prof_ind AS (SELECT r.*, p.*, s.Industry FROM Response_ProfessionalTech AS r JOIN ProfessionalTech AS p ON r.ProfessionalTech_id = p.id JOIN Responses AS s ON r.Response_id = s.id WHERE NOT s.Industry IS NULL) SELECT Industry, COUNT(DISTINCT CASE WHEN name = 'Automated testing' THEN Response_id END) * 100.0 / COUNT(DISTINCT Response_id) AS ratio FROM rel_prof_ind GROUP BY Industry ORDER BY ratio DESC", "results": [["Financial Services", 69.48096885813149], ["Retail and Consumer Services", 65.46121593291404], ["Insurance", 64.89971346704871], ["Information Services, IT, Software Development, or other Technology", 63.10327227357795], ["Healthcare", 62.824074074074076], ["Legal Services", 62.5], ["Other", 58.7297505785549], ["Advertising Services", 58.16062176165803], ["Manufacturing, Transportation, or Supply Chain", 53.17804974338729], ["Oil & Gas", 51.64835164835165], ["Wholesale", 38.63636363636363], ["Higher Education", 35.80672993960311]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Percentagewise how did respondents feel about the length of the survey?", "labels": [{"query": "SELECT SurveyLength, COUNT(SurveyLength) * 100.0 / SUM(COUNT(SurveyLength)) OVER () AS percentage FROM Responses WHERE NOT SurveyLength IS NULL GROUP BY SurveyLength", "results": [["Appropriate in length", 76.26987338844886], ["Too long", 21.51240099439209], ["Too short", 2.217725617159045]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Percentagewise how did respondents feel about the difficulty of the survey?", "labels": [{"query": "SELECT SurveyEase, COUNT(SurveyEase) * 100.0 / SUM(COUNT(SurveyEase)) OVER () AS percentage FROM Responses WHERE NOT SurveyEase IS NULL GROUP BY SurveyEase", "results": [["Difficult", 1.5874482981722393], ["Easy", 62.495089770547864], ["Neither easy nor difficult", 35.917461931279895]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "Percantagewise who participated in the survey?", "labels": [{"query": "SELECT ResponderDescription, COUNT(ResponderDescription) * 100.0 / SUM(COUNT(ResponderDescription)) OVER () AS percentage FROM Responses WHERE NOT ResponderDescription IS NULL GROUP BY ResponderDescription", "results": [["I am a developer by profession", 75.39132579834948], ["I am learning to code", 5.562656978830283], ["I am not primarily a developer, but I write code sometimes as part of my work/studies", 10.039917473986366], ["I code primarily as a hobby", 5.561535701471116], ["I used to be a developer by profession, but no longer am", 2.086697165410836], ["None of these", 1.3578668819519197]]}, {"query": "SELECT COUNT(*) * 100.0 / (SELECT COUNT(*) FROM Responses) AS ParticipationPercentage FROM Responses WHERE NOT SurveyAgreement IS NULL", "results": [[100.0]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What\u2019s the second most used database and how many people use it?", "labels": [{"query": "select Databases.Name, counts from ( select Databases_id, count(*) as counts from Response_DatabaseHaveWorkedWith group by Databases_id order by counts desc) join Databases on Databases.id=Databases_id limit 1 offset 1;", "results": [["MySQL", 31489]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many people outside the US work with USD?", "labels": [{"query": "select count(*) from responses where Currency = 'USD\tUnited States dollar' and Country != 'United States of America'", "results": [[2123]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What office tool for synchronous communication/collaboration is the most used in each industry?", "labels": [{"query": "select industry, name, counts from ( select r.industry, office.name, count(*) as counts, ROW_NUMBER() OVER(PARTITION BY r.industry ORDER BY COUNT(*) DESC) AS rn from Responses as r join Response_OfficeStackSyncHaveWorkedWith as res_stack on res_stack.response_id = r.id join OfficeStackSync as office on res_stack.OfficeStackSync_id=office.id where r.industry is not Null group by r.industry, office.name)where rn=1", "results": [["Advertising Services", "Slack", 515], ["Financial Services", "Microsoft Teams", 2492], ["Healthcare", "Microsoft Teams", 1378], ["Higher Education", "Zoom", 803], ["Information Services, IT, Software Development, or other Technology", "Slack", 10462], ["Insurance", "Microsoft Teams", 505], ["Legal Services", "Microsoft Teams", 131], ["Manufacturing, Transportation, or Supply Chain", "Microsoft Teams", 1883], ["Oil & Gas", "Microsoft Teams", 197], ["Other", "Microsoft Teams", 2224], ["Retail and Consumer Services", "Slack", 1280], ["Wholesale", "Microsoft Teams", 88]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "What are the average work experiences of the users professionally using each of the operating systems?", "labels": [{"query": "select os.name, avg(r.WorkExp) as WorkExp from responses r join Response_OpSysProfessionalUse as res on r.id=res.response_id join OperatingSystems as os on res.OperatingSystems_id=os.id where r.WorkExp is not Null group by os.name order by WorkExp desc", "results": [["Haiku", 19.25], ["AIX", 18.557377049180328], ["BSD", 18.358024691358025], ["Solaris", 17.710227272727273], ["Cygwin", 17.204347826086956], ["Red Hat", 14.056373580143038], ["Other (Please Specify):", 14.025492468134415], ["iPadOS", 13.81709265175719], ["Other Linux-based", 13.62405578152237], ["Debian", 12.718070273284997], ["Fedora", 12.365116279069767], ["iOS", 11.830088987764183], ["Windows", 11.823259223063767], ["ChromeOS", 11.685314685314685], ["Android", 11.60201912858661], ["Ubuntu", 11.568679549114332], ["Windows Subsystem for Linux (WSL)", 11.247557875016726], ["MacOS", 11.156535134494609], ["Arch", 9.384048257372655]]}], "prediction": null, "pred_eval": "", "comment": ""}, {"question": "How many people have worked with HuggingFace Transformers?", "labels": [{"query": "select count(distinct r.id) from responses r join Response_MiscTechHaveWorkedWith as res on r.id=res.response_id join MiscTech as tech on res.MiscTech_id=tech.id where tech.name='Hugging Face Transformers'", "results": [[1852]]}], "prediction": null, "pred_eval": "", "comment": ""}]