marceloogeda / find-a-mentor

Coding Coach alpha website

Home Page:https://mentors.codingcoach.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status contributions welcome

Patreon donate button

Pre-release version of Coding Coach.

Looking for a mentor?

Just go to https://mentors.codingcoach.io/ and find her / him / them.

Requirements

Want to be a mentor?

  1. Fork
  2. Clone your fork (if you use passphrase, please clone with the HTTPS approach)
  3. yarn (make sure you have a compatible node version, nvm or fnm can help here)

CLI Geek?

Add user - demo

  1. yarn run add-user
  2. Answer the questions.
  3. Step 2 will push the required changes to a branch add-{your-name}-as-mentor so you just need to create a PR.

Like to do it manually?

  1. Create a branch "add-{your-name}-as-mentor"
  2. Add your details in src/mentors.json file (check the below schema for requirements).
  3. Run yarn test to validate that the details is following the right schema (carelfully read the output to see what needs to be fixed)
  4. Push the "add-{your-name}-as-mentor" branch to github
  5. PR with the title "Add {Your Name} as mentor".
  6. Thanks!

Notes:

  1. Please double check your details. It’s important that the data scheme remains the same; just replace the details with your values. If you change the data architecture, it will cause errors.
  2. In order to avoid merge conflicts, please fetch the changes on master before pushing.
  3. By adding yourself as a mentor, you give us permission to send you emails. Don't worry, we'll not spam you, just for welcome you nicely and make sure you will get updates about the project.

Mentor schema

{
  "id": "your email",
  "name": "your name",                          // minLength: 2
  "avatar": "https://link-to-your/avatar.jpg",  // url, must start with https://
  "title": "NodeJS developer",                  // minLength: 2, maxLength: 30
  "description": "Hi, I'm NodeJs developer",    // minLength: 5, maxLength: 80 optional
  "country": "SE",                              // Country code (link to the list below)
  "spokenLanguages": [                          // ISO language code (link to list below)
    "en", "fr", "zh"
  ],
  "tags": [                                     // minItems: 1, maxItems: 5, only lowercase characters
    "nodejs", "webpack", "mongodb"              // please avoid synonyms (see list below)
  ],
  "channels": [                                 // minItems: 1, maxItems: 3
    {
      "type": "email",                          // see available channels below
      "id": "john@gmail.com"                    // depends on the type
    }
  ]
}

synonyms tags

Use Don't use
nodejs node, node.js
reactjs react, react.js
react native react-native
c# csharp
frontend front end
express expressjs
fullstack full stack
vuejs vue, vue.js
asp.net aspnet
asp.net core aspnetcore

Country codes

https://github.com/hjnilsson/country-flags/blob/master/countries.json

Spoken language ISO codes

https://github.com/meikidd/iso-639-1/blob/master/src/data.js

Channels

type parameter
email email address
slack memberID (How to find it?)
linkedin userId
facebook userId
twitter userId
github userId
website link to your personal website without https

Want to contribute this project?

That's why we here! 😀

Have an idea? Please use a branch and create a PR. If you not sure how to do this, ask us or find a mentor who can assist.

Haven't time to code it? Please open an issue.

Slack

Coding Coach is on Slack! Click here to join.


This project was bootstrapped with Create React App.

Available Scripts

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn test:e2e

Launches the Cypress test runner and the app; must run on port 3000. Learn more about Cypress on their website.

Code of Conduct

At Coding Coach, we value all our mentors, mentees, and contributors. Our goal is to make this a safe space where new and experienced developers can connect and learn from one another. Therefore, we do not tolerate any form of harassment or prejudice. This Code of Conduct applies to all Coding Coach spaces including but not limited to slack, email correspondence, and social media.

Harassment includes but is not limited to:

  • Offensive comments related to gender, gender identity and expression, sexual orientation, disability, mental illness, physical appearance, body size, age, race, or religion.
  • Deliberate misgendering or use of ‘dead’ or rejected names.
  • Physical contact and simulated physical contact (eg, textual descriptions like “hug” or “backrub”) without consent or after a request to stop.
  • Threats of violence.
  • Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
  • Deliberate intimidation.
  • Stalking or following.
  • Harassing photography or recording, including logging online activity for harassment purposes.
  • Unwelcome sexual attention such as sexual images or behaviour in spaces where they’re not appropriate.
  • Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others
  • Continued one-on-one communication after requests to cease.
  • Deliberate “outing” of any aspect of a person’s identity without their consent except as necessary to protect vulnerable people from intentional abuse.
  • Publication of non-harassing private communication.

We value integrity here at Coding Coach. As such, mentees may not ask for solutions to technical interview take home assessments. We're happy to mentor you in the process of solving difficult questions, but will not provide you with solutions to your assessments as they are meant to reflect your personal skill set.

Members who violate this code of conduct will be approached by someone of the Coding Coach leadership team and asked to stop immediately. Members may also be banned from the Coding Coach slack, blocked on social media, and removed from the website.

If someone makes you or anyone else feel unsafe or unwelcome, please report it as soon as possible. To report an incident of harassment, anonymously or otherwise, please fill out our report form.

Our primary goal is to support you. We will listen to you and then help you determine a course of action based on the situation. While harassment may not always result in that member being expelled from the group, depending on the type and severity of harassment. We want to make sure you have all the support you need no matter what that entails, including whether to stay anonymous or not. Whatever decision you make, our priority is your safety.

Support Coding Coach

Our goal is to keep Coding Coach a free platform because we believe that mentorship should be free and accessible for all users. However, there are some costs incurred with creating a platform. We could use your help! If you're just as passionate about Coding Coach as we are, we'd appreciate your support on Patreon. Here, you can sign up to be a member and help support our mission.

About

Coding Coach alpha website

https://mentors.codingcoach.io

License:MIT License


Languages

Language:JavaScript 78.7%Language:CSS 17.6%Language:HTML 3.7%