├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ └── talk-proposal.md ├── .gitignore └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Talk description 2 | 3 | (Please give us a short abstract of your talk. Also name frameworks that you promote/use in your talk.) 4 | 5 | ## Talk length (in Minutes) 6 | 7 | - [ ] Lightning talk (20-30 Minutes) 8 | - [ ] Main talk (45-60 Minutes) 9 | 10 | ## Preferred language 11 | 12 | - [ ] German 13 | - [ ] English 14 | 15 | ## Talk preparation 16 | 17 | Do you need support on preparing your talk by e.g. a practice session or a review of your slides? 18 | We are happy to help! 19 | 20 | - [ ] Yes, ... 21 | - [ ] No, thanks. 22 | 23 | ## Preferred date/time 24 | 25 | - 26 | 27 | ## Speaker names 28 | 29 | (Please name all speakers giving this talk.) 30 | 31 | - Your full name here 32 | 33 | ## Speakers info 34 | 35 | (Optional, your company, your position, short BIO, etc.) 36 | 37 | - ... 38 | 39 | ## Speaker image 40 | 41 | (Optional, link to an image or attach it as a file to the issue) 42 | 43 | ## Social media handle(s) 44 | 45 | (Optional, we usually announce speakers via https://twitter.com/phpugdd) 46 | 47 | - https://twitter.com/... 48 | 49 | ## Other links 50 | 51 | (Optional, Blog, github, medium, facebook, etc.) 52 | 53 | - https://... 54 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/talk-proposal.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Talk proposal 3 | about: You want to propose a lightning or main talk for our meetup? This is for you! 4 | title: "[TALK]: " 5 | labels: talk-proposal 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Talk description 11 | 12 | (Please give us a short abstract of your talk. Also name frameworks that you promote/use in your talk.) 13 | 14 | ## Talk length (in Minutes) 15 | 16 | - [ ] Lightning talk (20-30 Minutes) 17 | - [ ] Main talk (45-60 Minutes) 18 | 19 | ## Preferred language 20 | 21 | - [ ] German 22 | - [ ] English 23 | 24 | ## Talk preparation 25 | 26 | Do you need support on preparing your talk by e.g. a practice session or a review of your slides? 27 | We are happy to help! 28 | 29 | - [ ] Yes, ... 30 | - [ ] No, thanks. 31 | 32 | ## Preferred date/time 33 | 34 | - 35 | 36 | ## Speaker names 37 | 38 | (Please name all speakers giving this talk.) 39 | 40 | - Your full name here 41 | 42 | ## Speakers info 43 | 44 | (Optional, your company, your position, short BIO, etc.) 45 | 46 | - ... 47 | 48 | ## Speaker image 49 | 50 | (Optional, link to an image or attach it as a file to the issue) 51 | 52 | ## Social media handle(s) 53 | 54 | (Optional, we usually announce speakers via https://twitter.com/phpugdd) 55 | 56 | - https://twitter.com/... 57 | 58 | ## Other links 59 | 60 | (Optional, Blog, github, medium, facebook, etc.) 61 | 62 | - https://... 63 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Talks 2 | 3 | You want to give a talk at one of our PHP USERGROUP DRESDEN Meetups? 4 | 5 | **[» Just open a new issue and add your proposal.](https://github.com/php-usergroup-dresden/talks/issues/new?template=talk-proposal.md)** 6 | 7 | We will get in touch with you. 8 | 9 | You can find our event/meetup calendar at http://phpug-dresden.org/events.html#calendar 10 | 11 | If you have any questions, reach out to us via e-mail to orga@phpug-dresden.org. 12 | 13 | For further information please visit our website: http://phpug-dresden.org 14 | 15 | Your PHP USERGROUP DRESDEN e.V. team. 16 | 17 | --- 18 | 19 | ![PHP USERGROUP DRESDEN e.V. Logo](http://phpug-dresden.org/images/logo.png) 20 | --------------------------------------------------------------------------------