Coder Social home page Coder Social logo

enavarrocu / baseball-streaming Goto Github PK

View Code? Open in Web Editor NEW

This project forked from keero/baseball-streaming

0.0 0.0 0.0 1.01 MB

Java CLI application for fetching data from WBSC game data (MyBallClub) and render text and image files on disk.

License: MIT License

Python 8.17% Java 91.83%

baseball-streaming's Introduction

baseball-streaming

Java CLI application for fetching live data from WBSC game data (MyBallClub) and continuously write text and image files to disk. The produced files can then be consumed by, for instance, OBS Studio to produce overlays for a live stream.

Download

Make sure you have Java JDK 11 installed on your computer. OpenJDK 11 for windows may be downloaded here

Download the desired release jar from the release page

Run the application

Run the application by opening a terminal (or powershell if you do Windows) and run:

java -jar <path-to-the-downloaded-jar> -h

(replace <path-to-the-downloaded-jar> with the path to the jar file you downloaded before) This will show you the options expected by the appliaction.

usage: baseball-streaming
 -c,--config-file <arg>      Path to config file
 -d,--delay <arg>            Delay (milliseconds) between fetching plays.
                             Defaults to 500 for live and 3000 for replay.
 -g,--game <arg>             Game ID. E.g., '84917'
 -h,--help                   Print this help section
 -m,--run-mode <arg>         Run mode. Either 'live' or 'replay'. Defaults
                             to 'live'
 -P,--plays-base-url <arg>   Base url where to fetch plays from. Defaults
                             to 'https://game.wbsc.org'
 -S,--stats-base-url <arg>   Base url where to fetch stats from. Defaults
                             to 'https://www.wbsceurope.org'
 -s,--series <arg>           Series ID. E.g., '2021-juniorserien-baseboll'
 -t,--target <arg>           Target directory for the output. E.g.,
                             '~/obs/resources'

You may either create a config file (more on that further down) or provide the expected options directly to the application as option arguments.

The -t option specifies the output directory where the output text and image files will be rendered. The -g option specifies which game you are streaming. This is typically a 5 digit number such as 84908 The -s option specifies the series in which the game is played. This is typically in the form <year>-<series>-<sport> such as 2021-elitserien-baseboll.

Assuming you want to stream the game with id 84908 in 2021-elitserien-baseboll to the directory C:/obs-studio/resources, then you issue the follwoing command:

java -jar <path-to-the-downloaded-jar> -t C:/obs-studio/resources -s 2021-elitserien-baseboll -g 84908

If you don't know the game id and series you can find the on the game page at for instance https://www.wbsceurope.org/ or https://stats.baseboll-softboll.se/

For instance the Swedish 2021 Championship final game can be found @ https://www.wbsceurope.org/en/events/2021-elitserien-baseboll/schedule-and-results/box-score/84908

The series and game id can be found in the URL (marked with bold above).

The application will output what is currently happening live. If you want to test it out with no actual game being played at the moment you can use the replay mode by including the option -m replay in the command.

The text and image files produced in the target directory

