├── .github └── ISSUE_TEMPLATE │ ├── propose-a-topic.md │ └── request-a-topic.md └── README.md /.github/ISSUE_TEMPLATE/propose-a-topic.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Propose a topic 3 | about: Interested in speaking at a meetup? 4 | title: '[PROPOSAL]: ' 5 | labels: venue-needed, date-needed, meetup-event-needed 6 | assignees: harmstyler, Kwen 7 | 8 | --- 9 | 10 | **Title**: 11 | 12 | **Description** 13 | <description> 14 | 15 | **Requested Location** 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-a-topic.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Request a topic 3 | about: Request a meetup about a specific topic 4 | title: '[REQUEST]: <subject>' 5 | labels: speaker-needed 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Subject:** <subject> 11 | 12 | I would love to learn about... I wish somebody would give a talk about that. 13 | 14 | Some things that could be covered in a talk about this 15 | - Thing 16 | - Thing 17 | - Thing 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Meetups 2 | 3 | Learn. Discuss. Network. Develop. Meetups in Sioux Falls are community-organized events where software development professionals gather to gte better at what they do. 4 | 5 | 6 | ## Contribute 7 | 8 | * [Open an issue][open] for a topic you would like to hear about 9 | * [Upvote][reactions] an existing [topic][issues] you find interesting 10 | * Volunteer to talk about an existing topic or one of your own 11 | * Talk to your organization to provide a place to host a meetup 12 | 13 | 14 | [open]: https://github.com/sfdevs/meetups/issues/new/choose 15 | [issues]: https://github.com/sfdevs/meetups/issues 16 | [reactions]: https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments 17 | --------------------------------------------------------------------------------