Skip to content

Commit

Permalink
Add communities
Browse files Browse the repository at this point in the history
  • Loading branch information
rradczewski committed Apr 25, 2024
1 parent 562754d commit 7c0b687
Show file tree
Hide file tree
Showing 105 changed files with 1,268 additions and 0 deletions.
56 changes: 56 additions & 0 deletions _data/communities/.SCHEMA.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"title": "Community",
"type": "object",
"properties": {
"name": {
"description": "Name of the community",
"type": "string",
"minLength": 1
},
"url": {
"description": "An URL leading to further information about your event, e.g. sign up on meetup/eventbrite",
"type": "string",
"format": "uri"
},
"location": {
"oneOf": [
{ "$ref": "#/definitions/real_location" },
{ "$ref": "#/definitions/virtual_location" }
]
}
},
"definitions": {
"virtual_location": {
"type": "string",
"enum": ["virtual"]
},
"real_location": {
"description": "Further data about the location your event takes place at",
"type": "object",
"properties": {
"city": {
"type": "string",
"minLength": 1
},
"country": {
"type": "string",
"minLength": 1
},
"coordinates": {
"type": "object",
"description": "Lat/Long values, given in EPSG:3857 (http://wiki.openstreetmap.org/wiki/EPSG:3857)",
"properties": {
"latitude": { "type": "number" },
"longitude": { "type": "number" }
},
"additionalProperties": false,
"required": ["latitude", "longitude"]
}
},
"additionalProperties": false,
"required": ["country", "city"]
}
},
"additionalProperties": false,
"required": ["name", "url", "location"]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Craft and Testing Community Salzburg",
"location": {
"city": "Salzburg",
"country": "Austria",
"coordinates": {
"latitude": 47.798135,
"longitude": 13.046481
}
},
"url": "https://meetup.com/salzburg-software-craftsmanship"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafting and Testing Belgium",
"location": {
"country": "Belgium",
"city": "Leuven",
"coordinates": {
"latitude": 50.8468,
"longitude": 4.7294
}
},
"url": "https://meetup.com/socratesbe"
}
8 changes: 8 additions & 0 deletions _data/communities/canada-calgary-calgary-agile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "CALGARY AGILE",
"location": {
"country": "Canada",
"city": "Calgary"
},
"url": "https://meetup.com/calgary-agile-methods-user-group"
}
12 changes: 12 additions & 0 deletions _data/communities/canada-calgary-calgary-software-crafters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Calgary Software Crafters",
"location": {
"city": "Calgary",
"country": "Canada",
"coordinates": {
"latitude": 51.042866,
"longitude": -114.0914883
}
},
"url": "https://meetup.com/calgary-software-crafters"
}
12 changes: 12 additions & 0 deletions _data/communities/canada-charlottetown-pei-developers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "PEI Developers",
"location": {
"country": "Canada",
"city": "Charlottetown",
"coordinates": {
"latitude": 46.231994,
"longitude": -63.1273027
}
},
"url": "https://meetup.com/pei-developers"
}
12 changes: 12 additions & 0 deletions _data/communities/chile-santiago-software-crafters-chile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Chile",
"location": {
"country": "Chile",
"city": "Santiago",
"coordinates": {
"latitude": -33.4724727,
"longitude": -70.9100286
}
},
"url": "https://meetup.com/software-crafters-chile"
}
12 changes: 12 additions & 0 deletions _data/communities/czech-republic-prague-coderetreat-cz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "CodeRetreat CZ",
"location": {
"country": "Czech Republic",
"city": "Prague",
"coordinates": {
"latitude": 50.0595854,
"longitude": 14.3255418
}
},
"url": "https://meetup.com/coderetreat-cz"
}
12 changes: 12 additions & 0 deletions _data/communities/ecuador-quito-thoughtworks-ecuador.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Thoughtworks Ecuador",
"location": {
"country": "Ecuador",
"city": "Quito",
"coordinates": {
"latitude": -0.1858189,
"longitude": -78.4825211
}
},
"url": "https://meetup.com/thoughtworks-ecuador"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Madrid Smalltalk User Group",
"location": {
"country": "España",
"city": "Villaviciosa de Odón",
"coordinates": {
"latitude": 40.3377904,
"longitude": -3.8970063
}
},
"url": "https://meetup.com/madridsug"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Okiwi - Software Craftsmanship Bordeaux",
"location": {
"country": "France",
"city": "Bordeaux",
"coordinates": {
"latitude": 44.8395063,
"longitude": -0.5898097
}
},
"url": "https://meetup.com/software-craftsmanship-bdx"
}
12 changes: 12 additions & 0 deletions _data/communities/france-lille-software-craft-lille.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Craft Lille",
"location": {
"country": "France",
"city": "Lille",
"coordinates": {
"latitude": 50.6333,
"longitude": 3.0667
}
},
"url": "https://meetup.com/software-craftsmanship-lille"
}
12 changes: 12 additions & 0 deletions _data/communities/france-lyon-software-crafters-lyon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Lyon",
"location": {
"country": "France",
"city": "Lyon",
"coordinates": {
"latitude": 45.7578,
"longitude": 4.8351
}
},
"url": "https://meetup.com/software-craftsmanship-lyon"
}
12 changes: 12 additions & 0 deletions _data/communities/france-nantes-software-crafters-nantes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Nantes",
"location": {
"country": "France",
"city": "Nantes",
"coordinates": {
"latitude": 47.217959,
"longitude": -1.5451488
}
},
"url": "https://meetup.com/nantes-software-crafters-nantes"
}
12 changes: 12 additions & 0 deletions _data/communities/france-paris-jams-de-code.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Jams de code",
"location": {
"city": "Paris",
"country": "France",
"coordinates": {
"latitude": 48.8534951,
"longitude": 2.3483915
}
},
"url": "https://meetup.com/jams-de-code"
}
12 changes: 12 additions & 0 deletions _data/communities/france-paris-software-crafters-paris.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Paris",
"location": {
"country": "France",
"city": "Paris",
"coordinates": {
"latitude": 48.8639164,
"longitude": 2.3390189
}
},
"url": "https://meetup.com/paris-software-craftsmanship"
}
12 changes: 12 additions & 0 deletions _data/communities/france-rennes-maxsessions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "MaxSessions",
"location": {
"city": "Rennes",
"country": "France",
"coordinates": {
"latitude": 48.133083,
"longitude": -1.683465
}
},
"url": "https://meetup.com/maxsessions"
}
12 changes: 12 additions & 0 deletions _data/communities/france-rennes-software-crafters-rennes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Rennes",
"location": {
"country": "France",
"city": "Rennes",
"coordinates": {
"latitude": 48.1120266,
"longitude": -1.6884867
}
},
"url": "https://meetup.com/software-craftsmanship-rennes"
}
12 changes: 12 additions & 0 deletions _data/communities/france-strasbourg-software-craft-strasbourg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Craft Strasbourg",
"location": {
"city": "Strasbourg",
"country": "France",
"coordinates": {
"latitude": 48.5767012,
"longitude": 7.755099
}
},
"url": "https://meetup.com/software-crafters-strasbourg"
}
12 changes: 12 additions & 0 deletions _data/communities/france-toulouse-software-crafters-toulouse.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Software Crafters Toulouse",
"location": {
"country": "France",
"city": "Toulouse",
"coordinates": {
"latitude": 43.605988,
"longitude": 1.452122
}
},
"url": "https://meetup.com/software-craftsmanship-toulouse"
}
12 changes: 12 additions & 0 deletions _data/communities/france-valence-ardechdrom-dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Ardèch’Drôm Dev",
"location": {
"city": "Valence",
"country": "France",
"coordinates": {
"latitude": 44.9328158,
"longitude": 4.8887694
}
},
"url": "https://meetup.com/ardech-drom-dev"
}
12 changes: 12 additions & 0 deletions _data/communities/france-wasquehal-nord-agile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Nord agile",
"location": {
"country": "France",
"city": "Wasquehal",
"coordinates": {
"latitude": 50.681279,
"longitude": 3.117162
}
},
"url": "https://meetup.com/nord-agile"
}
12 changes: 12 additions & 0 deletions _data/communities/germany-bielefeld-socramob.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "SoCraMOB",
"location": {
"city": "Bielefeld",
"country": "Germany",
"coordinates": {
"latitude": 52.0298491,
"longitude": 8.5337646
}
},
"url": "https://meetup.com/socramob"
}
12 changes: 12 additions & 0 deletions _data/communities/germany-bochum-softwerkskammer-ruhrgebiet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Softwerkskammer Ruhrgebiet",
"location": {
"country": "Germany",
"city": "Bochum",
"coordinates": {
"latitude": 51.4451438,
"longitude": 7.2565569
}
},
"url": "https://meetup.com/softwerkskammer-ruhrgebiet"
}
12 changes: 12 additions & 0 deletions _data/communities/germany-cologne-softwerkskammer-koln.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Softwerkskammer Köln",
"location": {
"country": "Germany",
"city": "Cologne",
"coordinates": {
"latitude": 50.9847388,
"longitude": 6.8879454
}
},
"url": "https://meetup.com/softwerkskammer-koln"
}
Loading

0 comments on commit 7c0b687

Please sign in to comment.