├── .github └── ISSUE_TEMPLATE │ ├── sponsor.yml │ └── talk.yml └── README.md /.github/ISSUE_TEMPLATE/sponsor.yml: -------------------------------------------------------------------------------- 1 | name: Become a sponsor 2 | 3 | description: Share your idea with the VanRuby community. 4 | 5 | assignees: 6 | - mrleeio 7 | - thermistor 8 | 9 | labels: 10 | - Sponsor 11 | 12 | body: 13 | - type: markdown 14 | attributes: 15 | value: | 16 | Thank you for your support! 17 | 18 | - type: input 19 | id: contact 20 | attributes: 21 | label: Contact Details 22 | description: How can we get in touch with you if we need more info? 23 | placeholder: ex. email@example.com 24 | validations: 25 | required: true 26 | 27 | - type: textarea 28 | id: details 29 | attributes: 30 | label: Details 31 | description: A short description of the support you can offer VanRuby. 32 | validations: 33 | required: true 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/talk.yml: -------------------------------------------------------------------------------- 1 | name: Submit a talk 2 | 3 | description: Share your idea with the VanRuby community. 4 | 5 | assignees: 6 | - mrleeio 7 | - thermistor 8 | 9 | labels: 10 | - Talk 11 | 12 | body: 13 | - type: markdown 14 | attributes: 15 | value: | 16 | Thank you for sharing your idea with us! 17 | 18 | - type: input 19 | id: contact 20 | attributes: 21 | label: Contact Details 22 | description: How can we get in touch with you if we need more info? 23 | placeholder: ex. email@example.com 24 | validations: 25 | required: true 26 | 27 | - type: dropdown 28 | id: type 29 | attributes: 30 | label: Type 31 | description: Is this an in-person or remote presentation? 32 | options: 33 | - In Person 34 | - Remote 35 | default: 0 36 | validations: 37 | required: true 38 | 39 | - type: dropdown 40 | id: audience 41 | attributes: 42 | label: Intended Audience 43 | multiple: true 44 | options: 45 | - All levels 46 | - Junior 47 | - Intermediate 48 | - Senior+ 49 | default: 0 50 | validations: 51 | required: true 52 | 53 | - type: dropdown 54 | id: duration 55 | attributes: 56 | label: Duration 57 | multiple: true 58 | options: 59 | - 5 minutes (lightning talk) 60 | - 20-30 minutes 61 | - 45 minutes 62 | default: 1 63 | validations: 64 | required: true 65 | 66 | - type: textarea 67 | id: abstract 68 | attributes: 69 | label: Abstract 70 | description: A short description of your talk. 71 | validations: 72 | required: true 73 | 74 | - type: textarea 75 | id: author 76 | attributes: 77 | label: About the author 78 | description: A short description of yourself. 79 | validations: 80 | required: true 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VanRuby Talks 2 | 3 | ## Want to submit a talk? 4 | 5 | Do you have a talk that you've been itching to give? Or would you like to suggest a topic? [Create 6 | an issue](https://github.com/vanruby/talks/issues/new) to give or suggest a talk. Just let us know how long it would be and we'll try to schedule you in for the following meetup. 7 | 8 | Talks can be 45 minutes or 20 minutes (or < 6 minutes for lightning talks). We welcome talks from all backgrounds and skill levels. 9 | 10 | Need some inspiration? You can peruse the [Meetups page](http://vanruby.org/meetups) on our website to see a list of past meetups and topics. 11 | --------------------------------------------------------------------------------