forked from coderetreat/coderetreat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
562754d
commit 7c0b687
Showing
105 changed files
with
1,268 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} |
12 changes: 12 additions & 0 deletions
12
_data/communities/austria-salzburg-software-craft-and-testing-community-salzburg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
12 changes: 12 additions & 0 deletions
12
_data/communities/belgium-leuven-software-crafting-and-testing-belgium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/canada-calgary-calgary-software-crafters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/canada-charlottetown-pei-developers.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/chile-santiago-software-crafters-chile.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/czech-republic-prague-coderetreat-cz.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
12 changes: 12 additions & 0 deletions
12
_data/communities/espana-villaviciosa-de-odon-madrid-smalltalk-user-group.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
12 changes: 12 additions & 0 deletions
12
_data/communities/france-bordeaux-okiwi-software-craftsmanship-bordeaux.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/france-nantes-software-crafters-nantes.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/france-paris-software-crafters-paris.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/france-rennes-software-crafters-rennes.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/france-strasbourg-software-craft-strasbourg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/france-toulouse-software-crafters-toulouse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/germany-bochum-softwerkskammer-ruhrgebiet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
_data/communities/germany-cologne-softwerkskammer-koln.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
Oops, something went wrong.