-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Berlin Buzzwords and FOSS Backstage #170
base: master
Are you sure you want to change the base?
Conversation
Add Berlin Node.js Community Meetup
Add Berlin.JS to Berlin Code Of Conduct
Added macoun.de to the list of conferences
Add Rustfest.eu
Hamburg React Meetup
add decodehh contacts
add DO!Hack Hackathon 2016
Italian translation
Add Berlin C++ User Group
Update supporters.json
I just noticed that titles are all caps, so I did spacing in the names of our projects:)
Update supporters.json
Add serverless Hamburg Usergroup
Added C++ User Group Munich
add BeeScalaConf
Add contacts to React Day Berlin section
feat(add meetup): add SinnerSchrader Hamburg meetup
Add PyLight Meetup to supporters.json
…mmons-license-link Added link to Creative commons license reference in spanish version
Add RubyUnconf Hamburg
Update supporters.json
Add the Malmö.rb user group as Supporters
data/supporters.json
Outdated
{ | ||
"name": "Ekaterina Klykova", | ||
"email": "[email protected]" | ||
"phone": "+493092105978" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are several parsing errors in the JSON files. You can see the red markers here on Github. Please fix first. Thanks :)
data/supporters.json
Outdated
{ | ||
"name": "Paul Berschick", | ||
"email": "[email protected]" | ||
"phone": "+493092105977" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please use one space after the colon for the beauty of it :)
data/supporters.json
Outdated
"phone": "+493092105977" | ||
}, | ||
] | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JSON does not allow a comma here (and other places).
error corrections
Made all changes – hope everything works now. I'm something of a beginner, so thanks for the feedback, @hagenburger :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @tthePB, we’re open for beginners and invite everybody to contribute and learn :) I added some more comments, please have a look.
Before you submit, you could check the syntax in the Terminal by parsing it either with Node:
node -e "const fs = require('fs'); console.log(JSON.parse(fs.readFileSync('data/supporters.json')))"
or with Ruby:
ruby -e "require 'json'; puts JSON.parse(File.read('data/supporters.json'))"
Both will either output the JSON (but compressed) or raise an error.
"email": "[email protected]", | ||
"phone": "+49 3092105978" | ||
}, | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please align the curly braces below each other for the beauty of it:
},
{
"name": "Paul Berschick", | ||
"email": "[email protected]", | ||
"phone": "+49 3092105977" | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only add a comma, when another opening {
is following. The last item in JSON must not have a comma (in JavaScript this would be allowed though).
"name": "Paul Berschick", | ||
"email": "[email protected]", | ||
"phone": "+49 3092105977" | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment above.
"email": "[email protected]", | ||
"phone": "+49 3092105978" | ||
}, | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment above.
}, | ||
] | ||
}, | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment above.
Hey @tthePB, is there anything I can do for you with this pull request? Let me know if you have any questions! |
Thanks @hagenburger, I just had no capacity in the last weeks. Will have a look at the comments you gave soon :) |
No description provided.