All Projects β†’ Catalyst-IN β†’ OpenSourceEvents-Frontend

Catalyst-IN / OpenSourceEvents-Frontend

Licence: MIT license
This website contains a list of open source events and hackathon.

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to OpenSourceEvents-Frontend

mlh-events
The unofficial API for MLH events.
Stars: ✭ 13 (-75.93%)
Mutual labels:  hackathons
hackathons-v1
πŸ’»πŸ’₯ Open source directory of free student-led high school hackathons used by thousands of students worldwide (join the mailing list on the website!)
Stars: ✭ 65 (+20.37%)
Mutual labels:  hackathons
Data-Science-Hackathon-And-Competition
Grandmaster in MachineHack (3rd Rank Best) | Top 70 in AnalyticsVidya & Zindi | Expert at Kaggle | Hack AI
Stars: ✭ 165 (+205.56%)
Mutual labels:  hackathons
hackathons
Tips, Tricks, and Resources for running your hackathon.
Stars: ✭ 238 (+340.74%)
Mutual labels:  hackathons
Academiccontent
Free tech resources for faculty, students, researchers, life-long learners, and academic community builders for use in tech based courses, workshops, and hackathons.
Stars: ✭ 2,196 (+3966.67%)
Mutual labels:  hackathons
dev-cover
🌐 Get and publish your developer portfolio with just your username
Stars: ✭ 155 (+187.04%)
Mutual labels:  hackathons
hackathons
πŸ’»πŸ’₯ Open source directory of free student-led high school hackathons used by thousands of students worldwide
Stars: ✭ 116 (+114.81%)
Mutual labels:  hackathons
dutch-hackathons
Building the most comprehensive list of annual hackathons in the Netherlands at hackathonlist.nl.
Stars: ✭ 22 (-59.26%)
Mutual labels:  hackathons
hackathons
A collection of tips and tricks for using Twilio at hackathons
Stars: ✭ 35 (-35.19%)
Mutual labels:  hackathons

OpenSourceEvents-Frontend

This website contains a list of open source events and hackathons. They are in a proper month wise timeline so the user does not face difficulty while searching through the open source events. Most of the times students want to participate in the events but they don't know the dates or the event details. This repo contains links of the events and when are the events going to take place.

website-https://opensourcefrontend.netlify.app/

ScreenShots

Home Page

Detail of events according the month

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

  1. Get the path where you have your git repository on your machine. Go to that path in Terminal using cd. Alternatively, Right click on project in Github Desktop and hit β€˜Open in Terminal’.
  2. Run git remote -v to check the status you should see something like the following:

    origin https://github.com/YOUR_USERNAME/OpenSourceEvents-Frontend.git (fetch)
    origin https://github.com/YOUR_USERNAME/OpenSourceEvents-Frontend.git (push)

  3. Set the upstream:
    git remote add upstream https://github.com/Catalyst-CSE/OpenSourceEvents-Frontend.git
  4. Run git remote -v again to check the status, you should see something like the following:

    origin https://github.com/YOUR_USERNAME/OpenSourceEvents-Frontend.git (fetch)
    origin https://github.com/YOUR_USERNAME/OpenSourceEvents-Frontend.git (push)
    upstream https://github.com/Catalyst-CSE/OpenSourceEvents-Frontend.git (fetch)
    upstream https://github.com/Catalyst-CSE/OpenSourceEvents-Frontend.git (push)

  5. To update your local copy with remote changes, run the following:
    git fetch upstream master
    git rebase upstream/master
    This will give you an exact copy of the current remote, make sure you don't have any local changes.
  6. Project set-up is complete.

Contributing and developing a feature

  1. Make sure you are in the master branch git checkout master.
  2. Sync your copy git pull --rebase upstream master.
  3. Create a new branch with a meaningful name git checkout -b branch_name.
  4. Develop your feature on Xcode IDE and run it using the simulator or connecting your own iphone.
  5. Add the files you changed git add file_name (avoid using git add .).
  6. Commit your changes git commit -m "Message briefly explaining the feature".
  7. Keep one commit per feature. If you forgot to add changes, you can edit the previous commit git commit --amend.
  8. Push to your repo git push origin branch-name.
  9. Go into the Github repo and create a pull request explaining your changes.
  10. If you are requested to make changes, edit your commit using git commit --amend, push again and the pull request will edit automatically.
  11. If you have more than one commit try squashing them into single commit by following command:
    git rebase -i origin/master~n master(having n number of commits).
  12. Once you've run a git rebase -i command, text editor will open with a file that lists all the commits in current branch, and in front of each commit is the word "pick". For every line except the first, replace the word "pick" with the word "squash".
  13. Save and close the file, and a moment later a new file should pop up in editor, combining all the commit messages of all the commits. Reword this commit message into meaningful one briefly explaining all the features, and then save and close that file as well. This commit message will be the commit message for the one, big commit that you are squashing all of your larger commits into. Once you've saved and closed that file, your commits of current branch have been squashed together.
  14. Force push to update your pull request with command git push origin branchname --force.

Update local branch with latest changes

- git checkout master
- git fetch --all --prune
- git merge --ff-only upstream/master
- git push origin master

🀝 How to Contribute

For sending PR:-

  • Pick an open issue from the issue list and claim it in the comments. After approval fix the issue and send us a pull request (PR).
  • All the PR’s need to be sent to the appropriate branch (usually "master").

For Open issue:-

  • You can create a new issue and send a pull request.
  • Please go through our issue list first (open as well as closed) and make sure the issue you are reporting does not replicate an issue already reported. If you have issues on multiple pages, report them separately. Do not combine them into a single issue.

Contact

You can reach the maintainers and our community on Catalyst-discord. If you are interested in contributing to the OpenSourceEvents-Frontend, we have a dedicated stream for this project #OpenSourceEvents-Frontend, where you can ask questions and interact with the community, join with us!

πŸ’œ Thanks Thanks to our many contributors.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].