Skip to content

Latest commit

 

History

History
117 lines (67 loc) · 4.02 KB

INSTALL.md

File metadata and controls

117 lines (67 loc) · 4.02 KB

PyBites Code Challenges - Setup Instructions

New Platform

Update 20th of Dec 2017: we did it! We built our platform around these challenges and more. We highly encourage to use it to guide you through the setup for our challenges: https://codechalleng.es. If for some reason you like the old instructions though see below.

>>> from pybites import Bob, Julian

Keep Calm and Code in Python!

I. First time around

  • Make your own fork of our challenges repo: use the Fork button at the top right of the page.

  • Clone your copy:

      $ git clone https://github.com/<your_user>/challenges
    

II. You already cloned your fork

  • In this case you need to sync our new challenge(s), in your fork directory:

      # assuming using ssh key
      $ git remote add upstream git@github.com:pybites/challenges.git
      $ git fetch upstream
    
      # if not on master:
      $ git checkout master
      $ git merge upstream/master
      # at this point you are asked to commit the merge
    
  • Have fun :)

      $ cd <challenge-number>
      # create new file or if template file provided: edit <template>.py 
    

III. Submit your code to our community branch via a Pull Request (PR)

This is still a bit of an experimental feature. We will update it as we go. If there is an easier way please let us know ...

  • Work on community branch and get into sync. In your forked repo:

      $ git checkout community (might need -b the first time)
    
  • Make sure you got the latest changes from PyBites:

      $ git pull upstream community
    
  • From your local community branch Open a new branch, we use PCC<challenge_num> here as convention (PyBites Code Challenge)

      $ git checkout -b PCC14
    
  • Add your code

      $ cd <challenge_number>
      $ mkdir <GH-username>
      $ add files ...
      
      e.g.
      $ cd 14
      $ mkdir bbelderbos && cd $_
      $ vi some_script.py
      ...
    
  • Commit your changes:

      $ git add .
      $ git commit -m "PCC14 bbelderbos"
    
  • Push this local branch to your forked repo (origin is default remote after fork + clone):

      $ git push origin PCC14
    
  • Go to your cloned repo and open a PR by comparing pybites community branch with your newly pushed local branch (make sure only the files of your changes are included):

    • Your push should create this link on your fork's main page:

      step 1

    • When you click it make sure you compare base fork: pybites/challenges - base: community with head fork: /challenges - compare: :

      step 2

    • Make sure you only PR on the files you change, in this example I had 2 files in my new 'bbelderbos' dir:

      step 3

The difficult part here was isolating the changes. We think that if you do the "git pull upstream community" into your local community branch, as described above, you should see only your changes, but we have to do some more testing. Please let us know how this goes ...

Finally we will check your code, merge it into our community branch, and feature it in our end-of-the-week review post.

IV. Optional - Detaching the fork

  • One small issue with working with a forked repo is that Github wont actually recognize any of your activity. If you want to see your activity follow these steps. However be warned that it will prevent you from creating pull-requests.
  1. On Github go to the settings page of your forked repo.

  2. In the Danger Zone click on the Delete this repository button.

  3. Type the full name of the repo in the box and click the button.

  4. Create a new repo with the same name as the original repo.

  5. Push the repo to Github

     $ git push origin master
    

Feedback

  • If you want to share your solution, please use the comments of our review posts.

  • If you have ideas for new challenges or issues with existing ones, please use the issues page.


Remember: there is no best solution, only learning more/ better Python. We're looking forward reviewing our and your solutions.

Good luck and have fun!