.
├── away_color.png
├── away_errors.txt
├── away_hits.txt
├── away_score.txt
├── away_team.txt
├── baseball-streaming-all-overlays.json
├── bases
│   ├── ooo.png
│   ├── oox.png
│   ├── oxo.png
│   ├── oxx.png
│   ├── xoo.png
│   ├── xox.png
│   ├── xxo.png
│   └── xxx.png
├── bases.png
├── count.txt
├── current_batter
│   ├── avg.txt
│   ├── batting.txt
│   ├── career
│   │   ├── atbats.txt
│   │   ├── avg.txt
│   │   ├── games.txt
│   │   ├── hits.txt
│   │   ├── hr.txt
│   │   ├── ops.txt
│   │   ├── rbi.txt
│   │   └── sb.txt
│   ├── firstname.txt
│   ├── flag.png
│   ├── fullname.txt
│   ├── hr.txt
│   ├── image.png
│   ├── lastname.txt
│   ├── ops.txt
│   ├── pos.txt
│   ├── rbi.txt
│   ├── stats_for_series.txt
│   └── team_color.png
├── current_pitcher
│   ├── career
│   │   ├── era.txt
│   │   ├── games.txt
│   │   ├── hits.txt
│   │   ├── hrs-allowed.txt
│   │   ├── innings.txt
│   │   ├── strikeouts.txt
│   │   ├── walks.txt
│   │   └── wins-losses.txt
│   ├── count.txt
│   ├── era.txt
│   ├── firstname.txt
│   ├── flag.png
│   ├── fullname.txt
│   ├── games.txt
│   ├── hits.txt
│   ├── hrs-allowed.txt
│   ├── image.png
│   ├── innings.txt
│   ├── lastname.txt
│   ├── stats_for_series.txt
│   ├── strikeouts.txt
│   ├── team_color.png
│   ├── walks.txt
│   └── wins-losses.txt
├── home_color.png
├── home_errors.txt
├── home_hits.txt
├── home_score.txt
├── home_team.txt
├── inhole_batter
│   ├── avg.txt
│   ├── batting.txt
│   ├── career
│   │   ├── atbats.txt
│   │   ├── avg.txt
│   │   ├── games.txt
│   │   ├── hits.txt
│   │   ├── hr.txt
│   │   ├── ops.txt
│   │   ├── rbi.txt
│   │   └── sb.txt
│   ├── firstname.txt
│   ├── flag.png
│   ├── fullname.txt
│   ├── hr.txt
│   ├── image.png
│   ├── lastname.txt
│   ├── ops.txt
│   ├── pos.txt
│   ├── rbi.txt
│   ├── stats_for_series.txt
│   └── team_color.png
├── inning_half.txt
├── inning_text.txt
├── inning.txt
├── lineups
│   ├── away
│   │   ├── 1
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 2
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 3
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 4
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 5
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 6
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 7
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 8
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   ├── 9
│   │   │   ├── avg.txt
│   │   │   ├── batting.txt
│   │   │   ├── career
│   │   │   │   ├── atbats.txt
│   │   │   │   ├── avg.txt
│   │   │   │   ├── games.txt
│   │   │   │   ├── hits.txt
│   │   │   │   ├── hr.txt
│   │   │   │   ├── ops.txt
│   │   │   │   ├── rbi.txt
│   │   │   │   └── sb.txt
│   │   │   ├── firstname.txt
│   │   │   ├── flag.png
│   │   │   ├── fullname.txt
│   │   │   ├── hr.txt
│   │   │   ├── image.png
│   │   │   ├── lastname.txt
│   │   │   ├── ops.txt
│   │   │   ├── pos.txt
│   │   │   ├── rbi.txt
│   │   │   ├── stats_for_series.txt
│   │   │   └── team_color.png
│   │   └── pitcher
│   │       ├── career
│   │       │   ├── era.txt
│   │       │   ├── games.txt
│   │       │   ├── hits.txt
│   │       │   ├── hrs-allowed.txt
│   │       │   ├── innings.txt
│   │       │   ├── strikeouts.txt
│   │       │   ├── walks.txt
│   │       │   └── wins-losses.txt
│   │       ├── count.txt
│   │       ├── era.txt
│   │       ├── firstname.txt
│   │       ├── flag.png
│   │       ├── fullname.txt
│   │       ├── games.txt
│   │       ├── hits.txt
│   │       ├── hrs-allowed.txt
│   │       ├── image.png
│   │       ├── innings.txt
│   │       ├── lastname.txt
│   │       ├── stats_for_series.txt
│   │       ├── strikeouts.txt
│   │       ├── team_color.png
│   │       ├── walks.txt
│   │       └── wins-losses.txt
│   └── home
│       ├── 1
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 2
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 3
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 4
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 5
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 6
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 7
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 8
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       ├── 9
│       │   ├── avg.txt
│       │   ├── batting.txt
│       │   ├── career
│       │   │   ├── atbats.txt
│       │   │   ├── avg.txt
│       │   │   ├── games.txt
│       │   │   ├── hits.txt
│       │   │   ├── hr.txt
│       │   │   ├── ops.txt
│       │   │   ├── rbi.txt
│       │   │   └── sb.txt
│       │   ├── firstname.txt
│       │   ├── flag.png
│       │   ├── fullname.txt
│       │   ├── hr.txt
│       │   ├── image.png
│       │   ├── lastname.txt
│       │   ├── ops.txt
│       │   ├── pos.txt
│       │   ├── rbi.txt
│       │   ├── stats_for_series.txt
│       │   └── team_color.png
│       └── pitcher
│           ├── career
│           │   ├── era.txt
│           │   ├── games.txt
│           │   ├── hits.txt
│           │   ├── hrs-allowed.txt
│           │   ├── innings.txt
│           │   ├── strikeouts.txt
│           │   ├── walks.txt
│           │   └── wins-losses.txt
│           ├── count.txt
│           ├── era.txt
│           ├── firstname.txt
│           ├── flag.png
│           ├── fullname.txt
│           ├── games.txt
│           ├── hits.txt
│           ├── hrs-allowed.txt
│           ├── image.png
│           ├── innings.txt
│           ├── lastname.txt
│           ├── stats_for_series.txt
│           ├── strikeouts.txt
│           ├── team_color.png
│           ├── walks.txt
│           └── wins-losses.txt
├── ondeck_batter
│   ├── avg.txt
│   ├── batting.txt
│   ├── career
│   │   ├── atbats.txt
│   │   ├── avg.txt
│   │   ├── games.txt
│   │   ├── hits.txt
│   │   ├── hr.txt
│   │   ├── ops.txt
│   │   ├── rbi.txt
│   │   └── sb.txt
│   ├── firstname.txt
│   ├── flag.png
│   ├── fullname.txt
│   ├── hr.txt
│   ├── image.png
│   ├── lastname.txt
│   ├── ops.txt
│   ├── pos.txt
│   ├── rbi.txt
│   ├── stats_for_series.txt
│   └── team_color.png
├── outs
│   ├── 0.png
│   ├── 1.png
│   └── 2.png
├── outs.png
└── team_resources
    ├── colors
    │   ├── ALB.png
    │   ├── BRO.png
    │   ├── CIT.png
    │   ├── default_away.png
    │   ├── default_home.png
    │   ├── ENK.png
    │   ├── ENS.png
    │   ├── FRS.png
    │   ├── GEF.png
    │   ├── GOT.png
    │   ├── KGA.png
    │   ├── LEK.png
    │   ├── MAL.png
    │   ├── NIC.png
    │   ├── ORE.png
    │   ├── RAT.png
    │   ├── SKE.png
    │   ├── SKO.png
    │   ├── SOD.png
    │   ├── STO.png
    │   ├── SUN.png
    │   ├── SVL.png
    │   ├── TRA.png
    │   ├── UME.png
    │   └── UPP.png
    ├── flags
    │   ├── 1234.png
    │   ├── 5678.png
    │   └── default.png
    └── player_images
        ├── 1234-12345.png
        ├── 5678-67890.png
        ├── default.png
        .
        .
        .

If you want to use your own images for bases, outs, team flags, or player images; then just replace the files in the bases/, outs/, team_resources/... directories (e.g., copy your own bases empty image to bases/ooo.png and so forth).

Building from source code

TBD

Contributing

TBD

baseball-streaming's People

Contributors

keero 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.