Git Product home page Git Product logo

languish's Introduction

Languish โ€” Programming Language Trends

Links

Features

  • Currently provides data from GitHub and Stack Overflow
  • Measures current activity/velocity rather than total past mass
  • Defaults to a simple "Mean Score" of other percentages
    • I couldn't tell which individual metric was best
    • I don't want a fancy equation that allows me just to get the results I want
  • Can change y axis metric without changing language selections
  • Provides metrics for many languages
  • Links to GitHub topics and trending repos by language
  • Can permalink to Languish configured selections and metric
  • Less than 250 KB (including data) and only 6 HTTP requests
  • Limitation: Works on my phone, but not carefully tailored for mobile

Credits

  • Uses icons from Feather Icons and Font Awesome, via IcoMoon
  • Uses dependencies as specified in the package.json file
  • Please see their respective licenses
  • Previously used data from GitHut 2.0 and still bases some queries and analysis from here

Additional notes

  • Adding a language to GitHub
  • Stack Overflow tag query:
    select
      tags,
      extract(year from creation_date) year,
      extract(quarter from creation_date) quarter,
      count(*) count
    from `bigquery-public-data.stackoverflow.posts_questions`
    group by tags, year, quarter
    order by count(*) desc
  • Also: https://data.stackexchange.com/ (with 50k row limit but updates sooner)
    SELECT
      t.TagName,
      DatePart(quarter, p.LastActivityDate) AS q,
      Year(p.LastActivityDate) AS y, 
      COUNT(p.Id) As NumPosts
    FROM Posts p
    JOIN PostTags pt ON p.Id = pt.PostId
    JOIN Tags t ON t.Id = pt.TagId
    WHERE Year(p.LastActivityDate) = 2021 AND DatePart(quarter, p.LastActivityDate) = 4
    GROUP BY DatePart(quarter, p.LastActivityDate), Year(p.LastActivityDate), t.TagName
    ORDER BY y, q, NumPosts DESC
  • https://subredditstats.com/api/subreddit?name=Python
  • https://wikimedia.org/api/rest_v1/

languish's People

Contributors

tjpalmer avatar shilangyu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.