├── .github ├── auto_assign.yml └── workflows │ └── action.yml └── README.md /.github/auto_assign.yml: -------------------------------------------------------------------------------- 1 | # Set to true to add reviewers to pull requests 2 | addReviewers: true 3 | addAssignees: author 4 | 5 | # A list of reviewers to be added to pull requests (GitHub user name) 6 | reviewers: 7 | - codereport 8 | -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Auto Assign' 2 | on: pull_request_target 3 | 4 | jobs: 5 | add-reviews: 6 | runs-on: ubuntu-latest 7 | steps: 8 | - uses: kentaro-m/auto-assign-action@v1.1.2 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Programming Language Meetups 2 | 3 | ## General Meetups 4 | 5 | |Name|Frequency|EST|Local Time| 6 | |:-:|:-:|:-:|:-:| 7 | |[Programming Languages Virtual Meetup](https://www.meetup.com/Programming-Languages-Toronto-Meetup/)|Weekly|Mon 8:00 PM| - | 8 | |[Atlanta Functional Programming Meetup](https://www.meetup.com/Atlanta-Functional-Programming-Meetup/)|Weekly|Sat 1:30 PM| - | 9 | |[Tucson Functional Programmers](https://www.meetup.com/Tucson-Functional-Programmers)|Monthly|2nd Wed 8:30 PM|6:30 MST| 10 | 11 | ## Array Programming Languages 12 | 13 | |Name|Frequency|EST|Local Time| 14 | |:-:|:-:|:-:|:-:| 15 | |[J Dynamic Functional Programming](https://www.meetup.com/J-Dynamic-Functional-Programming)|Monthly|2nd Tues 6:30 PM|-| 16 | 17 | ## LISPs 18 | 19 | |Name|Frequency|EST|Local Time| 20 | |:-:|:-:|:-:|:-:| 21 | |[LispNYC](https://www.meetup.com/LispNYC)|Monthly|2nd Tues 6:00 PM|-| 22 | 23 | ## C++ 24 | 25 | |Name|Frequency|EST|Local Time| 26 | |:-:|:-:|:-:|:-:| 27 | |[C++ London](https://www.meetup.com/CppLondon/)|Monthly|2:00 PM EST|7:00 PM GMT| 28 | |[C++ San Diego](https://www.meetup.com/San-Diego-CPP)|Monthly|8:00 PM EST|5:00 PM PST| 29 | |[North Denver Metro C++](https://www.meetup.com/North-Denver-Metro-C-Meetup/)|Monthly|8:00 PM EST|5:00 PM PST| 30 | |[Core C++](https://www.meetup.com/North-Denver-Metro-C-Meetup/)|Monthly|3:00 PM EST|12:00 PM PST| 31 | 32 | ## Smalltalks 33 | 34 | |Name|Frequency|EST|Local Time| 35 | |:-:|:-:|:-:|:-:| 36 | |[California Smalltalkers](https://www.meetup.com/california-smalltalkers/)|Monthly|2nd Wed 9:00 PM EST| 6:00 PM PST| 37 | --------------------------------------------------------------------------------