├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── general.md │ ├── homework.md │ └── weekly-quiz.md └── stale.yml └── README.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: GitHub Issue 使用教學 4 | url: https://www.notion.so/GitHub-Issue-912d246f45f9462e89b9ab1d9c3c8d29 5 | about: 提問前請先詳閱教學! -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: General 3 | about: 平時練習有問題或其他疑難雜症請點我(標題範例:[General] Python 套件安裝失敗) 4 | title: "[General] problem_title" 5 | labels: general 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 提交連結 11 | 12 | 15 | 16 | ## 程式碼 17 | 18 | 22 | 23 | ```python 24 | 25 | ``` 26 | 27 | ## 錯誤訊息 28 | 29 | 30 | 31 | ## 問題描述 32 | 33 | 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/homework.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Homework 3 | about: 回家作業有問題請點我(標題範例:[Homework 1] 完全平方數) 4 | title: "[Homework #] problem_title" 5 | labels: homework 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 提交連結 11 | 12 | 15 | 16 | ## 程式碼 17 | 18 | 22 | 23 | ```python 24 | 25 | ``` 26 | 27 | ## 錯誤訊息 28 | 29 | 30 | 31 | ## 問題描述 32 | 33 | 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/weekly-quiz.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Weekly Quiz 3 | about: 隨堂練習有問題請點我(標題範例:[Week 2] 密碼強度) 4 | title: "[Week #] problem_title" 5 | labels: weekly quiz 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 提交連結 11 | 12 | 15 | 16 | ## 程式碼 17 | 18 | 22 | 23 | ```python 24 | 25 | ``` 26 | 27 | ## 錯誤訊息 28 | 29 | 30 | 31 | ## 問題描述 32 | 33 | 34 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-stale - https://github.com/probot/stale 2 | 3 | # Number of days of inactivity before an Issue or Pull Request becomes stale 4 | daysUntilStale: 5 5 | 6 | # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 | # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8 | daysUntilClose: 2 9 | 10 | # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) 11 | onlyLabels: [] 12 | 13 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 14 | exemptLabels: [] 15 | 16 | # Set to true to ignore issues in a project (defaults to false) 17 | exemptProjects: false 18 | 19 | # Set to true to ignore issues in a milestone (defaults to false) 20 | exemptMilestones: false 21 | 22 | # Set to true to ignore issues with an assignee (defaults to false) 23 | exemptAssignees: false 24 | 25 | # Label to use when marking as stale 26 | staleLabel: stale 27 | 28 | # Comment to post when marking as stale. Set to `false` to disable 29 | markComment: > 30 | This issue has been automatically marked as stale because it has not had 31 | recent activity. It will be closed if no further activity occurs. Thank you 32 | for your contributions. 33 | 34 | # Comment to post when removing the stale label. 35 | # unmarkComment: > 36 | # Your comment here. 37 | 38 | # Comment to post when closing a stale Issue or Pull Request. 39 | # closeComment: > 40 | # Your comment here. 41 | 42 | # Limit the number of actions per hour, from 1-30. Default is 30 43 | limitPerRun: 30 44 | 45 | # Limit to only `issues` or `pulls` 46 | # only: issues 47 | 48 | # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 49 | # pulls: 50 | # daysUntilStale: 30 51 | # markComment: > 52 | # This pull request has been automatically marked as stale because it has not had 53 | # recent activity. It will be closed if no further activity occurs. Thank you 54 | # for your contributions. 55 | 56 | # issues: 57 | # exemptLabels: 58 | # - confirmed -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ccClub Basic Python 2020 Fall 2 | 3 | ## 常用連結 4 | 5 | * [官方網站](https://www.ccclub.io) 6 | * [批改系統](https://judge.ccclub.io) 7 | * [Udemy 線上課程](https://www.udemy.com/course/ccclub-python-for-beginners) 8 | * [Medium 專欄](https://medium.com/ccclub) 9 | * [學員須知](https://www.notion.so/ccClub-2020-Fall-ed14cfc6c5ed46ceadf294f419cb80c3) 10 | * [GitHub Issue 使用教學](https://www.notion.so/GitHub-Issue-912d246f45f9462e89b9ab1d9c3c8d29) 11 | * [Facebook 社團](https://www.facebook.com/groups/301855514378097) 12 | --------------------------------------------------------------------------------