├── .github └── ISSUE_TEMPLATE │ └── submission.yaml ├── CODE_OF_CONDUCT.md └── README.md /.github/ISSUE_TEMPLATE/submission.yaml: -------------------------------------------------------------------------------- 1 | name: Project Submission 2 | description: Submit your project 3 | title: "[Project] " 4 | labels: [Project, Needs Triage] 5 | body: 6 | - type: checkboxes 7 | attributes: 8 | label: Did you attend the GitHub Workshop? 9 | description: Please select ✅ if you have attended the GitHub Workshop 10 | options: 11 | - label: I have attended the GitHub Workshop 12 | required: true 13 | - type: input 14 | attributes: 15 | label: Project Name 16 | description: Please add a name to your weekend project. 17 | validations: 18 | required: true 19 | - type: input 20 | attributes: 21 | label: Project Repository 22 | description: Please share GitHub repository link of your project. 23 | validations: 24 | required: true 25 | - type: input 26 | attributes: 27 | label: Project URL 28 | description: Please share demo link of your project or demo video. 29 | validations: 30 | required: true 31 | - type: input 32 | attributes: 33 | label: University Name 34 | description: Please add your institution name. 35 | validations: 36 | required: true 37 | - type: textarea 38 | attributes: 39 | label: Project Description 40 | description: | 41 | Links? References? Anything that will give us more context about your project! 42 | 43 | Tip: You can attach project details - pdf files, project presentation, images by clicking this area to highlight it and then dragging files in. 44 | validations: 45 | required: false 46 | - type: dropdown 47 | attributes: 48 | label: GitHub Student Developer Pack Tools Used 49 | description: | 50 | Projects must use at least one tool from the Pack. 51 | multiple: true 52 | options: 53 | - Deepsource 54 | - Deepscan 55 | - pyCharm 56 | - Push Bots 57 | - Canva 58 | - Microsoft Azure 59 | - GitHub 60 | - ATOM 61 | - Mongo DB 62 | - Twilio 63 | - Pop SQL 64 | - Astra 65 | - WiseJ 66 | - LogDNA 67 | validations: 68 | required: true 69 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 📔 2 | Code Innovation Series is a community event intended for networking and collaboration in the tech community. We value the participation of each member and want all attendees to have an enjoyable and fulfilling experience. Accordingly, all attendees are expected to show respect and courtesy to other attendees throughout all events hosted in the GitHub space. 3 | 4 | To make clear what is expected, all attendees, speakers, exhibitors, organizers, and volunteers at any event in the GitHub space are required to conform to the following Code of Conduct. Organizers will enforce this code throughout the event. 5 | 6 | GitHub is dedicated to providing a harassment-free event experience for everyone, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, or religion. We do not tolerate harassment of event participants in any form, nor do we tolerate any behavior that would reasonably lead to another event participant being made to feel unsafe, insecure, or frightened for their physical or emotional well-being. 7 | 8 | All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate for any presentation given in the GitHub space or in any presentation associated with or related to GitHub. 9 | 10 | Be kind to others. Do not insult or put down other attendees. Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate at this event. 11 | 12 | Each event guest is entirely responsible for their own actions. 13 | 14 | Attendees violating these rules will be asked to leave the event at the sole discretion of the event managers. 15 | 16 | 17 | Read: [GitHub Community Guidelines](https://docs.github.com/en/github/site-policy/github-community-guidelines) ⚠️ 18 | 19 | Thank you for helping to make this a welcoming, friendly space for all. 20 | 21 | # Contact Information 📧 22 | If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact [support](https://support.github.com/) or another GitHub employee. 23 | 24 | GitHubbers will be happy to help participants contact security or local law enforcement, escort to safety, or otherwise assist those experiencing harassment to feel safe for the duration of the conference. We value your attendance. 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #### 📣 Update (February 2023 Hackathon Winners) 2 | | Project | Members | Live Site URL 3 | | ----------- | ----------- |---------| 4 | | Chat App | @Ojerinde @omobolajisonde @shittusaheed01 | https://ojerinde.github.io/Hackathon | 5 | 6 | 7 | 8 | --- 9 | ![image](https://user-images.githubusercontent.com/52326803/132934703-e8b7883f-1339-4ab9-9cc4-010103a1ca82.png) 10 | 11 | # Code Innovation Series 🎉 12 | 13 | Code Innovation Series is an open source focussed student developer skilling program in GitHub Campus Schools 🇮🇳 14 | 15 | ## Workshop 💻 16 | - Schedule: 25th Feb, 2023 17 | - Topics covered: `Open Source Fundamentals`, `Getting started with Git & GitHub`, `GitHub Actions`, `Building simple applications using Student Developer Pack`. 18 | 19 | 20 | ## Join the hackathon 🚀 21 | - Schedule: 26th Feb, 2023 to 1st Mar, 2023 22 | 23 | Theme: Build creative hacks that empower you do to more using GitHub Student Developer Pack tools. 24 | 25 | 1. Build a project on GitHub 26 | 2. Use Student Developer Pack Tools 27 | 3. Submit your project [here](https://github.com/GitHub-Campus-Program-India/September2021/issues/new/choose) 28 | 29 | ### Swags 🎁 30 | GitHub Team will review the hackathon project submissions and ship exclusive swag packs to the best ones. 31 | 32 | 33 | ### Note: 34 | - We've setup issue form for you all to submit your hackathon projects 35 | - All communications, reviews and tracking to project submissions will be done via GitHub Issues 👀 36 | - Submissions must use tools from the GitHub Student Developer Pack and be hosted in a public GitHub repository. If we can't access the GitHub repository where your code lives, we won't be able to evaluate your submissions. 37 | --------------------------------------------------------------------------------