skoop / dev-community-data

Collecting data on all PHP user groups to be used by anyone.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Community Data

Build Status

The goal is simple: collect all data, current and historical for anyone to use in order to make a stronger developer community.

Feel free to add your own record, fix erroneous data and add additional fields.

User Groups

The file /data/user-groups.json lists all user groups. Leave "last_meetup" blank if still active.

{
    "name": "Full user group name",
    "tags": ["php", "js"],
    "first_meetup": "yyyy-mm-dd",
    "last_meetup": "yyyy-mm-dd", 
    "locations": [
        {
            "name": "City, State (if applies), Country",
            "first_meetup": "yyyy-mm-dd",
            "last_meetup": "yyyy-mm-dd",
        }
    ],
    "website": "http://example.com",
    "twitter": "@twitter_handle",
    "calendar_feed": "http://example.com/feed.rss"
}

Conferences

The file /data/conferences.json lists all user conferences. Leave "last_event" blank if still active.

[
    {
        "key": "example",
        "name": "Full conference name",
        "tags": ["ruby"],
        "first_event": "yyyy-mm-dd",
        "last_event": "",
        "events": [
            {
                "name": "Name of specific edition",
                "location": {
                    "name": "City, State (if applies), Country"
                },
                "event_start": "yyyy-mm-dd",
                "event_end": "yyyy-mm-dd",
                "cfp_start": "yyyy-mm-dd",
                "cfp_end": "yyyy-mm-dd",
                "session_feed": "https://example.com/2016/sessions.json",
                "speaker_feed": "https://example.com/2016/speakers.json",
                "organizers": [
                    {
                        "name": "Organizer Name",
                        "twitter": "@twitter_handle"
                    }
                ]
            }
        ],
        "website": "https://example.com",
        "twitter": "@twitter_handle"
    }
]

About

Collecting data on all PHP user groups to be used by anyone.


Languages

Language:PHP 100.0%