Repository: ruby-conferences/ruby-conferences.github.io Branch: main Commit: 1378e2f3fece Files: 45 Total size: 489.7 KB Directory structure: gitextract_frcsybe9/ ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── meetups.yml │ └── verify.yml ├── .gitignore ├── .ruby-version ├── 404.html ├── CNAME ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── _config.yml ├── _data/ │ ├── conferences.yml │ ├── meetup_groups.yml │ └── meetups.yml ├── _includes/ │ ├── event.html │ ├── filters.html │ └── meetup.html ├── _layouts/ │ ├── default.html │ ├── page.html │ └── post.html ├── _plugins/ │ └── continent_tag.rb ├── calendar.ics ├── cfp/ │ └── index.html ├── cfp.ics ├── css/ │ └── style.css ├── feed.xml ├── index.html ├── js/ │ └── callout.js ├── meetups/ │ └── index.html ├── past/ │ └── index.html └── src/ ├── data_file_validator.rb ├── events/ │ ├── abstract_event.rb │ ├── ical_event.rb │ ├── luma_event.rb │ └── meetup_event.rb ├── meetup_client.rb ├── meetup_graphql_schema.json ├── meetups_file.rb ├── meetups_file_entry.rb ├── queries/ │ └── events_query.rb ├── static/ │ ├── conference.rb │ ├── meetup.rb │ └── meetup_group.rb └── static.rb ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/deploy.yml ================================================ name: Deploy to GitHub Pages on: push: branches: ["main"] schedule: - cron: "0 7 * * *" # Runs every day at 07:00 UTC time workflow_dispatch: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" cancel-in-progress: false jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Setup Pages id: pages uses: actions/configure-pages@v5 - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default uses: actions/upload-pages-artifact@v3 # Deployment job deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest needs: build steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 ================================================ FILE: .github/workflows/meetups.yml ================================================ name: Fetch Meetups on: workflow_dispatch: schedule: - cron: "0 0 * * *" # Runs every day at 00:00 UTC time permissions: pull-requests: write contents: write jobs: fetch: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Check for new Meetups run: bundle exec rake fetch_meetups - name: Verify Meetups Data run: bundle exec rake verify_meetups - name: Set up the formatted date, branch name and PR title run: | echo "FORMATTED_DATE=$(date +'%B %d, %Y')" >> $GITHUB_ENV echo "BRANCH_TO_MERGE=meetups-update-$(date +'%Y-%m-%d')" >> $GITHUB_ENV echo "PULL_REQUEST_TITLE=$(cat ./pull_request_title.txt)" >> $GITHUB_ENV - name: Check if there are any new meetups run: | if [[ -n $(git diff --name-only _data/meetups.yml) ]]; then echo "MEETUPS_CHANGED=true" >> $GITHUB_ENV else echo "MEETUPS_CHANGED=false" >> $GITHUB_ENV fi - name: Commit New Meetups uses: stefanzweifel/git-auto-commit-action@v5 if: ${{ env.MEETUPS_CHANGED == 'true' }} with: # Optional. Commit message for the created commit. # Defaults to "Apply automatic changes" commit_message: ${{ env.PULL_REQUEST_TITLE }} # Optional. Local and remote branch name where commit is going to be pushed # to. Defaults to the current branch. # You might need to set `create_branch: true` if the branch does not exist. branch: ${{ env.BRANCH_TO_MERGE }} # Optional. Options used by `git-commit`. # See https://git-scm.com/docs/git-commit#_options # commit_options: '--no-verify --signoff' # Optional glob pattern of files which should be added to the commit # Defaults to all (.) # See the `pathspec`-documentation for git # - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203 # - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec file_pattern: '_data/*.yml' # Optional. Local file path to the repository. # Defaults to the root of the repository. # repository: . # Optional commit user and author settings # commit_user_name: My GitHub Actions Bot # defaults to "github-actions[bot]" # commit_user_email: my-github-actions-bot@example.org # defaults to "41898282+github-actions[bot]@users.noreply.github.com" # commit_author: Author # defaults to "username ", where "username" belongs to the author of the commit that triggered the run # Optional. Tag name being created in the local repository and # pushed to remote repository and defined branch. # tagging_message: 'v1.0.0' # Optional. Option used by `git-status` to determine if the repository is # dirty. See https://git-scm.com/docs/git-status#_options status_options: '--untracked-files=no' # Optional. Options used by `git-add`. # See https://git-scm.com/docs/git-add#_options # add_options: '-u' # Optional. Options used by `git-push`. # See https://git-scm.com/docs/git-push#_options # push_options: '--force' # Optional. Disable dirty check and always try to create a commit and push # skip_dirty_check: true # Optional. Skip internal call to `git fetch` # skip_fetch: true # Optional. Skip internal call to `git checkout` # skip_checkout: true # Optional. Prevents the shell from expanding filenames. # Details: https://www.gnu.org/software/bash/manual/html_node/Filename-Expansion.html # disable_globbing: true # Optional. Create given branch name in local and remote repository. create_branch: true - name: Create Pull Request if: ${{ env.MEETUPS_CHANGED == 'true' }} run: gh pr create -B ${{ github.head_ref || github.ref_name }} -H ${{ env.BRANCH_TO_MERGE }} --title "${{ env.PULL_REQUEST_TITLE }}" --body-file "./pull_request_body.md" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/verify.yml ================================================ name: Verify Data permissions: contents: read on: [push, pull_request] jobs: verify: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Verify Conference Data run: bundle exec rake verify_conferences - name: Verify Meetups Data run: bundle exec rake verify_meetups - name: Verify Website build run: bundle exec jekyll build ================================================ FILE: .gitignore ================================================ _site .jekyll-metadata bin/ pull_request_title.txt pull_request_body.md ================================================ FILE: .ruby-version ================================================ 3.3.5 ================================================ FILE: 404.html ================================================ --- layout: default ---

Welp, that sucks

There was a problem finding the page you requested - sorry about that. Please feel free to open an issue about this problem, but you'll probably want to head to the home page.

================================================ FILE: CNAME ================================================ rubyconferences.org ================================================ FILE: Gemfile ================================================ source 'https://rubygems.org' ruby File.read(".ruby-version").strip gem 'html-proofer' gem 'jekyll' gem 'rake' gem 'graphql-client', '~> 0.23.0' gem 'frozen_record', '~> 0.27.2' gem 'countries', '~> 6.0' gem 'icalendar', '~> 2.10' group :jekyll_plugins do gem 'jekyll-feed' end ================================================ FILE: LICENSE.md ================================================ The design of the site is copyrighted by Cameron Daigle. All other original work uses the Creative Commons [Attribution-NonCommercial-ShareAlike 4.0 International License][l]. [l]: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US ================================================ FILE: README.md ================================================ # Ruby Conferences [RubyConferences.org][r] is a simple list of Ruby conferences, published collaboratively with the Ruby community. Updates are sometimes posted to [@rubyconferences][t]. [r]: https://rubyconferences.org/ [t]: https://twitter.com/rubyconferences ## ICS Calendar Feeds This page publishes `.ics` feed files for inclusion in personal calendars: - [`calendar.ics`](https://rubyconferences.org/calendar.ics) for the events only - [`cfp.ics`](https://rubyconferences.org/cfp.ics) for the CFP open/close dates ## RSS Feed This page publishes an RSS feed so you can stay up to date with newly announced Ruby conferences. - [`feed.xml`](https://rubyconferences.org/feed.xml) for RSS Readers ## Eligible Conferences Focus is a goal of this project and as a result, only conferences that are specifically for Ruby are listed. That means that if a conference covers Ruby, but is not specifically for Rubyists, then it is left out. A good rule of thumb for whether a conference should be included is if its name includes either Ruby or Rails and how it describes itself. A conference that describes itself as a "Conference on Web Development" might be an awesome event, but it's probably not a Ruby conference. ## Contributing The list of events is driven by the conferences file in the `_data` directory - if you have an update for those things, just change the YAML and send a PR. **Conferences** The file to be changed is `_data/conferences.yml`. This file is order-dependent. Put your conference in the YAML file sorted by its `start_date`. Here is a list of the keys that can be used: * `name`: The official name of the event * `location`: When the event is in the US, this would be "City, State", for any other country, use "City, Country". * `start_date`: The date of the first day of the event - ISO8601 formatted (yyyy-mm-dd). * `end_date`: The date of the last day of the event - ISO8601 formatted (yyyy-mm-dd). For one day events this should equal `start_date`. * `url`: The url for the event. * `twitter`: The twitter handle for the event, you can leave off the "@". * `mastodon`: The mastodon url for the event, for example https://ruby.social/@conferencehandle Extra keys for the upcoming events: * `reg_phrase`: Typically you want to put "Registration open" here. * `reg_date`: If there is a registration deadline, enter that here - ISO8601 formatted (yyyy-mm-dd). * `cfp_open_date`: The date when the CFP was opened - ISO8601 formatted (yyyy-mm-dd). * `cfp_close_date`: If there is a CFP deadline, enter that here - ISO8601 formatted (yyyy-mm-dd). * `cfp_link`: A link to the CFP submission page. * `status`: Typically you want to put "Cancelled", "Postponed" or "To be announced" here. * `date_precision`: Controls the precision of the `start_date` and `end_date` when the conference dates aren't announced just yet, but it's confirmed that the conference is happening. Possible values: `full` (implicit default), `month` or `year`. The `start_date` and `end_date` fields still need to be fully formatted ISO8601 dates, you can put the last day of the month/year in it so it also gets ordered properly. * `announced_on`: The date on which the conference was announced - ISO8601 formatted (yyyy-mm-dd). This date is used as the publishing date for the [RSS feed](https://rubyconferences.org/feed.xml) so people can stay up to date with newly announced conferences. Extra keys for the past events: * `video_link`: A url to the videos for the event. **Meetups** The file to be changed is `_data/meetups.yml`. This file is order-dependent. Put your meetup in the YAML file sorted by its date. Otherwise, put the meetup at the end of the YAML file and run `rake sort_meetups`. Please make sure to preserve any comments in the YAML file. Here is a list of the keys that can be used: * `name`: The official name of the event * `location`: When the event is in the US, this would be "City, State", for any other country, use "City, Country". * `date`: The date of the event - ISO8601 formatted (yyyy-mm-dd). * `start_time`: The start time of the event - formatted as (hh:mm:ss ZZZ) * hh - between 0 and 23 * mm - between 0 and 59 * ss - between 0 and 59 * ZZZ - timezone (e.g. CDT or EST) * `end_time`: The end time of the event - ISO8601 formatted as (hh:mm:ss ZZZ) using same values as `start_time` * `url`: The url for the event. * `status`: Typically you want to put "Cancelled" or "Postponed" here. ## Getting started We build the site with [Jekyll](https://jekyllrb.com/). Install Ruby, then: ``` cd ruby-conferences.github.io bundle install bundle exec jekyll serve ``` and point your browser at http://localhost:4000/ ## License The design of the site is copyrighted by Cameron Daigle. All other original work uses the Creative Commons [Attribution-NonCommercial-ShareAlike 4.0 International License][l]. [l]: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US ================================================ FILE: Rakefile ================================================ #!/usr/bin/env rake require "yaml" require "date" require "ostruct" require "./src/data_file_validator" require "./src/static" require "./src/meetup_client" require "./src/meetups_file" desc "Build Jekyll site" task :build do exit 1 unless system "bundle exec jekyll build" end desc "Verify generated HTML" task :verify_html do exit 2 unless system "bundle exec htmlproofer ./_site" end desc "Verify event conferences" task :verify_conferences do allowed_keys = [ "name", "location", "start_date", "end_date", "url", "twitter", "mastodon", "reg_phrase", "reg_date", "cfp_open_date", "cfp_close_date", "cfp_link", "status", "date_precision", "video_link", "announced_on" ] data = YAML.load_file("_data/conferences.yml", permitted_classes: [Date]) validator = DataFileValidator.validate(data, allowed_keys) exit 3 if validator.missing_keys? exit 4 if validator.bonus_keys? events = validator.events dates = events.map { |event| event["start_date"] } exit 5 unless dates.sort == dates exit 6 if validator.missing_announced_on_date? end desc "verify meetups" task :verify_meetups do allowed_keys = [ "name", "location", "date", "start_time", "end_time", "url", "twitter", "mastodon", "video_link", "status", "service" ] data = YAML.load_file("_data/meetups.yml", permitted_classes: [Date]) validator = DataFileValidator.validate(data, allowed_keys, :meetup) exit 3 if validator.missing_keys? exit 4 if validator.bonus_keys? events = validator.events dates = events.map { |event| event["start_date"] } exit 5 unless dates.sort == dates exit 6 if validator.duplicate_events? end desc "fetch meetups" task :fetch_meetups do MeetupsFile.read.tap do |file| file.fetch! file.write! end end desc "fetch past meetups" task :fetch_past_meetups do MeetupsFile.read.tap do |file| file.fetch!(past: true) file.write! end end # to fetch a single group run: # bundle exec rake fetch_meetup[sfruby] desc "fetch a single group" task :fetch_meetup, [:group_id] do |_, args| MeetupsFile.read.tap do |file| file.fetch!(args[:group_id]) file.write! end end # to fetch past events of a single group run: # bundle exec rake fetch_past_meetups[sfruby] desc "fetch past meetups of a single group" task :fetch_past_meetup, [:group_id] do |_, args| MeetupsFile.read.tap do |file| file.fetch!(args[:group_id], past: true) file.write! end end desc "fetch write all meetup groups" task :fetch_and_write_all_meetups do MeetupGroup.all.each do |group| MeetupsFile.read.tap do |file| file.fetch!(group.id) file.write! end end end desc "sort meetups" task :sort_meetups do MeetupsFile.read.tap do |file| file.write! end end task default: [:build, :verify_data, :verify_html] ================================================ FILE: _config.yml ================================================ name: Ruby Conferences url: https://rubyconferences.org safe: false lsi: false source: . exclude: - CNAME - Dangerfile - Gemfile - Gemfile.lock - LICENSE.md - README.md - Rakefile - notes.txt - vendor - src - '*.rb' plugins: - jekyll-feed ================================================ FILE: _data/conferences.yml ================================================ --- - name: Magic Ruby 2011 location: Orlando, FL start_date: 2011-02-04 end_date: 2011-02-05 url: https://web.archive.org/web/20110208061529/http://magic-ruby.com/ twitter: magicrubyconf - name: Magic Ruby 2012 location: Orlando, FL start_date: 2012-10-05 end_date: 2012-10-06 url: https://magic-ruby.com twitter: magicrubyconf - name: 'RubyMotion #inspect 2013' location: Brussels, Belgium start_date: 2013-03-28 end_date: 2013-03-29 url: http://www.rubymotion.com/events/conference twitter: rubymotion - name: Garden City RubyConf 2014 location: Bangalore, India start_date: 2014-01-03 end_date: 2014-01-04 twitter: gardencityrb video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyblPURtJo18HwEYDayBiJJ- - name: Rubyfuza 2014 location: Cape Town, South Africa start_date: 2014-02-06 end_date: 2014-02-08 url: http://www.rubyfuza.org/2014/ twitter: rubyfuza video_link: http://www.confreaks.com/events/rubyfuza2014 - name: Los Angeles Ruby Conference 2014 location: Los Angeles, CA start_date: 2014-02-08 end_date: 2014-02-08 twitter: larubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYidNh3m57hyDjjKGC9-rbj - name: RubyConf AU 2014 location: Sydney, Australia start_date: 2014-02-20 end_date: 2014-02-21 url: https://rubyconf.org.au/2014 twitter: rubyconf_au video_link: https://vimeo.com/channels/699773 - name: Big Ruby 2014 location: Dallas, TX start_date: 2014-02-20 end_date: 2014-02-21 url: http://web.archive.org/web/20140228185424/http://www.bigrubyconf.com:80/ twitter: bigrubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybDQsdHP1e7msGEalUPaV06 - name: RubySauna 2014 location: Oulu, Finland start_date: 2014-02-27 end_date: 2014-02-27 url: http://web.archive.org/web/20140213081334/http://www.rubysauna.org:80/ twitter: rubysauna - name: Ruby on Ales 2014 location: Bend, OR start_date: 2014-03-06 end_date: 2014-03-07 twitter: rbonales video_link: http://www.confreaks.com/events/roa2014 - name: wroclove.rb 2014 location: Wrocław, Poland start_date: 2014-03-14 end_date: 2014-03-16 url: https://2014.wrocloverb.com twitter: wrocloverb video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRCYNOfsPoxVWChbT5x5D5WP - name: MountainWest RubyConf 2014 location: Salt Lake City, UT start_date: 2014-03-20 end_date: 2014-03-21 url: http://mtnwestrubyconf.org/2014/ twitter: mwrc video_link: http://confreaks.tv/events/mwrc2014 - name: RubyConf India 2014 location: Goa, India start_date: 2014-03-22 end_date: 2014-03-23 url: https://2014.rubyconfindia.org/ twitter: rubyconfindia video_link: https://www.youtube.com/playlist?list=PLNyYRB_d4fk2Hz8_HuHIAPv5dJGrnxh14 - name: RubyConf Philippines 2014 location: Manila, Philippines start_date: 2014-03-28 end_date: 2014-03-29 url: http://rubyconf.ph/ twitter: rubyconfph - name: Ancient City Ruby 2014 location: St. Augustine, FL start_date: 2014-04-03 end_date: 2014-04-04 url: http://www.ancientcityruby.com/2014/ twitter: ancientcityruby video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJMDh6Jg0vPftT2S34zPEPhJ - name: RailsConf 2014 location: Chicago, IL start_date: 2014-04-22 end_date: 2014-04-25 url: https://www.railsconf.com/ twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZ5jfnbS_osIoWzK_FrwKz5 - name: Abril Pro Ruby 2014 location: Porto de Galinhas, Brazil start_date: 2014-04-24 end_date: 2014-04-27 url: http://tropicalrb.com/2014/en/ twitter: abrilproruby video_link: https://www.youtube.com/playlist?list=PL7a-mWnTar6v5cDC4MLDZKwD0RuMSDHHP - name: RubyConf Taiwan 2014 location: Taipei, Taiwan start_date: 2014-04-25 end_date: 2014-04-26 url: https://rubyconf.tw/2014/ twitter: rubytaiwan video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpCUi7IcCDEVSRc1OsaJSguB - name: Scottish Ruby Conf 2014 location: Perthshire, Scotland start_date: 2014-05-12 end_date: 2014-05-13 url: http://scottishrubyconference.com twitter: scotrubyconf video_link: https://confreaks.tv/events/scottishrubyconf2014 - name: RubyConf Uruguay 2014 location: Montevideo, Uruguay start_date: 2014-05-23 end_date: 2014-05-24 url: http://web.archive.org/web/20150105045157/http://www.rubyconfuruguay.org:80/en twitter: rubyconfuruguay video_link: https://www.youtube.com/playlist?list=PLxx5qlTQCf0zx-DIFVHlftznHExI7ONEV - name: 'RubyMotion #inspect 2014' location: San Francisco, CA start_date: 2014-05-28 end_date: 2014-05-29 url: http://www.rubymotion.com/conference/2014/ twitter: rubymotion video_link: http://confreaks.tv/events/inspect2014 - name: RubyC 2014 location: Kiev, Ukraine start_date: 2014-05-31 end_date: 2014-06-01 url: http://rubyc.eu/ twitter: rubyc_eu video_link: https://rubyc.eu/archives/4 - name: RubyNation 2014 location: Washington, DC start_date: 2014-06-06 end_date: 2014-06-07 url: http://www.rubynation.org/ twitter: rubynation - name: Ruby Lugdunum 2014 location: Lyon, France start_date: 2014-06-19 end_date: 2014-06-20 url: http://2014.rulu.eu/ twitter: rulu - name: GORUCO 2014 location: New York, NY start_date: 2014-06-21 end_date: 2014-06-21 url: http://goruco.com/ twitter: goruco video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZj4qdxsQKW4-8KnlpoGfgf - name: RedDotRubyConf 2014 location: Singapore start_date: 2014-06-26 end_date: 2014-06-27 url: https://rdrc2014.herokuapp.com/ twitter: reddotrubyconf video_link: http://www.confreaks.com/events/rdrc2014 - name: DeccanRubyConf 2014 location: Pune, India start_date: 2014-07-19 end_date: 2014-07-19 twitter: deccanrubyconf - name: Brighton Ruby 2014 location: Brighton, UK start_date: 2014-07-21 end_date: 2014-07-21 url: https://brightonruby.com/2014 video_link: https://brightonruby.com/2014 twitter: brightonruby - name: Burlington Ruby Conference 2014 location: Burlington, VT start_date: 2014-08-01 end_date: 2014-08-03 url: http://burlingtonruby.github.io/burlingtonrubyconference2014/ twitter: btvrubyconf video_link: http://vimeo.com/album/2996485 - name: eurucamp 2014 location: Potsdam, Germany start_date: 2014-08-01 end_date: 2014-08-03 url: http://2014.eurucamp.org twitter: eurucamp video_link: http://media.eurucamp.org/ - name: JRubyConf EU 2014 location: Potsdam, Germany start_date: 2014-08-01 end_date: 2014-08-01 url: http://2014.jrubyconf.eu/ twitter: jrubyconfeu video_link: http://media.eurucamp.org/ - name: Cascadia Ruby 2014 location: Portland, OR start_date: 2014-08-11 end_date: 2014-08-12 url: http://cascadiaruby.com/ twitter: cascadiaruby video_link: http://confreaks.com/events/cascadiaruby2014 - name: Madison+ Ruby 2014 location: Madison, WI start_date: 2014-08-22 end_date: 2014-08-23 twitter: madisonruby video_link: https://www.youtube.com/playlist?list=PLJ-cEwTSAyZ6gLSWt1Mnq7vxqB6qiEzMz - name: RedFrogConf 2014 location: Sankt Augustin, Germany start_date: 2014-08-23 end_date: 2014-08-24 url: http://ruby.froscon.org/ twitter: redfrogconf - name: RubyConf Brazil 2014 location: São Paulo, Brazil start_date: 2014-08-28 end_date: 2014-08-29 twitter: rubyconfbr - name: WindyCityRails 2014 location: Chicago, IL start_date: 2014-09-04 end_date: 2014-09-05 url: http://www.windycityrails.org/ twitter: windycityrails video_link: http://www.windycityrails.org/videos/2014/ - name: Frozen Rails 2014 location: Helsinki, Finland start_date: 2014-09-11 end_date: 2014-09-12 url: http://2014.frozenrails.eu/ twitter: frozenrails - name: Barcelona Ruby Conf 2014 location: Barcelona, Spain start_date: 2014-09-11 end_date: 2014-09-13 url: http://web.archive.org/web/20141219035936/http://www.baruco.org/ twitter: baruco video_link: http://confreaks.tv/events/baruco2014 - name: RubyKaigi 2014 location: Tokyo, Japan start_date: 2014-09-18 end_date: 2014-09-20 url: http://rubykaigi.org/2014 twitter: rubykaigi video_link: https://www.youtube.com/channel/UCBSg5zH-VFJ42BGQFk4VH2A - name: Golden Gate Ruby Conference 2014 location: San Francisco, CA start_date: 2014-09-19 end_date: 2014-09-20 url: http://web.archive.org/web/20141217041726/http://gogaruco.com/ twitter: gogaruco video_link: http://confreaks.com/events/gogaruco2014 - name: Rocky Mountain Ruby 2014 location: Boulder, CO start_date: 2014-09-25 end_date: 2014-09-26 url: http://rockymtnruby.com/ twitter: rockymtnruby video_link: http://www.confreaks.com/events/rmr2014 - name: Rails Pacific 2014 location: Taipei, Taiwan start_date: 2014-09-26 end_date: 2014-09-27 url: http://www.railspacific.com twitter: railspacific video_link: http://confreaks.tv/events/railspacific2014 - name: RailsClub 2014 location: Moscow, Russia start_date: 2014-09-27 end_date: 2014-09-27 url: https://rubyrussia.club twitter: railsclub_ru video_link: https://www.youtube.com/watch?v=i6mTsTpOi2Y&list=UU0W9Gjw4JzUcC2BfFf1MDHA - name: ArrrrCamp 2014 location: Ghent, Belgium start_date: 2014-10-02 end_date: 2014-10-03 url: http://arrrrcamp.be/ twitter: arrrrcamp video_link: http://www.confreaks.com/events/arrrrcamp2014 - name: Nickel City Ruby Conference 2014 location: Buffalo, NY start_date: 2014-10-03 end_date: 2014-10-04 url: http://nickelcityruby.com/ twitter: nickelcityruby video_link: http://www.confreaks.com/events/nickelcityruby2014 - name: Ruby DCamp 2014 location: Prince William Forest Park, VA start_date: 2014-10-10 end_date: 2014-10-12 url: http://rubydcamp.org/ twitter: ruby_dcamp - name: RubyConf Portugal 2014 location: Braga, Portugal start_date: 2014-10-13 end_date: 2014-10-14 url: http://2014.rubyconf.pt/ twitter: rubyconfpt video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoLCuTL4BD--TOKdHomGsRDm - name: Keep Ruby Weird 2014 location: Austin, TX start_date: 2014-10-24 end_date: 2014-10-24 url: http://keeprubyweird.com/ twitter: keeprubyweird video_link: http://www.confreaks.com/events/KeepRubyWeird14 - name: RubyConf Argentina 2014 location: Buenos Aires, Argentina start_date: 2014-10-24 end_date: 2014-10-25 url: http://rubyconfargentina.org/ twitter: rubyconfar video_link: https://www.youtube.com/channel/UCFQlyEnjkJ3GBCIHjG2CAJg/playlists - name: Rails Israel 2014 location: Tel Aviv, Israel start_date: 2014-11-04 end_date: 2014-11-05 url: http://railsisrael2014.events.co.il/ twitter: fogelmania - name: RubyWorld Conference 2014 location: Matsue, Japan start_date: 2014-11-13 end_date: 2014-11-14 url: http://2014.rubyworld-conf.org/en/ twitter: rubyworldconf - name: RubyConf 2014 location: San Diego, CA start_date: 2014-11-17 end_date: 2014-11-19 url: https://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYajZ5aZlJf1g2u5Boq-jic - name: Garden City RubyConf 2015 location: Bangalore, India start_date: 2015-01-10 end_date: 2015-01-10 url: http://web.archive.org/web/20161226185837/http://2015.gardencityruby.org:80/ twitter: gardencityrb video_link: http://confreaks.tv/events/gardencityrb2015 - name: Ruby devroom at FOSDEM 2015 location: Brussels, Belgium start_date: 2015-01-31 end_date: 2015-02-01 url: http://fosdem-ruby.github.io/ twitter: ruby_fosdem - name: RubyConf AU 2015 location: Melbourne, Australia start_date: 2015-02-04 end_date: 2015-02-07 url: https://rubyconf.org.au/2015 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc2uUcqG2wjZ1ppt-TkFG-gm - name: Rubyfuza 2015 location: Cape Town, South Africa start_date: 2015-02-05 end_date: 2015-02-06 url: http://www.rubyfuza.org/2015/ twitter: rubyfuza video_link: https://www.youtube.com/playlist?list=PLI113oIao_x63Ne1S8ObKYQwbPRcpb8kN - name: Ruby on Ales 2015 location: Bend, OR start_date: 2015-03-05 end_date: 2015-03-06 twitter: rbonales video_link: http://confreaks.tv/events/roa2015 - name: Tropical.rb 2015 location: Porto de Galinhas, Brazil start_date: 2015-03-05 end_date: 2015-03-08 url: http://tropicalrb.com/ twitter: tropicalrb video_link: http://tropicalrb.com/en/videos/ - name: MountainWest RubyConf 2015 location: Salt Lake City, UT start_date: 2015-03-09 end_date: 2015-03-10 url: http://mtnwestrubyconf.org/2015/ twitter: mwrc video_link: http://confreaks.tv/events/mwrc2015 - name: Bath Ruby 2015 location: Bath, UK start_date: 2015-03-13 end_date: 2015-03-13 url: http://2015.bathruby.org twitter: BathRuby video_link: http://confreaks.tv/events/bathruby2015 - name: wroclove.rb 2015 location: Wrocław, Poland start_date: 2015-03-13 end_date: 2015-03-15 url: https://2015.wrocloverb.com twitter: wrocloverb - name: RubyConfLT 2015 location: Vilnius, Lithuania start_date: 2015-03-21 end_date: 2015-03-21 url: https://2015.rubyconf.lt/ twitter: rubyconflt video_link: https://www.youtube.com/user/rubyconflt - name: Ancient City Ruby 2015 location: St. Augustine, FL start_date: 2015-03-26 end_date: 2015-03-27 url: http://www.ancientcityruby.com/2015/ twitter: ancientcityruby video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJOWPOGH3R3ww7AulwmOadr2 - name: RubyConf Philippines 2015 location: Boracay Island, Philippines start_date: 2015-03-27 end_date: 2015-03-28 url: http://rubyconf.ph/2015/ twitter: rubyconfph video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSGlKtZOeqZKUMOB2w8qlUC_ - name: RubyConf India 2015 location: Goa, India start_date: 2015-04-03 end_date: 2015-04-05 url: https://2015.rubyconfindia.org/ twitter: rubyconfindia video_link: https://www.youtube.com/channel/UCRNZy_ouJ1ai_uYwDBR2J5Q/videos - name: RailsConf 2015 location: Atlanta, GA start_date: 2015-04-21 end_date: 2015-04-23 url: http://www.railsconf.com/2015 twitter: railsconf video_link: http://confreaks.tv/events/railsconf2015 - name: ROSSConf 2015 location: Vienna, Austria start_date: 2015-04-25 end_date: 2015-04-25 url: http://www.rossconf.io/ twitter: rossconf - name: RubyConf Kenya 2015 location: Nairobi, Kenya start_date: 2015-05-08 end_date: 2015-05-09 url: http://rubyconf.nairuby.org/2015 twitter: nairubyke - name: RubyC 2015 location: Kiev, Ukraine start_date: 2015-05-30 end_date: 2015-05-31 url: http://rubyc.eu/ twitter: rubyc_eu video_link: https://rubyc.eu/archives/5 - name: RedDotRubyConf 2015 location: Singapore start_date: 2015-06-04 end_date: 2015-06-05 url: https://rdrc2015.herokuapp.com/ twitter: reddotrubyconf video_link: http://confreaks.tv/events/rdrc2015 - name: RubyNation 2015 location: Washington, DC start_date: 2015-06-12 end_date: 2015-06-13 url: http://www.rubynation.org/ twitter: rubynation - name: GORUCO 2015 location: New York, NY start_date: 2015-07-20 end_date: 2015-07-20 url: http://2015.goruco.com/ twitter: goruco video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyb6MU6H8PratMhV4bWUL8bv - name: Brighton Ruby 2015 location: Brighton, UK start_date: 2015-07-20 end_date: 2015-07-20 url: https://brightonruby.com/2015/ twitter: brightonruby video_link: https://brightonruby.com/2015/ - name: JRubyConf EU 2015 location: Potsdam, Germany start_date: 2015-07-31 end_date: 2015-07-31 url: http://jrubyconf.eu twitter: jrubyconfeu video_link: http://media.eurucamp.org/ - name: Burlington Ruby Conference 2015 location: Burlington, VT start_date: 2015-07-31 end_date: 2015-08-02 url: http://burlingtonruby.github.io/burlingtonrubyconference2015/ twitter: btvrubyconf - name: eurucamp 2015 location: Potsdam, Germany start_date: 2015-07-31 end_date: 2015-08-02 url: http://eurucamp.org twitter: eurucamp video_link: http://media.eurucamp.org/ - name: DeccanRubyConf 2015 location: Pune, India start_date: 2015-08-08 end_date: 2015-08-08 twitter: deccanrubyconf - name: Madison+ Ruby 2015 location: Madison, WI start_date: 2015-08-20 end_date: 2015-08-22 twitter: madisonruby - name: Ruby Midwest 2015 location: Kansas City, MO start_date: 2015-08-28 end_date: 2015-08-29 twitter: rubymidwest - name: Barcelona Ruby Conf 2015 location: Barcelona, Spain start_date: 2015-09-01 end_date: 2015-09-02 url: http://www.baruco.org/ twitter: baruco - name: RubyConf Taiwan 2015 location: Taipei, Taiwan start_date: 2015-09-11 end_date: 2015-09-12 url: https://2015.rubyconf.tw/ twitter: rubytaiwan video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpDVKgAH_p_X7gtLSGsvmMJj - name: RubyConf Portugal 2015 location: Braga, Portugal start_date: 2015-09-14 end_date: 2015-09-15 url: http://2015.rubyconf.pt/ twitter: rubyconfpt video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoJSREjEZhKnDxyezC47Cgh5 - name: WindyCityRails 2015 location: Chicago, IL start_date: 2015-09-17 end_date: 2015-09-18 url: http://www.windycityrails.org/ twitter: windycityrails video_link: https://windycityrails.com/videos/2015/ - name: RubyConf Brazil 2015 location: São Paulo, Brazil start_date: 2015-09-18 end_date: 2015-09-19 twitter: rubyconfbr - name: Rocky Mountain Ruby 2015 location: Boulder, CO start_date: 2015-09-23 end_date: 2015-09-25 url: http://www.rockymtnruby.com/ twitter: rockymtnruby video_link: https://www.confreaks.tv/events/rmr2015 - name: RailsClub 2015 location: Moscow, Russia start_date: 2015-09-26 end_date: 2015-09-26 url: https://rubyrussia.club/ twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeOiwKkEcdRU7NvQr2IKaMBw - name: ROSSConf Berlin 2015 location: Berlin, Germany start_date: 2015-09-26 end_date: 2015-09-26 url: http://www.rossconf.io/ twitter: rossconf - name: ArrrrCamp 2015 location: Ghent, Belgium start_date: 2015-10-01 end_date: 2015-10-02 url: http://2015.arrrrcamp.be twitter: arrrrcamp video_link: http://confreaks.tv/events/arrrrcamp2015 - name: Los Angeles Ruby Conference 2015 location: Los Angeles, CA start_date: 2015-10-10 end_date: 2015-10-10 twitter: larubyconf video_link: https://www.confreaks.tv/events/larubyconf2015 - name: RubyConf Colombia 2015 location: Medellin, Colombia start_date: 2015-10-15 end_date: 2015-10-16 url: http://2015.rubyconf.co/ twitter: rubyconfco video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgFP64HqrRWd3RWUKmPFMdo6 - name: EuRuKo 2015 location: Salzburg, Austria start_date: 2015-10-17 end_date: 2015-10-18 url: https://2015.euruko.org twitter: euruko - name: Keep Ruby Weird 2015 location: Austin, TX start_date: 2015-10-23 end_date: 2015-10-23 url: http://keeprubyweird.com twitter: keeprubyweird video_link: http://confreaks.tv/events/keeprubyweird2015 - name: RubyWorld Conference 2015 location: Matsue, Japan start_date: 2015-11-11 end_date: 2015-11-12 url: http://2015.rubyworld-conf.org/en/ twitter: rubyworldconf video_link: http://2015.rubyworld-conf.org/en/program/ - name: rubyday 2015 location: Turin, Italy start_date: 2015-11-13 end_date: 2015-11-13 url: http://2015.rubyday.it/ twitter: rubydayit video_link: https://www.youtube.com/playlist?list=PL5ImBN21eKvaTC30b0rwaIWe3DRLr062d - name: RubyConf 2015 location: San Antonio, TX start_date: 2015-11-15 end_date: 2015-11-17 url: http://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYqT3LHMg4iH270kfyENCpp - name: Rails Israel 2015 location: Tel Aviv, Israel start_date: 2015-11-24 end_date: 2015-11-24 url: http://railsisrael2015.events.co.il twitter: railsisrael - name: RubyKaigi 2015 location: Tokyo, Japan start_date: 2015-12-11 end_date: 2015-12-13 url: http://rubykaigi.org/2015 twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PL0irJ82JAlEic6IlpRdsPl5L5f5aLMuXf - name: Ruby devroom at FOSDEM 2016 location: Brussels, Belgium start_date: 2016-01-31 end_date: 2016-01-31 url: http://fosdem.rubybelgium.be/ twitter: ruby_fosdem - name: Rubyfuza 2016 location: Cape Town, South Africa start_date: 2016-02-04 end_date: 2016-02-05 url: http://www.rubyfuza.org/2016/ twitter: rubyfuza - name: RubyConf AU 2016 location: Gold Coast, Australia start_date: 2016-02-10 end_date: 2016-02-13 url: https://rubyconf.org.au/2016 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3ILv2Lxlt422NjIFWnXl0U - name: Bath Ruby 2016 location: Bath, UK start_date: 2016-03-11 end_date: 2016-03-11 url: http://2016.bathruby.org twitter: bathruby video_link: http://confreaks.tv/events/bathruby2016 - name: wroclove.rb 2016 location: Wrocław, Poland start_date: 2016-03-11 end_date: 2016-03-13 url: https://2016.wrocloverb.com twitter: wrocloverb - name: RubyConf India 2016 location: Kochi, India start_date: 2016-03-19 end_date: 2016-03-20 url: https://2016.rubyconfindia.org/ twitter: rubyconfindia video_link: https://www.youtube.com/playlist?list=PLNyYRB_d4fk2LfGLjyv8Oa-ruc4EgkfAQ - name: MountainWest RubyConf 2016 location: Salt Lake City, UT start_date: 2016-03-21 end_date: 2016-03-22 url: http://mtnwestrubyconf.org/2016/ twitter: mwrc video_link: http://confreaks.tv/events/mwrc2016 - name: Ruby on Ales 2016 location: Bend, OR start_date: 2016-03-31 end_date: 2016-04-01 url: http://web.archive.org/web/20171102215052/http://ruby.onales.com/ twitter: rbonales video_link: http://confreaks.tv/events/roa2016 - name: Ancient City Ruby 2016 location: St. Augustine, FL start_date: 2016-04-06 end_date: 2016-04-08 url: http://www.ancientcityruby.com/ twitter: ancientcityruby video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJPq3h7UGYbqNwrerEM05t_Q - name: RubyConf Philippines 2016 location: Manila, Philippines start_date: 2016-04-07 end_date: 2016-04-09 url: http://rubyconf.ph/2016/ twitter: rubyconfph video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSH173SE64f28eQeTmXnufQj - name: RubyConfLT 2016 location: Vilnius, Lithuania start_date: 2016-04-23 end_date: 2016-04-23 url: https://2016.rubyconf.lt/ twitter: rubyconflt video_link: https://www.youtube.com/user/rubyconflt - name: RubyConfBY 2016 location: Minsk, Belarus start_date: 2016-04-24 end_date: 2016-04-24 url: https://2016.rubyconference.by/en/ twitter: rubyconfby video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCC82YnUz8sAsjmNyPWxIr9l - name: RailsConf 2016 location: Kansas City, MO start_date: 2016-05-04 end_date: 2016-05-06 url: http://www.railsconf.com/2016 twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZGYLfj6oRQWPxB6ijg1YsC - name: Rails Pacific 2016 location: Taipei, Taiwan start_date: 2016-05-20 end_date: 2016-05-21 url: http://www.railspacific.com/ twitter: railspacific video_link: http://confreaks.tv/events/railspacific2016 - name: RubyNation 2016 location: Washington, DC start_date: 2016-06-03 end_date: 2016-06-04 url: http://www.rubynation.org/ twitter: rubynation - name: RubyC 2016 location: Kiev, Ukraine start_date: 2016-06-04 end_date: 2016-06-05 url: http://rubyc.eu/ twitter: rubyc_eu video_link: https://rubyc.eu/posts/55 - name: Ruby for Good 2016 location: Washington, DC start_date: 2016-06-16 end_date: 2016-06-19 url: http://www.rubyforgood.org/ twitter: rubyforgood - name: NordicRuby 2016 location: Stockholm, Sweden start_date: 2016-06-17 end_date: 2016-06-19 url: http://www.nordicruby.org/ twitter: nordicruby - name: RedDotRubyConf 2016 location: Singapore start_date: 2016-06-23 end_date: 2016-06-24 url: https://rdrc2016.herokuapp.com/ twitter: reddotrubyconf video_link: http://confreaks.tv/events/reddotruby2016 - name: GrillRB 2016 location: Wrocław, Poland start_date: 2016-06-25 end_date: 2016-06-26 twitter: grill_rb - name: GORUCO 2016 location: New York, NY start_date: 2016-06-25 end_date: 2016-06-25 url: http://2016.goruco.com/ twitter: goruco video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybaE0Xm_yOK8-a-WAcltv1q - name: OpenCommerce Conf 2016 location: Rise, NY start_date: 2016-06-28 end_date: 2016-06-29 url: http://opencommerceconf.org/ twitter: opencommerce_ - name: Brighton Ruby 2016 location: Brighton, UK start_date: 2016-07-08 end_date: 2016-07-08 url: https://brightonruby.com/2016/ twitter: brightonruby video_link: https://brightonruby.com/2016/ - name: DeccanRubyConf 2016 location: Pune, India start_date: 2016-08-06 end_date: 2016-08-06 twitter: deccanrubyconf video_link: https://www.youtube.com/playlist?list=PLo3sQWbYZbskTlzH7Ert-FucR7QmIuwE5 - name: RubyConf KL 2016 location: Kuala Lumpur, Malaysia start_date: 2016-08-13 end_date: 2016-08-13 url: http://rubyconf.my/2016 twitter: rubyconfmy - name: Tech Day by GURU-PR 2016 location: Curitiba, Brazil start_date: 2016-08-20 end_date: 2016-08-20 url: http://www.gurupr.org/eventos/2-tech-day-do-guru-pr twitter: guru_pr - name: RubyConf Colombia 2016 location: Medellin, Colombia start_date: 2016-09-02 end_date: 2016-09-03 url: http://www.rubyconf.co/ twitter: rubyconfco video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgGLwr7cJtU27IBgtz3Q4PII - name: RubyKaigi 2016 location: Kyoto, Japan start_date: 2016-09-08 end_date: 2016-09-10 url: http://rubykaigi.org/2016 twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYfT493G8C2fLvvhPDs-lIQ - name: WindyCityRails 2016 location: Chicago, IL start_date: 2016-09-15 end_date: 2016-09-16 url: http://www.windycityrails.org/ twitter: windycityrails video_link: https://windycityrails.com/videos/2016/ - name: Rocky Mountain Ruby 2016 location: Boulder, CO start_date: 2016-09-21 end_date: 2016-09-23 url: http://rockymtnruby.com/ twitter: rockymtnruby video_link: http://confreaks.tv/events/rockymountainruby2016 - name: EuRuKo 2016 location: Sofia, Bulgaria start_date: 2016-09-23 end_date: 2016-09-24 url: https://2016.euruko.org twitter: euruko video_link: https://www.youtube.com/channel/UChGs1td4ViQFqT0jlvkyUJg/videos - name: RubyConf Brazil 2016 location: São Paulo, Brazil start_date: 2016-09-23 end_date: 2016-09-24 twitter: rubyconfbr - name: Conferencia Rails 2016 location: Madrid, Spain start_date: 2016-10-14 end_date: 2016-10-15 url: http://conferenciaror.es/ twitter: conferenciaror - name: RailsClub 2016 location: Moscow, Russia start_date: 2016-10-22 end_date: 2016-10-22 url: https://rubyrussia.club/ twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeOXZhotgDX7Y7qBsr24cu7o - name: London Ruby Unconference 2016 location: London, UK start_date: 2016-10-22 end_date: 2016-10-22 url: http://www.eventbrite.com/e/london-ruby-unconference-tickets-27663867372?aff=github twitter: rubyunconf - name: RubyConf Portugal 2016 location: Braga, Portugal start_date: 2016-10-27 end_date: 2016-10-28 url: http://rubyconf.pt/ twitter: rubyconfpt video_link: https://www.youtube.com/playlist?list=PLgGhdJEbwzoI6sUw_2wTlFHCGPRVoatln - name: Keep Ruby Weird 2016 location: Austin, TX start_date: 2016-10-28 end_date: 2016-10-28 url: https://2016.keeprubyweird.com/ twitter: keeprubyweird video_link: http://confreaks.tv/events/keeprubyweird2016 - name: RubyWorld Conference 2016 location: Matsue, Shimane, Japan start_date: 2016-11-03 end_date: 2016-11-04 url: http://2017.rubyworld-conf.org/en/ twitter: rubyworldconf video_link: http://2016.rubyworld-conf.org/en/program/ - name: RubyConf 2016 location: Cincinnati, OH start_date: 2016-11-10 end_date: 2016-11-12 url: http://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaMUYwB6tTX5p2Z6fOCdGRE - name: Rails Israel 2016 location: Tel Aviv, Israel start_date: 2016-11-14 end_date: 2016-11-15 twitter: railsisrael - name: rubyday 2016 location: Florence, Italy start_date: 2016-11-25 end_date: 2016-11-26 url: http://www.rubyday.it twitter: rubydayit video_link: https://www.youtube.com/playlist?list=PL5ImBN21eKvbFLhByXvzczzqtx9ApeKAY - name: RubyConf Taiwan 2016 location: Taipei, Taiwan start_date: 2016-12-02 end_date: 2016-12-03 url: https://2016.rubyconf.tw/ twitter: rubyconftw video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpB7wxvDs02oGA9IRKw3dVYO - name: RubyConf India 2017 location: Kochi, India start_date: 2017-01-27 end_date: 2017-01-29 url: http://2017.rubyconfindia.org/ twitter: rubyconfindia video_link: https://www.youtube.com/playlist?list=PLe872Yf6CJWHc6XDdHo_22hktStG866-6 - name: Rubyfuza 2017 location: Cape Town, South Africa start_date: 2017-02-02 end_date: 2017-02-04 url: http://www.rubyfuza.org/2017/ twitter: rubyfuza video_link: https://www.youtube.com/playlist?list=PLI113oIao_x5PHCdz0VLSKW4-Qp58pWOs - name: Ruby devroom at FOSDEM 2017 location: Brussels, Belgium start_date: 2017-02-03 end_date: 2017-02-04 url: http://fosdem.rubybelgium.be/ twitter: ruby_fosdem - name: RubyConf AU 2017 location: Melbourne, Australia start_date: 2017-02-09 end_date: 2017-02-10 url: https://rubyconf.org.au/2017 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3hxsmj3AnPFf3RD4f3zfUl - name: RubyConf Philippines 2017 location: Bohol, Philippines start_date: 2017-03-16 end_date: 2017-03-18 url: http://rubyconf.ph/2017/ twitter: rubyconfph video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSHKtxq2efDQc6EXTDqabxdV - name: wroclove.rb 2017 location: Wrocław, Poland start_date: 2017-03-17 end_date: 2017-03-19 url: https://2017.wrocloverb.com twitter: wrocloverb - name: RubyConfLT 2017 location: Vilnius, Lithuania start_date: 2017-04-01 end_date: 2017-04-01 url: https://rubyconf.lt/ twitter: rubyconflt - name: RubyConfBY 2017 location: Minsk, Belarus start_date: 2017-04-02 end_date: 2017-04-02 url: https://2017.rubyconference.by/en/ twitter: rubyconfby video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCBpR87Q5nw_3caqbVo71EP7 - name: RubyHACK 2017 location: Salt Lake City, UT start_date: 2017-04-20 end_date: 2017-04-21 url: https://rubyhack.com/archives/2017 twitter: utrubyhack video_link: https://confreaks.tv/events/rubyhack2017 - name: RailsConf 2017 location: Phoenix, AZ start_date: 2017-04-25 end_date: 2017-04-27 url: http://www.railsconf.com/2017 twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyarr-2jYCnnlb7wl-aEz4xt - name: RubyC 2017 location: Kyiv, Ukraine start_date: 2017-06-03 end_date: 2017-06-04 url: http://rubyc.eu/ twitter: rubyc_eu video_link: https://rubyc.eu/posts/75 - name: RubyConf EA 2017 location: Nairobi, Kenya start_date: 2017-06-08 end_date: 2017-06-10 url: http://rubyconf.nairuby.org/2017 twitter: nairubyke video_link: https://www.youtube.com/playlist?list=PLb6Zr8jHuhjzIAKR7l2r81P-hxBUftT2- - name: RubyNation 2017 location: Arlington, VA start_date: 2017-06-16 end_date: 2017-06-16 url: http://www.rubynation.org/ twitter: rubynation video_link: https://www.youtube.com/playlist?list=PLeGxIOPLk9EKE_zb0E63JywRkyUWjjFTk - name: RedDotRubyConf 2017 location: Singapore start_date: 2017-06-22 end_date: 2017-06-23 url: http://www.reddotrubyconf.com/ twitter: reddotrubyconf video_link: http://confreaks.tv/events/reddotrubyconf2017 - name: GORUCO 2017 location: New York, NY start_date: 2017-06-24 end_date: 2017-06-24 url: http://2017.goruco.com/ twitter: goruco video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcybxOnh9S9Hk-RDRXZRkrWwR - name: Grill.RB 2017 location: Wrocław, Poland start_date: 2017-07-01 end_date: 2017-07-02 twitter: grill_rb video_link: https://www.youtube.com/playlist?list=PLDraF2Fjmu8VuZ8CohiG4EZuwHpUACUIN - name: Brighton Ruby 2017 location: Brighton, UK start_date: 2017-07-07 end_date: 2017-07-07 url: http://brightonruby.com/2017/ twitter: brightonruby video_link: https://brightonruby.com/2017/ - name: DeccanRubyConf 2017 location: Pune, India start_date: 2017-08-12 end_date: 2017-08-12 twitter: deccanrubyconf video_link: https://www.youtube.com/channel/UCaFWc_6VQ7lk11sU-AYUKtg - name: RubyConf Colombia 2017 location: Medellin, Colombia start_date: 2017-09-08 end_date: 2017-09-09 url: http://2017.rubyconf.co/ twitter: rubyconfco video_link: https://www.youtube.com/playlist?list=PLq_08z5fuQgFnASevZeUy1l4lbaqoidcL - name: RubyConf China 2017 location: Hangzhou, China start_date: 2017-09-16 end_date: 2017-09-17 url: http://rubyconfchina.org - name: RubyKaigi 2017 location: Hiroshima, Japan start_date: 2017-09-18 end_date: 2017-09-20 url: http://rubykaigi.org/2017 twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yaJalSEHY17E96ChjY-kF2D - name: RailsClub 2017 location: Moscow, Russia start_date: 2017-09-23 end_date: 2017-09-23 url: https://rubyrussia.club/ twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeMBqHPF7HcO6O2WBjzfiUQw - name: EuRuKo 2017 location: Budapest, Hungary start_date: 2017-09-29 end_date: 2017-09-30 url: https://2017.euruko.org twitter: euruko video_link: https://www.youtube.com/playlist?list=PLCrwBqiOtwpIRdk4VMfD6hbFVHZoKOyMg - name: Keep Ruby Weird 2017 location: Austin, TX start_date: 2017-10-01 end_date: 2017-10-01 url: https://2017.keeprubyweird.com/ twitter: keeprubyweird video_link: http://confreaks.tv/events/keeprubyweird2017 - name: Southeast Ruby 2017 location: Nashville, TN start_date: 2017-10-05 end_date: 2017-10-06 url: https://southeastruby.com twitter: southeastruby video_link: https://www.youtube.com/watch?v=5wI0ss02leo&list=PLRO4gNnSWQ4LSAVV7_7BliuoFCRHIqVk0 - name: RubyConf Jakarta 2017 location: Jakarta, Indonesia start_date: 2017-10-06 end_date: 2017-10-07 url: http://ruby.id/conf/2017/ twitter: id_ruby - name: London Ruby Unconference 2017 location: London, UK start_date: 2017-10-07 end_date: 2017-10-07 url: https://www.eventbrite.com/e/london-ruby-unconference-tickets-36286901098?aff=rubyconferences twitter: rubyunconf - name: RubyConf MY 2017 location: Cyberjaya, Malaysia start_date: 2017-10-12 end_date: 2017-10-13 url: http://rubyconf.my/2017/ twitter: rubyconfmy video_link: https://www.youtube.com/playlist?list=PLrD6VJeUSN28nfWhU5PwlD-9vgPNV3WsU - name: Ruby Dev Summit 2017 location: Online start_date: 2017-10-16 end_date: 2017-10-21 - name: RubyWorld Conference 2017 location: Matsue, Shimane, Japan start_date: 2017-11-01 end_date: 2017-11-02 url: http://2017.rubyworld-conf.org/en/ twitter: rubyworldconf video_link: http://2017.rubyworld-conf.org/en/program/ - name: Kiwi Ruby 2017 location: Wellington, New Zealand start_date: 2017-11-02 end_date: 2017-11-03 url: http://kiwi.ruby.nz twitter: kiwirubyconf video_link: https://www.youtube.com/playlist?list=PLqR1aFtg6FQKivt1jMU-dotStXiTY11GT - name: RubyConf 2017 location: New Orleans, LA start_date: 2017-11-15 end_date: 2017-11-17 url: https://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyayGHjjxZOmVEGsxX-rczZt - name: RubyConf Brazil 2017 location: São Paulo, Brazil start_date: 2017-11-17 end_date: 2017-11-18 twitter: rubyconfbr - name: Rails Israel 2017 location: Tel Aviv, Israel start_date: 2017-11-28 end_date: 2017-11-30 twitter: railsisrael - name: Ruby on Ice 2018 location: Tegernsee, Germany start_date: 2018-01-26 end_date: 2018-01-28 url: https://rubyonice.com/ twitter: rubyoniceconf - name: Rubyfuza 2018 location: Cape Town, South Africa start_date: 2018-02-01 end_date: 2018-02-03 url: http://www.rubyfuza.org twitter: rubyfuza video_link: https://www.youtube.com/playlist?list=PLI113oIao_x4i51ynrHhhNz3UpEDs0qxy - name: RubyConf India 2018 location: Bengaluru, India start_date: 2018-02-02 end_date: 2018-02-10 url: https://2018.rubyconfindia.org/ twitter: RubyConfIndia video_link: https://www.youtube.com/playlist?list=PLe872Yf6CJWGYKLny9jFs9mLv0Z94m8k4 - name: RubyConf AU 2018 location: Sydney, Australia start_date: 2018-03-08 end_date: 2018-03-09 url: https://www.rubyconf.org.au/2018 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc2Xi0rotTPuPRQAoJnDU-my - name: RubyConf Philippines 2018 location: Manila, Philippines start_date: 2018-03-15 end_date: 2018-03-17 url: http://rubyconf.ph/ twitter: rubyconfph video_link: https://www.youtube.com/playlist?list=PL0mVjsUoElSENtu25MLim42HJszfsXDt2 - name: wroclove.rb 2018 location: Wrocław, Poland start_date: 2018-03-16 end_date: 2018-03-18 url: https://2018.wrocloverb.com twitter: wrocloverb video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDSMznObXnqyq5HbOqLucTz - name: Bath Ruby 2018 location: Bath, UK start_date: 2018-03-22 end_date: 2018-03-23 url: http://2018.bathruby.uk twitter: bathruby video_link: https://www.youtube.com/playlist?list=PLwdNEzbHNELWqMRxZzenE6Lgp16rPXu9A - name: Isle of Ruby 2018 location: Exeter, UK start_date: 2018-04-13 end_date: 2018-04-15 url: http://isleofruby.org/ twitter: isleofruby - name: RailsConf 2018 location: Pittsburgh, PA start_date: 2018-04-17 end_date: 2018-04-19 url: https://railsconf.com twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyak-yFKj5IN3tDYOh5omMrH - name: RubyConfBY 2018 location: Minsk, Belarus start_date: 2018-04-21 end_date: 2018-04-21 url: https://rubyconference.by/2018 twitter: rubyconfby video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCD5vCJvBlbUGTNd5KHO4AWL - name: RubyConf Taiwan 2018 location: Taipei, Taiwan start_date: 2018-04-27 end_date: 2018-04-28 url: https://2018.rubyconf.tw/ twitter: rubyconftw video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpAdmjfDBiqiOKpk1PiCIb2A - name: RubyHACK 2018 location: Salt Lake City, UT start_date: 2018-05-03 end_date: 2018-05-04 url: https://rubyhack.com/archives/2018 twitter: utrubyhack video_link: https://confreaks.tv/events/rubyhack2018 - name: Madison+ Ruby 2018 location: Chicago, IL start_date: 2018-05-10 end_date: 2018-05-11 url: https://ti.to/adorable/madison-ruby-chicago/en twitter: MadisonRuby - name: ROSSConf 2018 location: Amsterdam, Netherlands start_date: 2018-05-11 end_date: 2018-05-12 url: https://rossconfams.eventbrite.co.uk twitter: rossconf - name: Balkan Ruby 2018 location: Sofia, Bulgaria start_date: 2018-05-25 end_date: 2018-05-26 url: http://balkanruby.com/ twitter: balkanruby video_link: https://www.youtube.com/playlist?list=PLAkGYJoUfB0v4ssiPcL_OIM1-t_LssfAY - name: RubyKaigi 2018 location: Sendai, Japan start_date: 2018-05-31 end_date: 2018-06-01 url: http://rubykaigi.org/2018 twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yZ8IJuzGOn3rj2dOvRLDdxL - name: RubyC 2018 location: Kyiv, Ukraine start_date: 2018-06-02 end_date: 2018-06-03 url: http://rubyc.eu/ twitter: rubyc_eu video_link: https://rubyc.eu/posts/93 - name: Saint P Rubyconf 2018 location: Saint Petersburg, Russia start_date: 2018-06-10 end_date: 2018-06-10 twitter: saintprug - name: GORUCO 2018 location: New York, NY start_date: 2018-06-16 end_date: 2018-06-16 url: http://goruco.com twitter: goruco video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcya2z3Q5AiwNqjV968p2TvHu - name: RubyConf Kenya 2018 location: Nairobi, Kenya start_date: 2018-06-22 end_date: 2018-06-22 url: http://rubyconf.nairuby.org/2018 twitter: nairubyke - name: RubyNation 2018 location: Arlington, VA start_date: 2018-06-22 end_date: 2018-06-22 url: http://rubynation.org/ twitter: rubynation - name: Paris.rb Conf 2018 location: Paris, France start_date: 2018-06-28 end_date: 2018-06-29 url: https://2018.rubyparis.org/ twitter: parisrb video_link: https://www.youtube.com/playlist?list=PLjyiiigeVQV_mHcSnJnw_1LR4nzGrdF4l - name: Brighton Ruby 2018 location: Brighton, UK start_date: 2018-07-06 end_date: 2018-07-06 url: https://brightonruby.com/2018/ twitter: brightonruby video_link: https://brightonruby.com/2018/ - name: Southeast Ruby 2018 location: Nashville, TN start_date: 2018-08-02 end_date: 2018-08-03 url: https://southeastruby.com/ twitter: southeastruby video_link: https://www.youtube.com/watch?v=-JpAUN6Ovok&list=PLRO4gNnSWQ4JNwiS-MyfIIejk2R_Y6UKR - name: DeccanRubyConf 2018 location: Pune, India start_date: 2018-08-04 end_date: 2018-08-04 url: http://www.deccanrubyconf.org/ twitter: deccanrubyconf video_link: https://www.youtube.com/playlist?list=PLo3sQWbYZbsm02wEkMvD9QB1qNeARuAJa - name: Grill.RB 2018 location: Wrocław, Poland start_date: 2018-08-11 end_date: 2018-08-12 url: http://grillrb.com twitter: grill_rb - name: EuRuKo 2018 location: Vienna, Austria start_date: 2018-08-24 end_date: 2018-08-25 url: https://2018.euruko.org twitter: euruko video_link: https://www.youtube.com/channel/UCSApGhubxla1SMfB8MlryGw/videos - name: Ruby Unconf 2018 location: Hamburg, Germany start_date: 2018-10-05 end_date: 2018-10-06 url: http://rubyunconf.eu twitter: RubyUnconfEU video_link: https://www.youtube.com/playlist?list=PLvpu5WTDxTKXWZvsg9iR4a6AeHWw0Hzu4 - name: RubyRussia 2018 location: Moscow, Russia start_date: 2018-10-06 end_date: 2018-10-06 url: https://rubyrussia.club/en twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeNz4UCJk9r-5nFklqvzL7vy - name: Ruby Summit China 2018 location: ZhengZhou, Henan, China start_date: 2018-10-13 end_date: 2018-10-14 url: http://rubysummit.cn/ - name: RubyConf MY 2018 location: Kuala Lumpur, Malaysia start_date: 2018-10-25 end_date: 2018-10-26 url: http://rubyconf.my/ twitter: rubyconfmy - name: Pivorak Conf 1.0 location: Lviv, Ukraine start_date: 2018-10-26 end_date: 2018-10-26 url: https://pivorak.com/ video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu9BsDfI_e2y8vd8FVkeVvum - name: RubyWorld Conference 2018 location: Matsue, Japan start_date: 2018-11-01 end_date: 2018-11-02 url: http://2018.rubyworld-conf.org/ twitter: rubyworldconf video_link: https://2018.rubyworld-conf.org/program/ - name: Keep Ruby Weird 2018 location: Austin, TX start_date: 2018-11-09 end_date: 2018-11-09 url: https://2018.keeprubyweird.com twitter: keeprubyweird video_link: http://confreaks.tv/events/keeprubyweird2018 - name: RubyConf 2018 location: Los Angeles, CA start_date: 2018-11-13 end_date: 2018-11-15 url: https://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZEjH3kIyvIN0eZ4tuVEkBD - name: RubyConf India 2019 location: Goa, India start_date: 2019-01-20 end_date: 2019-01-21 url: http://rubyconfindia.org/ twitter: rubyconfindia video_link: https://www.youtube.com/playlist?list=PLbgP71NCXCqEFr8nuY2mhAobKv_ldqL2f - name: Pivorak Conf 2.0 location: Lviv, Ukraine start_date: 2019-02-01 end_date: 2019-02-01 url: https://pivorak.com/ video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu_0s6TbyKQwRGz97gYVchQM - name: RubyConf AU 2019 location: Melbourne, Australia start_date: 2019-02-07 end_date: 2019-02-09 url: https://rubyconf.org.au/2019 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc3dTbvb8fIuzDFGTCaEdO3a - name: Rubyfuza 2019 location: Cape Town, South Africa start_date: 2019-02-07 end_date: 2019-02-09 url: http://www.rubyfuza.org twitter: rubyfuza video_link: https://www.youtube.com/playlist?list=PLI113oIao_x55gOvfDER9ocuEQD94kjjx - name: Ruby on Ice 2019 location: Tegernsee, Germany start_date: 2019-02-22 end_date: 2019-02-24 url: https://rubyonice.com/ twitter: rubyoniceconf video_link: https://www.youtube.com/playlist?list=PLClLcexm3Iukf--UcFDw_DgKhvKpQEOX- - name: wroclove.rb 2019 location: Wrocław, Poland start_date: 2019-03-22 end_date: 2019-03-24 url: https://2019.wrocloverb.com twitter: wrocloverb video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDJvwOYLuu7jnprRKhuc7Cp - name: RubyHACK 2019 location: Salt Lake City, UT start_date: 2019-04-03 end_date: 2019-04-04 url: https://rubyhack.com twitter: utrubyhack video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyYoLJFe8Y6TMgZgUkqlSQzN - name: Rails Camp South 2019 location: Bandera, TX start_date: 2019-04-05 end_date: 2019-04-08 url: https://us-south.rails.camp/ twitter: railscampsouth - name: RubyConfBY 2019 location: Minsk, Belarus start_date: 2019-04-06 end_date: 2019-04-06 url: https://rubyconference.by/ twitter: rubyconfby video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCCvTdTREN1pbu8ivniZEdlS - name: rubyday 2019 location: Verona, Italy start_date: 2019-04-10 end_date: 2019-04-11 url: https://2019.rubyday.it/ twitter: rubydayit video_link: https://www.youtube.com/playlist?list=PLWK9j6ps_unmgzGOw3cbjS8ID-b-cF1d9 - name: Ruby Wine 2019 location: Chișinău, Moldova start_date: 2019-04-13 end_date: 2019-04-13 url: https://www.facebook.com/events/551051368675115/ video_link: https://www.youtube.com/playlist?list=PLRQ_gUZhiTmvN_KgcpEkREJF-tD43W7jZ - name: RubyKaigi 2019 location: Fukuoka, Japan start_date: 2019-04-18 end_date: 2019-04-20 url: https://rubykaigi.org/2019 twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYc9_jx9HkS_1WkOLKWnRw3 - name: RailsConf 2019 location: Minneapolis, MN start_date: 2019-04-30 end_date: 2019-05-02 url: https://railsconf.com/ twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaOq3HlRm9h_Q_WhWKqm5xc - name: krk-rb.pl 2019 location: Cracow, Poland start_date: 2019-05-14 end_date: 2019-05-15 url: https://krk-rb.pl/ - name: Balkan Ruby 2019 location: Sofia, Bulgaria start_date: 2019-05-17 end_date: 2019-05-18 url: https://balkanruby.com/ twitter: balkanruby video_link: https://www.youtube.com/playlist?list=PLAkGYJoUfB0vutEvm7Z2dcrxbtAQfPUSp - name: Pivorak Conf 3.0 location: Lviv, Ukraine start_date: 2019-05-24 end_date: 2019-05-24 url: https://pivorak.com/ twitter: pivorakmeetup video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu-hLU4bl6xn7J7PjQ8_uzyr - name: Ruby Unconf 2019 location: Hamburg, Germany start_date: 2019-05-25 end_date: 2019-05-26 url: http://rubyunconf.eu twitter: RubyUnconfEU video_link: https://www.youtube.com/playlist?list=PLvpu5WTDxTKWPJMPTC33amjQnl6sAEEvH - name: Saint P Rubyconf 2019 location: Saint Petersburg, Russia start_date: 2019-06-01 end_date: 2019-06-02 url: https://spbrubyconf.ru/ twitter: saintpruby video_link: https://www.youtube.com/watch?v=CjOwKbf8L3I - name: EuRuKo 2019 location: Rotterdam, Netherlands start_date: 2019-06-21 end_date: 2019-06-22 url: https://2019.euruko.org twitter: euruko video_link: https://www.youtube.com/channel/UCWcOB8yVZDoPGdbvq8HR6IQ/videos - name: Brighton Ruby 2019 location: Brighton, UK start_date: 2019-07-05 end_date: 2019-07-05 url: https://brightonruby.com/2019 twitter: brightonruby video_link: https://brightonruby.com/2019/ - name: RubyConf Kenya 2019 location: Nairobi, Kenya start_date: 2019-07-25 end_date: 2019-07-27 url: http://rubyconf.nairuby.org/2019 twitter: nairubyke - name: RubyConf Taiwan 2019 location: Taipei, Taiwan start_date: 2019-07-26 end_date: 2019-07-27 url: https://2019.rubyconf.tw twitter: rubyconftw video_link: https://www.youtube.com/playlist?list=PLhKZ4RWngmpBgD6t068O_EZ4grSlUtl3Y - name: Southeast Ruby 2019 location: Nashville, TN start_date: 2019-08-01 end_date: 2019-08-02 url: https://southeastruby.com/ twitter: southeastruby - name: DeccanRubyConf 2019 location: Pune, India start_date: 2019-08-10 end_date: 2019-08-10 url: https://www.deccanrubyconf.org/ twitter: deccanrubyconf - name: Grill.RB 2019 location: Wrocław, Poland start_date: 2019-08-31 end_date: 2019-09-01 url: http://grillrb.com twitter: grill_rb video_link: https://www.youtube.com/playlist?list=PLDraF2Fjmu8WDwr5nInlqNzeiBk9sIsCt - name: RubyConf TH 2019 location: Bangkok, Thailand start_date: 2019-09-06 end_date: 2019-09-07 url: https://rubyconfth.com/past/2019 twitter: rubyconfth video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIazzAKhtGxJvYCPCgP8HiB5k - name: RubyC 2019 location: Kyiv, Ukraine start_date: 2019-09-14 end_date: 2019-09-15 url: https://rubyc.eu/ twitter: rubyc_eu video_link: https://www.youtube.com/playlist?list=PLmEf5ppiRneTkaPA4fz6KBQKq-jAvTRkb - name: RubyConf Colombia 2019 location: Medellín, Colombia start_date: 2019-09-20 end_date: 2019-09-21 url: https://rubyconf.co twitter: rubyconfco - name: RubyRussia 2019 location: Moscow, Russia start_date: 2019-09-28 end_date: 2019-09-28 url: https://rubyrussia.club/en twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeP3xDhqfTVCXZd8_L07QZ2c - name: RubyConf Indonesia 2019 location: Jakarta, Indonesia start_date: 2019-09-29 end_date: 2019-09-29 url: https://ruby.id/conf/2019/ twitter: rubyconfid - name: Ancient City Ruby 2019 location: Jacksonville Beach, FL start_date: 2019-10-03 end_date: 2019-10-04 url: http://ancientcityruby.com/ twitter: ancientcityruby video_link: https://www.youtube.com/playlist?list=PLrjohaqTgNJODBm0-VFsXvUFx1oidLyKa - name: Pivorak Conf 4.0 location: Lviv, Ukraine start_date: 2019-10-18 end_date: 2019-10-19 url: https://pivorak.com/ twitter: pivorakmeetup video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu_hJOA1zMpCliWx5YB2a3vP - name: SolidusConf 2019 location: Salt Lake City, UT start_date: 2019-10-21 end_date: 2019-10-24 url: http://conf.solidus.io twitter: solidusIO video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyaJKKOulAmyi-z323OPY5mW - name: Kiwi Ruby 2019 location: Wellington, New Zealand start_date: 2019-11-01 end_date: 2019-11-01 url: https://kiwi.ruby.nz twitter: kiwirubyconf - name: RubyWorld Conference 2019 location: Matsue, Japan start_date: 2019-11-07 end_date: 2019-11-08 url: https://2019.rubyworld-conf.org/en/ twitter: rubyworldconf - name: RubyConf 2019 location: Nashville, TN start_date: 2019-11-18 end_date: 2019-11-20 url: https://rubyconf.org twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZDE8nFrKaqkpd-XK4huygU - name: RubyConf Brazil 2019 location: São Paulo, Brazil start_date: 2019-11-28 end_date: 2019-11-29 url: https://callforpapers.locaweb.com.br/events/rubyconf-2019 twitter: rubyconfbr - name: Birmingham on Rails 2020 location: Birmingham, AL start_date: 2020-01-31 end_date: 2020-01-31 url: http://birminghamonrails.com twitter: bhmonrails video_link: https://www.youtube.com/playlist?&list=PLE7tQUdRKcyYC2lZzwTvEeJXghm4Ym4ZX - name: Rubyfuza 2020 location: Cape Town, South Africa start_date: 2020-02-06 end_date: 2020-02-08 url: https://www.rubyfuza.org twitter: rubyfuza - name: Paris.rb Conf 2020 location: Paris, France url: https://2020.rubyparis.org/ start_date: 2020-02-18 end_date: 2020-02-19 twitter: parisrb video_link: https://www.youtube.com/playlist?list=PLjyiiigeVQV-rqM4LD2SUbUfxXLuta1yU - name: RubyConf AU 2020 location: Melbourne, Australia url: https://www.rubyconf.org.au/2020 start_date: 2020-02-20 end_date: 2020-02-21 twitter: rubyconf_au video_link: https://www.youtube.com/playlist?list=PL9_jjLrTYxc1G0L8h-rMtO3fBSi4PJK26 - name: wroclove.rb 2020 location: Wrocław, Poland start_date: 2020-03-20 end_date: 2020-03-22 url: https://2020.wrocloverb.com twitter: wrocloverb status: Cancelled - name: Ruby Retreat NZ 2020 location: Mt Cheeseman, near Christchurch, New Zealand url: https://retreat.ruby.nz start_date: 2020-03-27 end_date: 2020-03-30 twitter: RubyNewZealand status: Cancelled - name: Ruby for Good by the Bay 2020 location: Sausalito, CA start_date: 2020-04-03 end_date: 2020-04-05 url: https://rubybythebay.org/ twitter: rubyforgood - name: Ruby Wine 2.0 location: Online start_date: 2020-04-04 end_date: 2020-04-04 url: https://www.rubywine.org twitter: rubymeditation - name: RubyConf India 2020 location: Goa, India start_date: 2020-04-25 end_date: 2020-04-26 url: https://rubyconfindia.org twitter: rubyconfindia status: Cancelled # RailsConf 2020.2 Couch Edition - name: RailsConf 2020 location: Online start_date: 2020-05-05 end_date: 2020-05-05 url: https://railsconf.com/ twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZ-TzxlxdLvh6tDUfZHqm76 - name: Balkan Ruby 2020 location: Sofia, Bulgaria start_date: 2020-05-15 end_date: 2020-05-16 url: https://balkanruby.com twitter: balkanruby status: Cancelled - name: Pivorak Conf 5.0 location: Online start_date: 2020-05-22 end_date: 2020-05-22 url: https://pivorak.com/ twitter: pivorakmeetup video_link: https://www.youtube.com/playlist?list=PLa4SYMEyNCu86K63M_slCEVVNTc1QAUWm - name: Ruby Unconf 2020 location: Hamburg, Germany start_date: 2020-06-06 end_date: 2020-06-07 url: https://2020.rubyunconf.eu/ twitter: rubyunconfeu status: Cancelled - name: Saint P Rubyconf 2020 location: Saint Petersburg, Russia start_date: 2020-06-06 end_date: 2020-06-07 url: https://spbrubyconf.ru/ twitter: saintpruby status: Cancelled - name: Brighton Ruby 2020 location: Online start_date: 2020-07-03 end_date: 2020-07-03 url: https://brightonruby.com/2020 twitter: brightonruby video_link: https://brightonruby.com/2020/ - name: RubyNess 2020 location: Inverness, Scotland start_date: 2020-07-16 end_date: 2020-07-17 url: https://rubyness.org/ twitter: rubynessconf status: Cancelled - name: RubyConfBY 2020 location: Online start_date: 2020-07-18 end_date: 2020-07-19 url: https://rubyconference.by/ twitter: RubyConfBY video_link: https://www.youtube.com/playlist?list=PLpVeA1tdgfCCle4AS77lvMYxg2Eqkd5dT - name: NoRuKo 2020 location: Online start_date: 2020-08-21 end_date: 2020-08-21 url: https://www.noruko.org twitter: amsrb video_link: https://www.youtube.com/playlist?list=PL9_A7olkztLlmJIAc567KQgKcMi7-qnjg - name: RubyKaigi 2020 Takeout location: Online start_date: 2020-09-04 end_date: 2020-09-05 url: https://rubykaigi.org/2020-takeout twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yZeLpdOLhYwORIF9UjBAFHw - name: RubyC 2020 location: Kyiv, Ukraine start_date: 2020-09-12 end_date: 2020-09-13 url: https://rubyc.eu/ twitter: rubyc_eu status: Cancelled - name: rubyday 2020 location: Online start_date: 2020-09-16 end_date: 2020-09-16 url: https://2020.rubyday.it twitter: rubydayit video_link: https://www.youtube.com/playlist?list=PLWK9j6ps_unl0S5Xmi6FVfDLFUkntQTfK - name: Kaigi on Rails 2020 location: Tokyo, Japan status: Cancelled start_date: 2020-09-28 end_date: 2020-09-29 url: https://kaigionrails.org/2020 twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails - name: Kaigi on Rails 2020 - Stay Home Edition location: Online start_date: 2020-10-03 end_date: 2020-10-03 url: https://kaigionrails.org/2020 twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails - name: RubyConf TH 2020 location: Bangkok, Thailand start_date: 2020-10-16 end_date: 2020-10-17 url: https://rubyconfth.com/ twitter: rubyconfth status: Cancelled - name: ROSSConf 2020 location: Online start_date: 2020-10-23 end_date: 2020-10-23 url: https://www.rossconf.io/event/remote/ twitter: rossconf video_link: https://www.youtube.com/playlist?list=PL9_A7olkztLkFMYU2ZgpL5XZ6UKlqFZrB - name: RubyRussia 2020 location: Online start_date: 2020-11-13 end_date: 2020-11-15 url: https://rubyrussia.club twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeO_YkVRot6JOLgTVSH9uUEB - name: RubyConf 2020 location: Houston, TX start_date: 2020-11-17 end_date: 2020-11-19 url: https://rubyconf.org twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0cyDs1ZwFLzlfQqvkDKt17N - name: RubyWorld Conference 2020 location: Online start_date: 2020-12-17 end_date: 2020-12-17 url: https://2020.rubyworld-conf.org/en/ twitter: rubyworldconf video_link: https://www.youtube.com/watch?v=2fldr2HcuVw - name: rubyday 2021 location: Online start_date: 2021-04-07 end_date: 2021-04-07 url: https://2021.rubyday.it twitter: rubydayit - name: RailsConf 2021 location: Online start_date: 2021-04-12 end_date: 2021-04-15 url: https://railsconf.com/ twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0c8N1-PPyiQxlHNzJIzyJv6 - name: EuRuKo 2021 location: Online start_date: 2021-05-28 end_date: 2021-05-29 url: https://2021.euruko.org twitter: euruko video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRyknRwEUrg5o491KomjkNU16 - name: Saint P Rubyconf 2021 location: Saint Petersburg, Russia start_date: 2021-06-05 end_date: 2021-06-05 url: https://spbrubyconf.ru/ twitter: saintpruby video_link: https://www.youtube.com/watch?v=MIX8S3n9Nwc - name: EMEA on Rails 2021 location: Online start_date: 2021-06-09 end_date: 2021-06-09 url: https://www.emeaonrails.com/ twitter: emeaonrails - name: RubyConf Brazil 2021 location: Online start_date: 2021-07-29 end_date: 2021-07-30 url: https://online.rubyconf.com.br/ twitter: rubyconfbr - name: African Ruby Mini-Conference 2021 location: Online start_date: 2021-08-12 end_date: 2021-08-12 url: http://conference.nairuby.org/ twitter: NairubyKE video_link: https://www.youtube.com/playlist?list=PLb6Zr8jHuhjz_v8223h1fWpCJjzy87iRZ - name: RubyKaigi 2021 Takeout location: Online start_date: 2021-09-09 end_date: 2021-09-11 url: https://rubykaigi.org/2021-takeout twitter: rubykaigi video_link: https://www.youtube.com/playlist?list=PLbFmgWm555yYgc4sx2Dkb7WWcfflbt6AP - name: RubyRussia 2021 location: Online start_date: 2021-09-24 end_date: 2021-09-25 url: https://rubyrussia.club/ twitter: railsclub_ru video_link: https://www.youtube.com/playlist?list=PLiWUIs1hSNeMfiEGak_zwF_ULP8Rc6HcL - name: Kaigi on Rails 2021 location: Online start_date: 2021-10-22 end_date: 2021-10-23 url: https://kaigionrails.org/2021 twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails - name: RubyConf 2021 location: Denver, CO start_date: 2021-11-08 end_date: 2021-11-10 url: https://rubyconf.org twitter: rubyconf video_link: https://www.youtube.com/watch?v=paZ5_3F22V8&list=PLbHJudTY1K0f0oMhWtY-UyzOb7tUlaHps - name: Sin City Ruby 2022 location: Las Vegas, NV start_date: 2022-03-24 end_date: 2022-03-25 url: https://www.sincityruby.com - name: RailsConf 2022 location: Portland, OR start_date: 2022-05-17 end_date: 2022-05-19 url: https://railsconf.org twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyb2Mjtd1RBjeP3Jt9RukU7G - name: Brighton Ruby 2022 location: Brighton, UK start_date: 2022-06-30 end_date: 2022-06-30 url: https://brightonruby.com/2022 twitter: brightonruby video_link: https://brightonruby.com/2022/ - name: RubyConf India 2022 location: Pune, India start_date: 2022-08-27 end_date: 2022-08-27 url: https://rubyconf.in/ twitter: rubyconfindia - name: Rails Camp West 2022 location: Diablo Lake, WA start_date: 2022-08-30 end_date: 2022-09-02 url: https://west.railscamp.us/2022 twitter: railscamp_usa - name: RubyKaigi 2022 location: Mie, Japan start_date: 2022-09-08 end_date: 2022-09-10 url: https://rubykaigi.org/2022 twitter: rubykaigi - name: wroclove.rb 2022 location: Wrocław, Poland start_date: 2022-09-16 end_date: 2022-09-18 url: https://2022.wrocloverb.com twitter: wrocloverb video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDWafhnWni-CwHkPJJuc0e5 - name: The Rails SaaS Conference 2022 location: Los Angeles, CA start_date: 2022-10-06 end_date: 2022-10-07 url: https://railssaas.com/ - name: EuRuKo 2022 location: Helsinki, Finland start_date: 2022-10-13 end_date: 2022-10-14 url: https://2022.euruko.org twitter: euruko video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRykcraQ1b6tT5ozKPeK-Jttq - name: Kaigi on Rails 2022 location: Online start_date: 2022-10-21 end_date: 2022-10-22 url: https://kaigionrails.org/2022 twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails - name: RubyConf 2022 Mini location: Providence, RI start_date: 2022-11-15 end_date: 2022-11-17 url: https://www.rubyconfmini.com twitter: rubyconfmini video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZYz0O3d9ZDdo0-BkOWhrSk - name: RubyConf 2022 location: Houston, TX start_date: 2022-11-29 end_date: 2022-12-01 url: https://rubyconf.org/ twitter: rubyconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyZYz0O3d9ZDdo0-BkOWhrSk - name: RubyConf TH 2022 location: Bangkok, Thailand start_date: 2022-12-09 end_date: 2022-12-10 url: https://rubyconfth.com/past/2022 twitter: rubyconfth video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIaxpMTv9dnWk3cq61xJcE2Pv announced_on: 2022-07-18 cfp_link: https://papercall.io/rubyconfth2022 cfp_open_date: 2022-08-16 cfp_close_date: 2022-09-30 - name: Ruby on Rails Global Summit 2023 location: Online start_date: 2023-01-24 end_date: 2023-01-25 url: https://events.geekle.us/ruby/ twitter: geekleofficial - name: RubyConf AU 2023 location: Melbourne, Australia start_date: 2023-02-20 end_date: 2023-02-21 url: https://www.rubyconf.org.au twitter: rubyconf_au - name: RailsConf 2023 location: Atlanta, Georgia start_date: 2023-04-24 end_date: 2023-04-26 url: https://railsconf.org twitter: railsconf video_link: https://www.youtube.com/playlist?list=PLE7tQUdRKcyao1oqQA8dwG_uOk3-QZziO - name: RubyKaigi 2023 location: Nagano, Japan start_date: 2023-05-11 end_date: 2023-05-13 url: https://rubykaigi.org/2023 twitter: rubykaigi reg_phrase: Registration open - name: The Rails SaaS Conference 2023 location: Athens, Greece start_date: 2023-06-01 end_date: 2023-06-02 url: https://railssaas.com/ twitter: railssaas - name: Blue Ridge Ruby 2023 location: Asheville, NC start_date: 2023-06-08 end_date: 2023-06-09 url: https://blueridgeruby.com twitter: blueridgeruby - name: Ruby Unconf 2023 location: Hamburg, Germany start_date: 2023-06-10 end_date: 2023-06-11 url: https://2023.rubyunconf.eu twitter: rubyunconfeu - name: rubyday 2023 location: Verona, Italy start_date: 2023-06-16 end_date: 2023-06-16 url: https://2023.rubyday.it twitter: rubydayit - name: Brighton Ruby 2023 location: Brighton, UK start_date: 2023-06-30 end_date: 2023-06-30 url: https://brightonruby.com/2023/ video_link: https://brightonruby.com/2023/ twitter: brightonruby mastodon: https://ruby.social/@brightonruby - name: Ruby Warsaw Community Conference 2023 Summer Edition location: Warsaw, Poland start_date: 2023-07-21 end_date: 2023-07-21 url: https://www.rubycommunityconference.com/summer2023.html twitter: visualitypl video_link: https://www.youtube.com/playlist?list=PLvMNoWK93wtmlQyKf59wu0IZk9N7ZpWpJ - name: Ruby for Good 2023 location: Washington, DC start_date: 2023-07-27 end_date: 2023-07-30 url: https://rubyforgood.org/events twitter: rubyforgood - name: RubyConf China 2023 location: Shanghai, China start_date: 2023-08-19 end_date: 2023-08-20 url: https://www.rubyconfchina.org - name: RubyConf India 2023 location: Pune, India start_date: 2023-08-26 end_date: 2023-08-27 url: https://rubyconf.in/ twitter: rubyconfindia reg_phrase: Buy tickets! - name: Osaka Ruby Kaigi 03 location: Osaka, Japan start_date: 2023-09-09 end_date: 2023-09-09 url: https://regional.rubykaigi.org/osaka03/ twitter: rubykansai - name: wroclove.rb 2023 location: Wrocław, Poland start_date: 2023-09-15 end_date: 2023-09-17 url: https://2023.wrocloverb.com twitter: wrocloverb video_link: https://www.youtube.com/playlist?list=PLoGBNJiQoqRDwTvPjY1F_7ccYO7O26RJ9 - name: Rails Camp West 2023 location: North Shore O’ahu, Hawaii, HI start_date: 2023-09-15 end_date: 2023-09-18 url: https://west.railscamp.us/2023 twitter: railscamp_usa - name: EuRuKo 2023 location: Vilnius, Lithuania start_date: 2023-09-21 end_date: 2023-09-23 url: https://2023.euruko.org twitter: euruko video_link: https://www.youtube.com/playlist?list=PLZW-kXE0oRyljniGHqYqtQVIXoI4M97ck - name: Friendly.rb 2023 location: Bucharest, Romania start_date: 2023-09-27 end_date: 2023-09-28 url: https://friendlyrb.com/ twitter: friendlyrb mastodon: https://ruby.social/@friendlyrb - name: RubyRussia 2023 location: Online start_date: 2023-09-30 end_date: 2023-09-30 url: https://rubyrussia.club/ twitter: railsclub_ru video_link: https://www.youtube.com/watch?v=1bN2uBDylQU - name: Rails World 2023 location: Amsterdam, Netherlands start_date: 2023-10-05 end_date: 2023-10-06 url: https://rubyonrails.org/world/2023 twitter: rails video_link: https://www.youtube.com/playlist?list=PLHFP2OPUpCeY9IX3Ht727dwu5ZJ2BBbZP - name: Rocky Mountain Ruby 2023 location: Boulder, CO start_date: 2023-10-05 end_date: 2023-10-06 url: https://2023.rockymtnruby.dev mastodon: https://ruby.social/@rockymntruby - name: RubyConf TH 2023 location: Bangkok, Thailand start_date: 2023-10-06 end_date: 2023-10-07 url: https://rubyconfth.com/past/2023/ twitter: rubyconfth mastodon: https://ruby.social/@rubyconfth cfp_open_date: 2023-04-03 cfp_close_date: 2023-06-04 cfp_link: https://www.papercall.io/rubyconfth2023 video_link: https://www.youtube.com/playlist?list=PLM_LdV8tMIay0GaJcCHegGyk0MGyQIVA6 announced_on: 2023-03-31 - name: Ruby Retreat 2023 location: Mount Cheeseman, Aotearoa, New Zealand start_date: 2023-10-27 end_date: 2023-10-30 url: https://retreat.ruby.nz - name: Kaigi on Rails 2023 location: Tokyo, Japan start_date: 2023-10-27 end_date: 2023-10-28 url: https://kaigionrails.org/2023/ twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails - name: RubyWorld Conference 2023 location: Matsue, Japan start_date: 2023-11-09 end_date: 2023-11-10 url: http://2023.rubyworld-conf.org/en/ twitter: rubyworldconf - name: RubyConf 2023 location: San Diego, CA start_date: 2023-11-13 end_date: 2023-11-15 url: https://rubyconf.org twitter: rubyconf mastodon: https://ruby.social/@rubyconf - name: Helvetic Ruby 2023 location: Bern, Switzerland start_date: 2023-11-24 end_date: 2023-11-24 url: https://helvetic-ruby.ch/2023 twitter: helvetic_ruby mastodon: https://ruby.social/@helvetic_ruby video_link: https://www.youtube.com/playlist?list=PL4jngagx9f7TIyNkSkS15oDrVPCa7LXsT - name: RubyConf Taiwan 2023 location: Taipei, Taiwan start_date: 2023-12-15 end_date: 2023-12-16 twitter: rubyconftw url: https://2023.rubyconf.tw cfp_open_date: 2023-08-03 cfp_close_date: 2023-10-20 cfp_link: https://cfp.rubyconf.tw/activities/2023 - name: Ruby Warsaw Community Conference 2024 Winter Edition location: Warsaw, Poland start_date: 2024-02-02 end_date: 2024-02-02 url: https://www.rubycommunityconference.com/winter2024 twitter: visualitypl - name: Ruby devroom at FOSDEM 2024 location: Brussels, Belgium start_date: 2024-02-03 end_date: 2024-02-04 twitter: rubybelgium url: https://fosdem.rubybelgium.be cfp_close_date: 2023-12-01 cfp_link: https://pretalx.fosdem.org/fosdem-2024/cfp - name: Sin City Ruby 2024 location: Las Vegas, NV start_date: 2024-03-21 end_date: 2024-03-22 url: https://www.sincityruby.com - name: Tropical.rb 2024 location: São Paulo, Brazil start_date: 2024-04-04 end_date: 2024-04-05 url: https://www.tropicalrb.com/ twitter: tropical_rb mastodon: https://ruby.social/@tropicalrb cfp_open_date: 2023-11-28 cfp_close_date: 2024-01-10 cfp_link: https://www.papercall.io/tropical-rb - name: Ruby in Common 2024 location: Sydney, Australia start_date: 2024-04-10 end_date: 2024-04-10 url: https://rubyincommon.org/ - name: RubyConf AU 2024 location: Sydney, Australia start_date: 2024-04-11 end_date: 2024-04-12 url: https://rubyconf.org.au/ twitter: rubyconf_au cfp_open_date: 2023-11-14 cfp_close_date: 2024-01-12 cfp_link: https://sessionize.com/rubyconf-au-2024 - name: wroclove.rb 2024 location: Wrocław, Poland start_date: 2024-04-12 end_date: 2024-04-14 url: https://2024.wrocloverb.com twitter: wrocloverb mastodon: https://ruby.social/@wrocloverb/ cfp_open_date: 2023-12-11 cfp_close_date: 2024-01-31 cfp_link: https://forms.gle/bgTVhWZzjRV74F1x7 - name: Balkan Ruby 2024 location: Sofia, Bulgaria start_date: 2024-04-26 end_date: 2024-04-27 url: https://balkanruby.com/2024 twitter: balkanruby cfp_open_date: 2023-11-20 cfp_close_date: 2024-02-02 cfp_link: https://forms.gle/NJY9PJWpud39ZQAr8 - name: RailsConf 2024 location: Detroit, MI start_date: 2024-05-07 end_date: 2024-05-09 url: https://www.railsconf.com twitter: railsconf mastodon: https://ruby.social/@railsconf cfp_open_date: 2024-01-24 cfp_close_date: 2024-02-13 cfp_link: https://sessionize.com/railsconf2024 video_link: https://www.youtube.com/playlist?list=PLbHJudTY1K0chrs_E_XFz2pOJ3d8jCayh - name: RubyKaigi 2024 location: Naha, Okinawa, Japan start_date: 2024-05-15 end_date: 2024-05-17 url: https://rubykaigi.org/2024 twitter: rubykaigi mastodon: https://ruby.social/@rubykaigi cfp_open_date: 2023-12-25 cfp_close_date: 2024-01-31 cfp_link: https://cfp.rubykaigi.org/events/2024 - name: Helvetic Ruby 2024 location: Zurich, Switzerland start_date: 2024-05-17 end_date: 2024-05-17 url: https://helvetic-ruby.ch/2024 twitter: helvetic_ruby mastodon: https://ruby.social/@helvetic_ruby cfp_open_date: 2024-01-19 cfp_close_date: 2024-02-25 cfp_link: https://helvetic-ruby.ch/call-for-speakers video_link: https://www.youtube.com/playlist?list=PL4jngagx9f7RGaAjXE0PR3z_jsA9cyCji - name: Blue Ridge Ruby 2024 location: Asheville, NC start_date: 2024-05-30 end_date: 2024-05-31 url: https://blueridgeruby.com twitter: blueridgeruby mastodon: https://ruby.social/@blueridgeruby cfp_open_date: 2024-01-18 cfp_close_date: 2024-03-01 cfp_link: https://blueridgeruby.com/cfp - name: Ruby for Good 2024 location: Washington, DC start_date: 2024-05-30 end_date: 2024-06-02 url: https://rubyforgood.org/events twitter: rubyforgood - name: rubyday 2024 location: Verona, Italy start_date: 2024-05-31 end_date: 2024-05-31 url: https://2024.rubyday.it twitter: rubydayit cfp_open_date: 2023-11-03 cfp_close_date: 2024-01-31 cfp_link: https://2024.rubyday.it/welcome/cfp.html - name: Ruby Unconf 2024 location: Hamburg, Germany start_date: 2024-06-08 end_date: 2024-06-09 url: https://rubyunconf.eu twitter: rubyunconfeu mastodon: https://ruby.social/@rubyunconf - name: Baltic Ruby 2024 location: Malmö, Sweden start_date: 2024-06-13 end_date: 2024-06-15 url: https://balticruby.org/archive/2024 twitter: balticruby cfp_open_date: 2024-02-26 cfp_close_date: 2024-04-07 cfp_link: https://www.papercall.io/balticruby video_link: https://balticruby.org/archive/2024/recordings - name: Brighton Ruby 2024 location: Brighton, UK start_date: 2024-06-28 end_date: 2024-06-28 url: https://brightonruby.com twitter: brightonruby mastodon: https://ruby.social/@brightonruby cfp_open_date: 2024-01-21 cfp_close_date: 2024-02-29 cfp_link: https://forms.reform.app/goodscary/brighton-ruby-2024-cfp/gci0d6 - name: Ruby Warsaw Community Conference 2024 Summer Edition location: Warsaw, Poland start_date: 2024-07-19 end_date: 2024-07-19 url: https://www.rubycommunityconference.com/summer2024 twitter: visualitypl - name: RedDotRubyConf 2024 location: Singapore start_date: 2024-07-25 end_date: 2024-07-26 url: https://reddotrubyconf.com twitter: reddotrubyconf mastodon: https://ruby.social/@reddotrubyconf cfp_link: https://reddotrubyconf.com/papers/new cfp_open_date: 2024-03-22 cfp_close_date: 2024-06-01 - name: RubyConf Africa 2024 location: Nairobi, Kenya start_date: 2024-07-26 end_date: 2024-07-27 url: https://rubyconf.africa/ twitter: ruby_african cfp_open_date: 2024-03-20 cfp_close_date: 2024-07-20 cfp_link: https://www.papercall.io/rubyconfafrica2024 - name: Madison+ Ruby 2024 location: Madison, WI start_date: 2024-08-01 end_date: 2024-08-02 url: https://madisonruby.com twitter: madisonruby cfp_open_date: 2024-03-15 cfp_close_date: 2024-04-30 cfp_link: https://cfp.madisonruby.com/events/2024/ announced_on: 2023-11-14 - name: Osaka RubyKaigi 04 location: Osaka, Japan start_date: 2024-08-24 end_date: 2024-08-24 url: https://regional.rubykaigi.org/osaka04/ announced_on: 2024-03-28 - name: Rails Camp West 2024 location: Cascade, ID start_date: 2024-08-27 end_date: 2024-08-30 url: https://west.railscamp.us/2024 twitter: railscamp_usa announced_on: 2024-02-29 status: Cancelled - name: Fukuoka RubyistKaigi 04 location: Fukuoka, Japan start_date: 2024-09-07 end_date: 2024-09-07 url: https://regional.rubykaigi.org/fukuoka04/ announced_on: 2023-12-14 - name: EuRuKo 2024 location: Sarajevo, Bosnia and Herzegovina start_date: 2024-09-11 end_date: 2024-09-13 url: https://2024.euruko.org twitter: euruko mastodon: https://ruby.social/@Euruko cfp_open_date: 2024-01-12 cfp_close_date: 2024-04-15 cfp_link: https://www.papercall.io/euruko2024 announced_on: 2023-11-27 - name: Friendly.rb 2024 location: Bucharest, Romania start_date: 2024-09-18 end_date: 2024-09-19 url: https://friendlyrb.com/ twitter: friendlyrb mastodon: https://ruby.social/@friendlyrb cfp_open_date: 2024-03-29 cfp_close_date: 2024-07-01 cfp_link: https://friendlyrb.com/cfp announced_on: 2023-11-01 - name: Rails World 2024 location: Toronto, Canada start_date: 2024-09-26 end_date: 2024-09-27 url: https://rubyonrails.org/world/2024 twitter: rails video_link: https://www.youtube.com/playlist?list=PLHFP2OPUpCeb182aDN5cKZTuyjn3Tdbqx # Original CFP # cfp_open_date: 2024-02-05 # cfp_close_date: 2024-03-21 # cfp_link: https://sessionize.com/rails-world/ # Lightning Talk CFP cfp_open_date: 2024-08-30 cfp_close_date: 2024-09-10 cfp_link: https://docs.google.com/forms/d/e/1FAIpQLSdTKiwbhAo4leeOl-HPIG2gFVzvmWjEtBFV6mC4ueY2Gso44g/viewform announced_on: 2023-11-30 - name: RubyRussia 2024 location: Moscow, Russia start_date: 2024-10-02 end_date: 2024-10-02 url: https://rubyrussia.club/ twitter: railsclub_ru announced_on: 2024-09-12 - name: Matsue RubyKaigi 11 location: Matsue, Japan start_date: 2024-10-05 end_date: 2024-10-05 url: https://matsue.rubyist.net/matrk11/ announced_on: 2024-03-21 - name: Rocky Mountain Ruby 2024 location: Boulder, CO start_date: 2024-10-07 end_date: 2024-10-08 url: https://2024.rockymtnruby.dev twitter: rmrubyconf mastodon: https://ruby.social/@rockymntruby cfp_open_date: 2024-05-15 cfp_close_date: 2024-06-30 cfp_link: https://sessionize.com/rocky-mountain-ruby announced_on: 2024-04-17 - name: Rubyfuza 2024 location: Cape Town, South Africa start_date: 2024-10-17 end_date: 2024-10-18 url: https://www.rubyfuza.org twitter: rubyfuza cfp_open_date: 2023-12-05 cfp_close_date: 2024-08-10 cfp_link: https://www.papercall.io/rubyfuza-2024 status: Cancelled announced_on: 2023-10-18 - name: Ruby Retreat 2024 location: Warrnambool, VIC, Australia url: https://retreat.ruby.org.au/ start_date: 2024-10-18 end_date: 2024-10-21 announced_on: 2024-04-12 - name: Haggis Ruby 2024 location: Edinburgh, Scotland start_date: 2024-10-24 end_date: 2024-10-24 url: https://haggisruby.co.uk mastodon: https://ruby.social/@haggisruby announced_on: 2024-07-04 - name: Kaigi on Rails 2024 location: Tokyo, Japan start_date: 2024-10-25 end_date: 2024-10-26 url: https://kaigionrails.org/2024/ twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails cfp_open_date: 2024-07-01 cfp_close_date: 2024-07-31 cfp_link: https://cfp.kaigionrails.org/events/2024 announced_on: 2024-02-24 - name: RubyConf 2024 location: Chicago, IL start_date: 2024-11-13 end_date: 2024-11-15 url: https://rubyconf.org twitter: rubyconf mastodon: https://ruby.social/@rubyconf cfp_open_date: 2024-06-06 cfp_close_date: 2024-07-22 cfp_link: https://sessionize.com/rubyconf-2024/ announced_on: 2024-01-21 - name: RubyConf India 2024 location: Jaipur, India start_date: 2024-11-29 end_date: 2024-11-30 url: https://rubyconf.in twitter: rubyconfindia cfp_open_date: 2024-07-23 cfp_close_date: 2024-09-25 cfp_link: https://www.papercall.io/rubyconf-india-2024 announced_on: 2024-07-23 - name: RubyConf China 2024 location: Guangzhou, China start_date: 2024-11-30 end_date: 2024-12-01 url: https://www.rubyconfchina.org announced_on: 2024-07-17 - name: RubyWorld Conference 2024 location: Matsue, Japan start_date: 2024-12-05 end_date: 2024-12-06 url: https://2024.rubyworld-conf.org/en/ twitter: rubyworldconf announced_on: 2024-05-29 - name: Ruby Banitsa Conf 2024 location: Sofia, Bulgaria start_date: 2024-12-07 end_date: 2024-12-07 url: https://conf.rubybanitsa.com twitter: rubybanitsa announced_on: 2024-10-10 - name: Tokyo RubyKaigi 12 location: Tokyo, Japan start_date: 2025-01-18 end_date: 2025-01-18 url: https://regional.rubykaigi.org/tokyo12/ twitter: tokyork12 announced_on: 2024-11-17 - name: Ruby for Good - Ghent 2025 location: Ghent, Belgium start_date: 2025-02-03 end_date: 2025-02-05 url: https://RubyInGhent.org twitter: rubyforgood announced_on: 2024-12-02 - name: Ruby Community Conference 2025 Winter Edition location: Kraków, Poland start_date: 2025-02-28 end_date: 2025-02-28 url: https://www.rubycommunityconference.com twitter: visualitypl announced_on: 2024-11-19 - name: Tropical on Rails 2025 location: São Paulo, Brazil start_date: 2025-04-03 end_date: 2025-04-04 url: https://www.tropicalonrails.com/ twitter: tropicalonrails mastodon: https://ruby.social/@tropicalonrails announced_on: 2024-08-16 cfp_link: https://www.papercall.io/tropicalonrails cfp_open_date: 2024-11-26 cfp_close_date: 2025-01-14 - name: Sin City Ruby 2025 location: Las Vegas, NV start_date: 2025-04-10 end_date: 2025-04-11 url: https://www.sincityruby.com announced_on: 2024-11-14 - name: wroclove.rb 2025 location: Wrocław, Poland start_date: 2025-04-11 end_date: 2025-04-13 url: https://wrocloverb.com/ twitter: wrocloverb mastodon: https://ruby.social/@wrocloverb announced_on: 2024-12-10 cfp_open_date: 2025-01-20 cfp_close_date: 2025-02-13 cfp_link: https://docs.google.com/forms/d/e/1FAIpQLSdg-w3hF3V-Q7hNwXKzqEUv_y92oQaYWu4FSziFRhwEyMo3Hw/viewform - name: RubyKaigi 2025 location: Matsuyama, Ehime, Japan start_date: 2025-04-16 end_date: 2025-04-18 url: https://rubykaigi.org/2025 twitter: rubykaigi mastodon: https://ruby.social/@rubykaigi announced_on: 2024-05-18 # Original CFP: # cfp_open_date: 2024-12-14 # cfp_close_date: 2025-01-19 # cfp_link: https://cfp.rubykaigi.org/events/2025 # Lightning Talk CFP: cfp_open_date: 2025-03-07 cfp_close_date: 2025-03-30 cfp_link: https://cfp.rubykaigi.org/events/2025LT - name: Balkan Ruby 2025 location: Sofia, Bulgaria start_date: 2025-04-25 end_date: 2025-04-26 url: https://balkanruby.com twitter: balkanruby announced_on: 2024-04-28 cfp_link: https://forms.gle/Wzp4QvDzAiWVrB7d9 cfp_open_date: 2024-11-19 cfp_close_date: 2025-02-05 - name: Ruby Retreat 2025 location: Whangaparāoa, Auckland, New Zealand start_date: 2025-05-09 end_date: 2025-05-12 url: https://retreat.ruby.nz twitter: RubyNewZealand announced_on: 2024-10-19 - name: Helvetic Ruby 2025 location: Geneva, Switzerland start_date: 2025-05-22 end_date: 2025-05-23 url: https://helvetic-ruby.ch twitter: helvetic_ruby mastodon: https://ruby.social/@helvetic_ruby cfp_open_date: 2024-12-09 cfp_close_date: 2025-01-29 cfp_link: https://helvetic-ruby.ch/call-for-speakers announced_on: 2024-05-17 - name: Baltic Ruby 2025 location: Riga, Latvia start_date: 2025-06-12 end_date: 2025-06-14 url: https://balticruby.org twitter: balticruby mastodon: https://ruby.social/@balticruby announced_on: 2024-06-15 cfp_link: https://papercall.io/balticruby25 cfp_open_date: 2024-11-25 cfp_close_date: 2025-02-01 - name: Brighton Ruby 2025 location: Brighton, UK start_date: 2025-06-19 end_date: 2025-06-19 url: https://brightonruby.com twitter: brightonruby mastodon: https://ruby.social/@brightonruby announced_on: 2024-06-19 cfp_link: https://forms.reform.app/goodscary/lightning-talks-at-brighton-ruby-2025-cfp/gci0d6 cfp_open_date: 2025-03-10 cfp_close_date: 2025-03-31 - name: KansaiRubyKaigi08 location: Kyoto, Japan start_date: 2025-06-28 end_date: 2025-06-28 url: https://regional.rubykaigi.org/kansai08/ announced_on: 2025-01-15 cfp_open_date: 2025-02-06 cfp_close_date: 2025-05-07 cfp_link: https://forms.gle/TrTJs5c7iJf6LwKD6 - name: RailsConf 2025 location: Philadelphia, PA start_date: 2025-07-08 end_date: 2025-07-10 url: https://www.railsconf.org twitter: railsconf mastodon: https://ruby.social/@railsconf announced_on: 2024-12-20 cfp_open_date: 2025-01-31 cfp_close_date: 2025-02-28 cfp_link: https://sessionize.com/railsconf-2025 - name: RubyConf Africa 2025 location: Nairobi, Kenya start_date: 2025-07-18 end_date: 2025-07-19 url: https://rubyconf.africa/ twitter: ruby_african cfp_open_date: 2025-01-31 cfp_close_date: 2025-04-30 cfp_link: https://www.papercall.io/rubyconfafrica2025 announced_on: 2025-01-15 - name: PicoRuby Overflow Kaigi 2025 location: Osaka, Japan start_date: 2025-07-19 end_date: 2025-07-19 url: https://naniwarb.github.io/picorubyoverflowkaigi/ announced_on: 2025-05-30 cfp_open_date: 2025-05-30 cfp_close_date: 2025-06-15 cfp_link: https://forms.gle/1sMef6XjYAHFiCAU8 - name: RubyConf Taiwan x COSCUP 2025 location: Taipei, Taiwan start_date: 2025-08-09 end_date: 2025-08-10 url: https://2025.rubyconf.tw twitter: rubyconftw announced_on: 2025-04-15 cfp_open_date: 2025-04-19 cfp_close_date: 2025-05-10 cfp_link: https://pretalx.coscup.org/coscup-2025/cfp - name: Rails Camp West 2025 location: Kenai Lake, Alaska, USA start_date: 2025-08-18 end_date: 2025-08-21 url: https://west.railscamp.us/2025 twitter: railscamp_usa announced_on: 2024-12-02 - name: Rails at Scale Summit 2025 location: Amsterdam, Netherlands start_date: 2025-09-03 end_date: 2025-09-03 url: https://rubyonrails.org/world/2025/rails_at_scale twitter: rails announced_on: 2025-05-06 - name: Rails World 2025 location: Amsterdam, Netherlands start_date: 2025-09-04 end_date: 2025-09-05 url: https://rubyonrails.org/world/ twitter: rails announced_on: 2024-11-27 cfp_open_date: 2025-03-07 cfp_close_date: 2025-04-10 cfp_link: https://sessionize.com/rails-world-2025/ - name: XO Ruby Chicago 2025 location: Chicago, IL start_date: 2025-09-06 end_date: 2025-09-06 announced_on: 2025-07-29 url: https://xoruby.com/event/chicago/ cfp_open_date: 2025-07-29 cfp_close_date: 2025-08-13 cfp_link: https://www.xoruby.com/speak/ - name: Friendly.rb 2025 location: Bucharest, Romania start_date: 2025-09-10 end_date: 2025-09-11 url: https://friendlyrb.com/ twitter: friendlyrb mastodon: https://ruby.social/@friendlyrb announced_on: 2024-11-29 cfp_open_date: 2025-03-05 cfp_close_date: 2025-07-01 cfp_link: https://friendlyrb.com/cfp status: Tickets available - name: RubyConf India 2025 location: Jaipur, India start_date: 2025-09-12 end_date: 2025-09-13 url: https://rubyconf.in twitter: rubyconfindia cfp_open_date: 2025-05-22 cfp_close_date: 2025-07-15 cfp_link: https://www.papercall.io/rubyconf-india-2025 announced_on: 2025-05-22 - name: XO Ruby Atlanta 2025 location: Atlanta, GA start_date: 2025-09-13 end_date: 2025-09-13 announced_on: 2025-07-29 url: https://xoruby.com/event/atlanta/ cfp_open_date: 2025-07-29 cfp_close_date: 2025-08-20 cfp_link: https://www.xoruby.com/speak/ - name: EuRuKo 2025 location: Viana do Castelo, Portugal start_date: 2025-09-18 end_date: 2025-09-19 url: https://2025.euruko.org twitter: euruko mastodon: https://ruby.social/@euruko announced_on: 2024-11-29 cfp_open_date: 2025-03-14 cfp_close_date: 2025-04-10 cfp_link: https://papercall.io/euruko-2025 - name: XO Ruby New Orleans 2025 location: New Orleans, LA start_date: 2025-09-20 end_date: 2025-09-20 announced_on: 2025-07-29 url: https://xoruby.com/event/new-orleans/ cfp_open_date: 2025-07-29 cfp_close_date: 2025-08-27 cfp_link: https://www.xoruby.com/speak/ - name: Kaigi on Rails 2025 location: Tokyo, Japan start_date: 2025-09-26 end_date: 2025-09-27 url: https://kaigionrails.org/2025/ twitter: kaigionrails mastodon: https://ruby.social/@kaigionrails announced_on: 2024-10-26 cfp_open_date: 2025-06-01 cfp_close_date: 2025-06-30 cfp_link: https://kaigionrails.org/2025/cfp/ - name: Rocky Mountain Ruby 2025 location: Boulder, CO start_date: 2025-10-06 end_date: 2025-10-07 url: https://rockymtnruby.dev twitter: rmrubyconf mastodon: https://ruby.social/@rockymtnruby announced_on: 2024-10-08 cfp_open_date: 2025-05-30 cfp_close_date: 2025-06-30 cfp_link: https://sessionize.com/rocky-mountain-ruby-2025 - name: XO Ruby Portland 2025 location: Portland, OR start_date: 2025-10-11 end_date: 2025-10-11 announced_on: 2025-08-23 url: https://xoruby.com/event/portland/ - name: XO Ruby San Diego 2025 location: San Diego, CA start_date: 2025-10-18 end_date: 2025-10-18 announced_on: 2025-08-23 url: https://xoruby.com/event/san-diego/ - name: XO Ruby Austin 2025 location: Austin, TX start_date: 2025-10-25 end_date: 2025-10-25 announced_on: 2025-08-23 url: https://xoruby.com/event/austin/ - name: RubyWorld Conference 2025 location: Matsue, Japan start_date: 2025-11-06 end_date: 2025-11-07 url: https://2025.rubyworld-conf.org/en/ twitter: rubyworldconf announced_on: 2025-01-10 cfp_open_date: 2025-06-23 cfp_close_date: 2025-08-01 cfp_link: "https://2025.rubyworld-conf.org/en/news/2025/06/call-for-proposals/" - name: San Francisco Ruby Conference 2025 location: San Francisco, CA start_date: 2025-11-19 end_date: 2025-11-20 announced_on: 2025-05-29 url: https://sfruby.com cfp_open_date: 2025-06-04 cfp_close_date: 2025-07-13 cfp_link: https://cfp.sfruby.com - name: "tiny ruby #{conf}" location: Helsinki, Finland start_date: 2025-11-21 end_date: 2025-11-21 url: https://helsinkiruby.fi/tinyruby/ mastodon: https://ruby.social/@helsinkiruby announced_on: 2025-04-25 cfp_open_date: 2025-05-27 cfp_close_date: 2025-07-31 cfp_link: https://www.papercall.io/tinyruby reg_phrase: Tickets available - name: RubyConf TH 2026 location: Bangkok, Thailand start_date: 2026-01-31 end_date: 2026-02-01 url: https://rubyconfth.com twitter: rubyconfth announced_on: 2025-02-28 cfp_open_date: 2025-05-26 cfp_close_date: 2025-06-30 cfp_link: https://www.papercall.io/rubyconfth2026 - name: Ruby for Good - Belgium 2026 location: Ghent, Belgium start_date: 2026-02-02 end_date: 2026-02-04 url: https://rubyinghent.org announced_on: 2025-10-01 - name: RBQ Conf 2026 location: Austin, TX start_date: 2026-03-31 end_date: 2026-03-31 date_precision: month url: https://rbqconf.com announced_on: 2025-07-17 - name: Tropical on Rails 2026 location: São Paulo, Brazil start_date: 2026-04-09 end_date: 2026-04-10 url: https://www.tropicalonrails.com/ twitter: tropicalonrails mastodon: https://ruby.social/@tropicalonrails announced_on: 2025-04-30 cfp_link: https://cfp.tropicalonrails.com cfp_open_date: 2025-12-05 cfp_close_date: 2026-01-10 - name: wroclove.rb 2026 location: Wrocław, Poland start_date: 2026-04-17 end_date: 2026-04-19 url: https://wrocloverb.com/ twitter: wrocloverb mastodon: https://ruby.social/@wrocloverb announced_on: 2025-09-26 cfp_open_date: 2025-10-13 cfp_close_date: 2026-01-13 cfp_link: https://www.papercall.io/wrocloverb2026 - name: RubyKaigi 2026 location: Hakodate, Hokkaido, Japan start_date: 2026-04-22 end_date: 2026-04-24 url: https://rubykaigi.org twitter: rubykaigi mastodon: https://ruby.social/@rubykaigi announced_on: 2025-04-18 - name: Blue Ridge Ruby 2026 location: Asheville, NC start_date: 2026-04-30 end_date: 2026-05-01 url: https://blueridgeruby.com twitter: blueridgeruby mastodon: https://ruby.social/@blueridgeruby announced_on: 2025-12-12 - name: Rubycon 2026 location: Rimini, Italy start_date: 2026-05-08 end_date: 2026-05-08 announced_on: 2025-08-11 url: https://rubycon.it cfp_link: https://rubycon.it/cfp cfp_open_date: 2025-08-11 # cfp_close_date: TODO twitter: rubyconitaly mastodon: https://mastodon.social/@rubycon - name: Balkan Ruby 2026 location: Sofia, Bulgaria start_date: 2026-05-15 end_date: 2026-05-16 url: https://balkanruby.com twitter: balkanruby announced_on: 2025-04-27 - name: RubyConf Austria 2026 location: Vienna, Austria start_date: 2026-05-30 end_date: 2026-05-30 url: https://rubyconf.at announced_on: 2025-03-12 cfp_open_date: "2025-07-13" cfp_close_date: "2025-12-01" cfp_link: "https://www.papercall.io/rubyconfaustria2026" - name: Blastoff Rails 2026 location: Albuquerque, NM start_date: 2026-06-11 end_date: 2026-06-12 url: https://blastoffrails.com twitter: blastoffrails announced_on: 2025-07-09 cfp_open_date: 2025-09-15 cfp_close_date: 2026-01-10 cfp_link: https://www.papercall.io/blastoff - name: Baltic Ruby 2026 location: Hamburg, Germany start_date: 2026-06-12 end_date: 2026-06-13 url: https://balticruby.org twitter: balticruby mastodon: https://ruby.social/@balticruby announced_on: 2025-09-02 cfp_open_date: 2025-09-04 cfp_close_date: 2025-12-31 cfp_link: "https://www.papercall.io/balticruby2026" - name: RubyConf Africa 2026 location: Nairobi, Kenya start_date: 2026-08-21 end_date: 2026-08-22 url: https://rubyconf.africa/ twitter: ruby_african announced_on: 2025-11-06 cfp_open_date: 2025-11-20 cfp_close_date: 2026-03-11 cfp_link: https://www.papercall.io/ruby-conf-africa-2026 - name: Rails Camp West 2026 location: Otis, OR start_date: 2026-09-07 end_date: 2026-09-11 url: https://west.railscamp.us/2026 twitter: railscamp_usa announced_on: 2025-11-13 - name: Rails World 2026 location: Austin, TX start_date: 2026-09-22 end_date: 2026-09-25 url: https://rubyonrails.org/world/ twitter: rails announced_on: 2025-09-05 # cfp_open_date: 2025-03-07 # cfp_close_date: 2025-04-10 # cfp_link: https://sessionize.com/rails-world-2025/ - name: Helvetic Ruby 2026 location: Zürich, Switzerland start_date: 2026-11-19 end_date: 2026-11-20 announced_on: 2025-08-22 url: https://helvetic-ruby.ch mastodon: https://ruby.social/@helvetic_ruby - name: RubyConf 2026 location: United States # TODO: update once location is confirmed start_date: 2026-12-31 # TODO: update once dates are confirmed end_date: 2026-12-31 # TODO: update once dates are confirmed announced_on: 2024-05-07 url: https://rubycentral.org/news/announcing-railsconf-2025-and-a-new-chapter-for-ruby-central-events twitter: rubyconf date_precision: year mastodon: https://ruby.social/@rubyconf ================================================ FILE: _data/meetup_groups.yml ================================================ --- - id: aarhusrb name: aarhus.rb service: meetupdotcom - id: adelaiderb name: Ruby and Rails Adelaide service: meetupdotcom - id: african_ruby_community name: African Ruby Community service: meetupdotcom remove: - "ARC" - "(Zoom)" - id: aloharb name: aloha.rb service: meetupdotcom - id: amsterdam-rb name: Amsterdam.rb service: meetupdotcom - id: andalucia-rb name: Andalucia.rb service: ical timezone: Europe/Madrid ical_url: https://andalucia.onruby.eu/events.ics - id: tallinn-ruby-usergroup name: Tallinn Ruby Usergroup service: ical timezone: Europe/Tallinn ical_url: https://tallinn.ruby.ee/events.ics - id: arlington-ruby name: Arlington Ruby service: meetupdotcom - id: arquitetura-e-design-de-aplicacoes-ruby name: ada.rb service: meetupdotcom - id: athens-ruby-meetup name: Athens Ruby service: meetupdotcom - id: atlantaruby name: Atlanta Ruby service: meetupdotcom remove: - "[VIRTUAL] " - "[ATLRUG Virtual]" - "[ATLRUG]" - "The Atlanta Ruby Meetup Group" - id: aucklandruby name: Auckland Ruby service: meetupdotcom # NOTE: same events as austinrb # - id: austin-on-rails # name: Austin on Rails # service: meetupdotcom - id: austin-ruby-programming-study-group name: Austin Ruby Programming Study Group service: meetupdotcom - id: austinrb name: Austin.rb service: meetupdotcom - id: bangalore-ruby-users-group name: Bangalore Ruby Users Group service: meetupdotcom - id: bengaluru-ruby-users-group name: Bengaluru Ruby Users Group service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Iz1bCGzWjb6G2HI timezone: Asia/Kolkata - id: bangkok-rb name: Bangkok.rb service: meetupdotcom - id: barcelona-on-rails name: Barcelona on Rails service: meetupdotcom - id: barcelona-rb name: Barcelona.rb service: meetupdotcom - id: bathruby name: Bath Ruby User Group service: meetupdotcom - id: belfastruby name: BelfastRuby service: meetupdotcom - id: belfastruby name: Belfast Ruby service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-6rPmMIYodqbr6WA timezone: Europe/London - id: bmore-on-rails name: B'more on Rails service: meetupdotcom - id: bogota-ruby-meetup name: Ruby Bogotá service: meetupdotcom # - id: bostonrb # name: Boston Ruby Group # service: meetupdotcom - id: bostonrb name: Boston Ruby Group service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-O0xLKEqq4Q8vc8f timezone: America/New_York remove: - BostonRB # - id: boulder-denver-railsbridge # name: # service: meetupdotcom - id: boulder-ruby name: Boulder Ruby service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-B9LZxdgJiXBxezw timezone: America/Denver # - id: boulder_ruby_group # name: Boulder Ruby Group # service: meetupdotcom - id: brighton-ruby-group name: Brighton Ruby Group service: meetupdotcom - id: brisruby name: Brisbane Ruby service: meetupdotcom - id: brooklyn-rb name: brooklyn.rb service: meetupdotcom # - id: btownrb # name: # service: meetupdotcom - id: budapest-rb name: budapest.rb service: meetupdotcom - id: cali-ruby-meetup name: Cali Ruby service: meetupdotcom # - id: cambridge-ruby-user-group # name: # service: meetupdotcom - id: charlotte-rb name: Charlotte Ruby service: meetupdotcom - id: chicagoruby name: ChicagoRuby service: meetupdotcom exclude: - RubyConf # - id: christchurch-ruby-group # name: Christchurch Ruby Group # service: meetupdotcom - id: clevelandruby name: Cleveland Ruby Brigade service: meetupdotcom - id: cologne-rb name: Cologne.rb service: meetupdotcom remove: - "Ruby Usergroup: " - id: columbus-ruby-on-rails-mind-meld name: Columbus Ruby service: meetupdotcom - id: columbusrb name: Columbus Ruby Brigade service: meetupdotcom - id: copenhagen-ruby-brigade name: Copenhagen Ruby Brigade service: meetupdotcom # - id: dallasrb # name: Dallas Ruby Brigade # service: meetupdotcom - id: dcruby name: DC Ruby Users Group service: meetupdotcom - id: denhaagrb name: DenHaag.rb service: meetupdotcom - id: denver-rb name: Denver.rb service: meetupdotcom # - id: derailed # name: # service: meetupdotcom - id: drugpl name: Dolnośląska Grupa Użytkowników Ruby service: meetupdotcom # - id: dubai-ruby-on-rails-meetup # name: # service: meetupdotcom - id: dusseldorf-ruby-elixir-meetup name: Düsseldorf Ruby service: meetupdotcom filter: Ruby # - id: flexport-amsterdam-meetup-group # name: # service: meetupdotcom - id: frankfurt-ruby-meetup name: Frankfurt Ruby Meetup service: meetupdotcom - id: geneva-rb name: Geneva.rb service: meetupdotcom - id: got-rb name: Got.rb service: meetupdotcom - id: groningen-rb name: Groningen.rb service: meetupdotcom # - id: group-kazan-rb # name: # service: meetupdotcom # - id: houston-ruby-meetup-group # name: Houston Rails # service: meetupdotcom - id: houstonruby name: Houston Ruby service: meetupdotcom # - id: icruby # name: Iowa City Ruby # service: meetupdotcom # - id: id-ruby # name: Indonesia Ruby # service: meetupdotcom - id: indyrb name: Indianapolis Ruby Brigade service: meetupdotcom remove: - "The Indianapolis Ruby Brigade" - "Indy.rb" - id: israel-rb name: israel.rb service: meetupdotcom - id: istanbul-ruby-on-rails name: Istanbul Ruby on Rails service: meetupdotcom - id: jaipur-rb-ruby-users-group name: Jaipur.rb service: meetupdotcom - id: karlsruhe-rb name: Karlsruhe.rb service: meetupdotcom # - id: kcruby # name: Kansas City Ruby # service: meetupdotcom - id: kcruby name: Kansas City Ruby service: luma ical_url: https://api2.luma.com/ics/get?entity=calendar&id=cal-hlguC5XZPDfQzqv timezone: America/Chicago # - id: kharkiv-rb # name: # service: meetupdotcom - id: krakow-ruby-users-group name: Krakow Ruby Users Group (KRUG) service: meetupdotcom - id: krakow-ruby-users-group name: Krakow Ruby Users Group (KRUG) service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-EyyObsvyunM3PQP timezone: Europe/Warsaw - id: krugtvm name: Kerala Ruby User Group service: meetupdotcom - id: kw-ruby-on-rails name: KW Ruby service: meetupdotcom # - id: lambda-ruby # name: # service: meetupdotcom - id: laruby name: LA Ruby service: meetupdotcom # - id: las-palmas-ruby-on-rails # name: # service: meetupdotcom # - id: las-vegas-ruby-on-rails # name: Las Vegas Ruby User Group # service: meetupdotcom - id: lausannerb name: Lausanne.rb service: meetupdotcom - id: learn-ruby-in-dc name: Learn Ruby in DC! service: meetupdotcom # - id: leiden-rb # name: # service: meetupdotcom # - id: lodzrug # name: # service: meetupdotcom - id: london-learn-ruby name: London Learn Ruby service: meetupdotcom - id: london-ruby-user-group name: London Ruby User Group service: ical ical_url: https://lrug.org/meetings.ics timezone: Europe/London - id: lyonrb name: Lyon.rb service: meetupdotcom - id: madison-ruby name: Madison+ Ruby service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-LlD9HPh8QnHgqEQ timezone: America/Chicago - id: madrid-rb name: Madrid.rb service: ical timezone: Europe/Madrid default_location: Madrid, Spain ical_url: https://www.madridrb.com/events.ics - id: medellin-rb name: Medellín.rb service: meetupdotcom # # - id: meetup-group-etmwxpsm # name: Brno Ruby Stories # service: meetupdotcom - id: scotrug name: Scottish Ruby User Group service: meetupdotcom # - id: memocom-ruby-meetup # name: Memocom Ruby # service: meetupdotcom - id: mexico-on-rails name: México on Rails service: meetupdotcom - id: miamirb name: Miami Ruby Brigade service: meetupdotcom - id: modena-rb name: Modena.rb service: meetupdotcom - id: monterrey-ruby-meetup name: Monterrey Ruby Meetup service: meetupdotcom - id: montrealrb name: Montreal.rb service: meetupdotcom - id: mumbairb name: Mumbai.rb service: meetupdotcom - id: munich-rubyshift-ruby-user-group name: Munich Ruby User Group service: meetupdotcom - id: nantes-rb name: Nantes.rb service: meetupdotcom # - id: napoli-ruby-on-rails-meetup-group # name: Napoli Ruby on Rails # service: meetupdotcom - id: nashrb name: Nash.rb service: meetupdotcom - id: nepal-ruby-users-group name: Ruby Nepal service: meetupdotcom # - id: newcastleruby # name: Newcastle Ruby # service: meetupdotcom - id: nwrug name: North West Ruby User Group service: ical ical_url: https://nwrug.org/events.ics timezone: Europe/London default_location: Manchester, UK remove: - "NWRUG: " - id: nyc-on-rails name: NYC on Rails service: meetupdotcom - id: nyc-rb name: NYC.rb exclude: Rails Camp service: meetupdotcom exclude: - "Free Passes to DeveloperWeek 2025" - id: nyc-ruby-women name: NYC Ruby Women service: meetupdotcom - id: ocruby name: Orange County Ruby service: meetupdotcom exclude: Rails Camp remove: - "(OCRuby)" - "Orange County Ruby Users Group" - id: odense-rb name: odense.rb service: meetupdotcom - id: omaha-ruby-meetup name: Omaha Ruby service: meetupdotcom - id: orlando-ruby-elixir name: Orlando Ruby service: meetupdotcom filter: Ruby # - id: ottawaruby # name: Ottawa Ruby # service: meetupdotcom # - id: palmetto-ruby-meetup # name: Palmetto Ruby # service: meetupdotcom - id: paris-ruby-workshop name: Paris Ruby Workshop service: meetupdotcom exclude: - "(en ligne)" - id: paris_rb name: Paris.rb service: meetupdotcom remove: "ParisRb.new(:monthly, on: :first_tuesday)" - id: parisrb name: ParisRB.old service: meetupdotcom - id: phillyrb name: Philly.rb service: meetupdotcom remove: " - Global/Virtual" - id: polishrubyusergroup name: Polish Ruby User Group service: meetupdotcom timezone: Europe/Warsaw exclude: - Ruby Community Conference - Baltic Ruby remove: - (PLRUG) - id: portland-ruby-brigade name: Portland Ruby Brigade service: meetupdotcom - id: prug name: Poznań Ruby User Group service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Y0YsxgnzWReQXMG timezone: Europe/Warsaw remove: - PoznańRubyUserGroup - id: prague-ruby-meetup name: Prague Ruby service: meetupdotcom - id: praguerb name: Prague.rb service: meetupdotcom - id: pune-ruby-on-rails-meetup name: Pune Ruby on Rails service: meetupdotcom - id: punerubymeetup name: Pune Ruby Users Group service: meetupdotcom - id: punerubymeetup name: Pune Ruby Meetup service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-KTu2DlicAMuYZT1 timezone: Asia/Kolkata # - id: quillarb # name: # service: meetupdotcom # - id: rails-east # name: 'Ruby On Rails: East Coast' # service: meetupdotcom - id: rails-girls-bielsko-biala name: Rails Girls Bielsko-Biala service: meetupdotcom - id: rails-girls-buenos-aires name: Rails Girls Buenos Aires service: meetupdotcom - id: rails-girls-copenhagen name: Rails Girls Copenhagen service: meetupdotcom # - id: rails-girls-geneva # name: Rails Girls Geneva # service: meetupdotcom - id: rails-grills name: Rails Grills! service: meetupdotcom - id: rails-jobs name: Hire Ruby Engineers service: meetupdotcom # - id: rails-mn # name: # service: meetupdotcom # - id: rails-programming-in-thailand # name: BKK Rails # service: meetupdotcom - id: rails-taiwan name: Rails Taiwan service: meetupdotcom # - id: railsbridgechi # name: RailsBridge Chicago # service: meetupdotcom # - id: railsgirlsto # name: railsgirlsto # service: meetupdotcom - id: raleighrb name: Triangle.rb service: meetupdotcom - id: rhode-island-ruby-group name: Rhode Island Ruby Group service: meetupdotcom - id: robalos-rb name: Robalos.rb service: meetupdotcom - id: ror-bbsr name: Ruby on Rails Bhubaneswar service: meetupdotcom # - id: rorcommunity # name: Ruby on Rails Community # service: meetupdotcom - id: rorlab name: RORLAB service: meetupdotcom - id: rotterdam-rb name: Rotterdam.rb service: meetupdotcom - id: ruby-a-la-cluj name: Ruby a la Cluj service: meetupdotcom - id: ruby-az name: Ruby::AZ service: meetupdotcom # - id: ruby-geneve-rb # name: # service: meetupdotcom - id: ruby_fusion name: Ruby Fusion service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-HxTn4dLUlMlzEQX timezone: America/Denver - id: ruby-in-london name: Ruby in London service: meetupdotcom # - id: ruby-joinville # name: Ruby Joinville # service: meetupdotcom - id: ruby-lightning-to name: Ruby Lightning Talks T.O. service: meetupdotcom - id: ruby-loco name: Ruby LoCo service: meetupdotcom - id: ruby-lviv name: Lviv Ruby User Group service: meetupdotcom - id: ruby-lx name: Ruby on Rails Lisbon service: meetupdotcom - id: ruby-malaysia name: Ruby Malaysia service: meetupdotcom remove: - "We're Moving to Substack!" - id: ruby-meetup-oslo name: Ruby Meetup Oslo service: meetupdotcom - id: ruby-microservices name: Ruby Microservices service: meetupdotcom - id: ruby-mn name: ruby.mn service: meetupdotcom # - id: ruby-modularity-group # name: Ruby/Rails Modularity # service: meetupdotcom - id: ruby-montevideo name: Ruby Montevideo service: meetupdotcom - id: ruby-natal name: Ruby Natal service: meetupdotcom - id: ruby-novi-sad name: Ruby Novi Sad service: meetupdotcom # - id: ruby-nuby-info # name: Ruby Nuby™ # service: meetupdotcom - id: ruby-on-rails-bangalore name: Ruby on Rails Bangalore service: meetupdotcom - id: ruby-on-rails-bh name: Ruby On Rails Belo Horizonte service: meetupdotcom # - id: ruby-on-rails-latvia # name: Ruby on Rails Latvia # service: meetupdotcom - id: latviarb name: Latvian Ruby Community service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-2SEAz7RmwiOGpnu timezone: Europe/Riga # - id: ruby-on-rails-meetup # name: Ruby on Rails Meetup # service: meetupdotcom - id: ruby-on-rails-oceania-melbourne name: Melbourne Ruby service: meetupdotcom remove: - "Melbourne Ruby" - id: ruby-on-rails-oceania-perth name: Ruby and Rails Perth service: meetupdotcom - id: ruby-on-rails-oceania-sydney name: Ruby on Rails Oceania Sydney service: meetupdotcom - id: ruby-phil name: Philippine Ruby Users Group service: meetupdotcom # - id: ruby-project-night-nyc # name: Ruby Project Night NYC # service: meetupdotcom # - id: ruby-romania # name: Ruby Romania # service: meetupdotcom - id: ruby-serbia name: Ruby Serbia service: meetupdotcom - id: ruby-spain name: Ruby Spain service: meetupdotcom - id: ruby-turkiye name: Ruby Türkiye service: meetupdotcom - id: ruby-user-group-linz-rugl name: Ruby User Group Linz service: meetupdotcom - id: ruby-user-group-berlin name: Ruby User Group Berlin service: ical timezone: Europe/Berlin default_location: Berlin, Germany ical_url: https://www.rug-b.de/events.ics remove: - "(watch the date)" - "Check the date!" - "CANCELED" - id: ruby-usergroup-hamburg name: Ruby Usergroup Hamburg service: ical timezone: Europe/Berlin default_location: Hamburg, Germany ical_url: https://hamburg.onruby.de/events.ics # - id: ruby-user-group-cologne # name: Ruby User Group Cologne # service: ical # timezone: Europe/Berlin # default_location: Cologne, Germany # ical_url: https://www.colognerb.de/events.ics # remove: "Kölsch.rb" - id: ruby-user-group-leipzig name: Ruby User Group Leipzig service: ical timezone: Europe/Berlin default_location: Leipzig, Germany ical_url: https://leipzig.onruby.de/events.ics - id: ruby-user-group-dresden name: Dresden.rb service: ical timezone: Europe/Berlin default_location: Dresden, Germany ical_url: https://dresdenrb.onruby.de/events.ics # - id: ruby-user-group-saarland # name: # service: meetupdotcom - id: rubyba name: Ruby Buenos Aires service: meetupdotcom - id: rubybelgium name: Ruby Belgium service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-xxSFE7F64frGUhe timezone: Europe/Brussels - id: rubybrigade name: Helsinki Ruby Brigade service: meetupdotcom # - id: rubydesign # name: Ruby on Rails Enthusiasts # service: meetupdotcom - id: rubydf name: RubyDF service: meetupdotcom - id: rubydf name: Ruby DF timezone: America/Sao_Paulo ical_url: https://rubydf.com/events.ics service: ical - id: rubyeurope name: Ruby Europe service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-e1hbsrfKzZEFCi5 timezone: Europe/Berlin - id: rubyfloripa name: RubyFloripa service: meetupdotcom - id: rubygdl name: RubyGDL service: meetupdotcom - id: rubyireland name: Ruby Ireland service: meetupdotcom - id: rubyists-in-albuquerque name: Ruby Albuquerque service: meetupdotcom - id: rubyjax name: RubyJax service: meetupdotcom # - id: rubymonstas-programming-for-women # name: RubyMonstas # service: meetupdotcom # - id: rubynord # name: # service: meetupdotcom # - id: rubyon # name: RubyOn - Ruby On Rails # service: meetupdotcom - id: rubyonrails-ch name: Ruby on Rails Switzerland service: meetupdotcom - id: rubyonrio name: RubyOnRio service: meetupdotcom # - id: rubyperu # name: Ruby Perú # service: meetupdotcom - id: rubyroars-kharkiv name: RubyRoars Kharkiv service: meetupdotcom filter: Ruby - id: rubyside-meetup name: Rubyside service: meetupdotcom - id: rubyslovenia name: Slovenia Ruby User Group service: meetupdotcom - id: rubyzg name: Ruby Zagreb service: meetupdotcom - id: rzeszow-ruby-user-group name: Rzeszow Ruby User Group service: meetupdotcom - id: sacruby name: The Sacramento Ruby Meetup service: meetupdotcom - id: saigonrb # and: saigon-rb name: Saigon.rb service: meetupdotcom # - id: san-diego-railsbridge # name: San Diego RailsBridge # service: meetupdotcom - id: san-francisco-ruby-meetup-group name: SF Bay Area Ruby service: meetupdotcom # - id: santa-barbara-on-rails # name: Santa Barbara on Rails # service: meetupdotcom - id: sardinesrb name: 'Sardines.rb: Lisbon Ruby Meetup' service: meetupdotcom - id: sarubycoders name: SA Ruby Coders service: meetupdotcom - id: sdruby name: SD Ruby service: meetupdotcom - id: seattle-rb name: Seattle.rb service: ical timezone: America/Los_Angeles ical_url: https://seattlerb.org/events.ics - id: seoul-ruby-meetup name: Seoul Ruby Meetup service: meetupdotcom - id: sevilla-ruby-on-rails-meetup name: Sevilla Ruby On Rails service: meetupdotcom - id: sfrails name: San Francisco Ruby on Rails service: meetupdotcom exclude: - partner event - id: sfruby name: The San Francisco Ruby service: meetupdotcom exclude: - Tech Leadership Tuesday Tea Time - Code and Connect - id: sfruby name: SF Bay Area Ruby service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-L4SDawu65B1grBV timezone: America/Los_Angeles exclude: - The San Francisco Ruby Conference - SF Ruby Workshop - id: silicon-valley-ruby name: Silicon Valley Ruby service: meetupdotcom - id: singapore-ruby-group name: Singapore Ruby Group service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-LjNde6eShrrzWbX timezone: Asia/Singapore - id: singapore-ruby-group name: Singapore Ruby Group service: meetupdotcom # - id: sofloruby-broward # name: SoFloRuby Broward # service: meetupdotcom - id: south-west-ruby name: South West Ruby service: meetupdotcom - id: srugpl name: Silesian Ruby Users Group service: meetupdotcom - id: startups-on-rails name: Startups on Rails service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-Nby97Hu3ubMSLDU timezone: America/New_York - id: sthlmrb name: Stockholm Ruby service: meetupdotcom - id: sthlmrb name: Stockholm Ruby service: luma ical_url: https://api.lu.ma/ics/get?entity=calendar&id=cal-endgATTZCF1KdPk timezone: Europe/Stockholm - id: stlruby name: STLRuby service: meetupdotcom - id: svgruby name: Stavanger Ruby User Group service: meetupdotcom - id: tampa-rb name: Tampa Ruby Brigade service: meetupdotcom - id: tech-valley-ruby-brigade name: Tech Valley Ruby Brigade service: meetupdotcom - id: the-bluegrass-developers-guild name: Bluegrass Ruby filter: Bluegrass Ruby service: meetupdotcom remove: - Bluegrass Ruby Users Group - id: the-seattle-ruby-on-rails-developers-meetup-group name: Seattle Ruby on Rails service: meetupdotcom - id: thessrb name: Thessaloníki Ruby service: meetupdotcom # - id: thirsty-rb-rdu # name: # service: meetupdotcom # - id: timisoara-ruby-on-rails-community # name: # service: meetupdotcom # - id: tm-ruby # name: # service: meetupdotcom - id: tokyo-rails name: Tokyo Rails service: meetupdotcom - id: toronto-ruby-on-rails-group name: Toronto Ruby on Rails service: meetupdotcom - id: torontoruby name: Toronto Ruby service: meetupdotcom - id: toronto-ruby name: Toronto Ruby service: ical timezone: America/Toronto ical_url: https://toronto-ruby.com/events/all.ics - id: toulouse-ruby-friends name: Toulouse.rb service: meetupdotcom - id: trivandrum-ruby name: Trivandrum Ruby service: meetupdotcom - id: twenterb name: Twente.rb service: meetupdotcom - id: upstate-ruby name: Upstate Ruby service: meetupdotcom - id: utah-ruby-users-group name: Utah Ruby Users Group service: meetupdotcom remove: "URUG Meetup:" # - id: utrecht-rb # name: Utrecht.rb # service: meetupdotcom - id: vadodara-ruby-meetup name: Vadodara Ruby service: meetupdotcom - id: vadodara-ruby-on-rails-meetup name: Vadodara Ruby on Rails service: meetupdotcom - id: vancouver-ruby name: VanRuby service: meetupdotcom exclude: - Vancouver Cloud Summit - id: vienna-rb name: vienna.rb service: meetupdotcom # - id: vienna-ruby # name: # service: meetupdotcom # - id: vilniusrb # name: Vilnius.rb # service: meetupdotcom # remove: # - "Vilnius Ruby Brigade meetup:" - id: visakhapatnam-ruby-on-rails-meetup name: Visakhapatnam Ruby on Rails service: meetupdotcom - id: vlctechhub name: Valencia.rb service: meetupdotcom include: Valencia.rb exclude: - VLCTechFest - id: wellingtonruby name: WellingtonRuby service: meetupdotcom - id: rubywellington name: Ruby Wellington service: meetupdotcom - id: west-midlands-ruby-user-group-wmrug name: West Midlands Ruby User Group service: meetupdotcom # - id: westside-rails-study-group # name: # service: meetupdotcom - id: williamson-county-ruby-meetup name: Williamson County Ruby service: meetupdotcom - id: winnipegrb name: Winnipeg Ruby User Group service: meetupdotcom # - id: women-on-rails # name: Women On Rails # service: meetupdotcom - id: yorkdevelopers name: York Ruby service: meetupdotcom filter: York Ruby ================================================ FILE: _data/meetups.yml ================================================ --- - name: Seattle.rb - February 2002 location: Seattle, WA date: 2002-02-28 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=1 - name: 'Krakow Ruby Users Group (KRUG) - KRUG #3 / 2023 powered by Zendesk' location: Online date: 2023-11-14 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/krug service: luma - name: Toronto Ruby - Inaugural Edition location: Toronto, Canada date: 2023-11-23 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://toronto-ruby.com/events/1 - name: Charlotte Ruby - Ruby Hack Night January 2024 location: Online date: 2024-01-02 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/297725393 service: meetup - name: London Ruby User Group - January 2024 Meeting location: London, UK date: 2024-01-08 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2024/january - name: Białystok Ruby Users Group (BRUG) - Lightning Talks edition location: Białystok, Poland date: 2024-01-09 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/298300747 service: meetup - name: Paris.rb - Meetup January 2024 location: Paris, France date: 2024-01-09 start_time: 19:15:00 CET end_time: 22:15:00 CET url: https://www.meetup.com/paris_rb/events/297791256 service: meetup - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-01-10 start_time: 18:00:00 MST end_time: 21:00:00 MST url: https://www.meetup.com/boulder_ruby_group/events/297947066 service: meetup - name: 'Geneva.rb - Turbo Native: iOS apps with Hotwire Rails (Sean Carroll)' location: Geneva, Switzerland date: 2024-01-10 start_time: 19:00:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/geneva-rb/events/297635660 service: meetup - name: 'NYC.rb - Mob Programming: Book Summarizer' location: Online date: 2024-01-10 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/297927582 service: meetup - name: Philly.rb - Pubnite January 2024 location: Online date: 2024-01-10 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/297923423 service: meetup - name: Ruby Usergroup Hamburg - January 2024 location: Hamburg, Germany date: 2024-01-10 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-january-2024-770 - name: Ruby User Group Berlin - January Meetup 2024 location: Berlin, Germany date: 2024-01-11 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.rug-b.de/events/canceled-january-meetup-2024-watch-the-date-canceled-768 status: cancelled - name: ChicagoRuby - Totally Solid Cache and Queue by Daniel Schadd location: Chicago, IL date: 2024-01-17 start_time: 18:00:00 CST end_time: 20:00:00 CST url: https://www.meetup.com/chicagoruby/events/298091952 service: meetup - name: 'Toronto Ruby - Rails and the Ruby Garbage Collector: How to Speed Up Your Rails App' location: Toronto, Canada date: 2024-01-24 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://radius.to/groups/toronto-ruby/events/nkn3vrxhklze - name: Poznań Ruby User Group (PRUG) - January 2024 location: Poznań, Poland date: 2024-01-25 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/298459627 service: meetup - name: SD Ruby - Meetup January 2024 location: San Diego, CA date: 2024-01-25 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/sdruby/events/298656197 service: meetup - name: Upstate Ruby - Calm Rails Upgrades location: Greenville, SC date: 2024-01-25 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/upstate-ruby/events/298465949 service: meetup - name: Ruby Frankfurt Meetup - January 2024 location: Frankfurt am Main, Germany date: 2024-01-30 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/frankfurt-ruby-meetup/events/298436132 service: meetup - name: WNB.rb - January 2024 Meetup location: Online date: 2024-01-30 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/01/30 - name: Ruby Türkiye - Virtual Meetup January 2024 location: Online date: 2024-01-31 start_time: 20:30:00 TRT end_time: 22:30:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-db06675a - name: Ruby User Group Berlin - February Meetup 2024 location: Berlin, Germany date: 2024-02-01 start_time: 19:00:00 CET end_time: 21:30:00 CET url: https://www.rug-b.de/events/february-meetup-2024-769 - name: SD Ruby - Lightning Talks location: San Diego, CA date: 2024-02-01 start_time: 19:00:00 PST end_time: 20:30:00 PST url: https://www.meetup.com/sdruby/events/297372058 service: meetup - name: Ruby DF - 2ª Edição - Fevereiro de 2024 location: Brasilia, Brazil date: 2024-02-03 start_time: 10:00:00 -03 end_time: 12:00:00 -03 url: https://rubydf.com/events/segunda-edicao - name: ChicagoRuby - Jason Swett "How to Write Meaningful Tests" location: Chicago, IL date: 2024-02-05 start_time: 18:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/chicagoruby/events/298090120 service: meetup - name: Charlotte Ruby - Ruby Hack Night February 2024 location: Online date: 2024-02-06 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/298171391 service: meetup - name: Paris.rb - Meetup February 2024 location: Paris, France date: 2024-02-06 start_time: 19:15:00 CET end_time: 22:15:00 CET url: https://www.meetup.com/paris_rb/events/297791270 service: meetup - name: Geneva.rb - Share Your Favorite Gem, Tip, or Trick! location: Geneva, Switzerland date: 2024-02-07 start_time: 19:00:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/geneva-rb/events/297635673 service: meetup - name: Ruby in London with Builder.ai location: London, UK date: 2024-02-07 start_time: 17:30:00 GMT end_time: 20:00:00 GMT url: https://www.meetup.com/ruby-in-london/events/297633001 service: meetup - name: London Ruby User Group - February 2024 Meeting location: London, UK date: 2024-02-12 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2024/february - name: 'NYC.rb - Mob Programming: Book Summarizer (continued)' location: Online date: 2024-02-14 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/298024751 service: meetup - name: Philly.rb - Pubnite February 2024 location: Online date: 2024-02-14 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/298024752 service: meetup - name: Ruby Usergroup Hamburg - February 2024 location: Hamburg, Germany date: 2024-02-14 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-february-2024-774 - name: brooklyn.rb - rails new happy_hack_hour location: Brooklyn, NY date: 2024-02-15 start_time: 17:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/brooklyn-rb/events/299183748 service: meetup - name: Poznań Ruby User Group (PRUG) - February 2024 location: Poznań, Poland date: 2024-02-22 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/298881192 service: meetup - name: WNB.rb - February 2024 Meetup location: Online date: 2024-02-27 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/02/27 - name: Polish Ruby User Group (PLRUG) - Meetup February 2024 location: Warsaw, Poland date: 2024-02-29 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/299211327 service: meetup - name: Ruby Türkiye - Virtual Meetup February 2024 location: Online date: 2024-02-29 start_time: 20:30:00 TRT end_time: 22:30:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202402-ea467ba1 - name: Toronto Ruby - All About the Ruby LSP location: Toronto, Canada date: 2024-02-29 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://radius.to/groups/toronto-ruby/events/vxmd8kyaxs3t - name: Bluegrass Ruby - March 2024 location: Lexington, KY date: 2024-03-05 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/the-bluegrass-developers-guild/events/299357620 service: meetup - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-03-05 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/bostonrb/events/299083357 service: meetup - name: Charlotte Ruby - Ruby Hack Night March 2024 location: Online date: 2024-03-05 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/298178146 service: meetup - name: Paris.rb - Meetup March 2024 location: Paris, France date: 2024-03-05 start_time: 19:15:00 CET end_time: 22:15:00 CET url: https://www.meetup.com/paris_rb/events/297791280 service: meetup - name: Geneva.rb - Live load testing on a real production app (Alexis Bernard) location: Geneva, Switzerland date: 2024-03-06 start_time: 19:00:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/geneva-rb/events/297635680 service: meetup - name: Ruby Montevideo - Meetup March 2024 location: Montevideo, Uruguay date: 2024-03-06 start_time: 19:00:00 UYT end_time: 22:00:00 UYT url: https://www.meetup.com/ruby-montevideo/events/299462022 service: meetup - name: Ruby on Rails Switzerland - Railshöck at Renuo location: Zurich, Switzerland date: 2024-03-06 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/rubyonrails-ch/events/298503697 service: meetup - name: Ruby User Group Berlin - March Meetup 2024 location: Berlin, Germany date: 2024-03-07 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.rug-b.de/events/march-meetup-2024-771 - name: SD Ruby - Meetup March 2024 location: San Diego, CA date: 2024-03-07 start_time: 19:00:00 PST end_time: 20:30:00 PST url: https://www.meetup.com/sdruby/events/297372059 service: meetup - name: London Ruby User Group - March 2024 Meeting location: London, UK date: 2024-03-11 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2024/march - name: Lyon.rb - 2024.3 / Tous au SPA location: Lyon, France date: 2024-03-12 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/lyonrb/events/287815581 service: meetup - name: 'Upstate Ruby - Tech Topics: Flaky Tests' location: Greenville, SC date: 2024-03-12 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/upstate-ruby/events/299496096 service: meetup - name: WNB.rb - March 2024 Meetup location: Online date: 2024-03-12 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/03/12 - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-03-13 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/boulder_ruby_group/events/298910801 service: meetup - name: Copenhagen Ruby Brigade - March Meetup location: Copenhagen, Denmark date: 2024-03-13 start_time: 17:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/copenhagen-ruby-brigade/events/299619735 service: meetup - name: NYC.rb - Scott Werner on Going Postel location: Online date: 2024-03-13 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/299222897 service: meetup - name: Philly.rb - Pubnite March 2024 location: Online date: 2024-03-13 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/298382203 service: meetup - name: Ruby Usergroup Hamburg - March 2024 location: Hamburg, Germany date: 2024-03-13 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-march-2024-775 - name: RubySur - March 2024 - Debugging location: Buenos Aires, Argentina / Online date: 2024-03-14 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/299590862 service: meetup - name: brooklyn.rb - rails new happy_hack_hour location: Brooklyn, NY date: 2024-03-14 start_time: 17:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/brooklyn-rb/events/299260716 service: meetup - name: Ruby User Group Cologne - März 2024 location: Cologne, Germany date: 2024-03-20 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.colognerb.de/events/kolsch-rb-marz-2024-773 - name: Polish Ruby User Group (PLRUG) - Meetup March 2024 location: Warsaw, Poland date: 2024-03-21 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/299748352 service: meetup - name: brooklyn.rb - rails g talk --title="Turbo 8" --speaker="Fernando Ramirez" location: Brooklyn, NY date: 2024-03-21 start_time: 17:30:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/brooklyn-rb/events/299261125 service: meetup - name: Geneva.rb - Contribute! (Dimiter Petrov) location: Geneva, Switzerland date: 2024-03-27 start_time: 19:00:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/geneva-rb/events/299288500 service: meetup - name: Ruby Türkiye - Virtual Meetup March 2024 location: Online date: 2024-03-28 start_time: 20:30:00 TRT end_time: 22:30:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202403-04624a0d - name: Ruby::AZ - Tips and Techniques for Enhanced Programming Productivity location: Chandler, AZ date: 2024-03-28 start_time: 18:00:00 MST end_time: 20:00:00 MST url: https://www.meetup.com/ruby-az/events/299773440 service: meetup - name: SF Bay Area Ruby - Meetup location: San Francisco, CA date: 2024-03-28 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/r6d0lghm service: luma - name: Ruby Montevideo - Meetup April 2024 location: Montevideo, Uruguay date: 2024-04-01 start_time: 19:00:00 UYT end_time: 22:00:00 UYT url: https://www.meetup.com/ruby-montevideo/events/299957596 service: meetup - name: Bluegrass Ruby - April 2024 location: Lexington, KY date: 2024-04-02 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/300021220 service: meetup - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-04-02 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/bostonrb/events/299932407 service: meetup - name: Charlotte Ruby - Ruby Hack Night April 2024 location: Online date: 2024-04-02 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/298294592 service: meetup - name: Paris.rb - Meetup April 2024 location: Paris, France date: 2024-04-02 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/299466405 service: meetup - name: Toronto Ruby - Using Rails introspection to supercharge your editor location: Toronto, Canada date: 2024-04-03 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://radius.to/groups/toronto-ruby/events/bskxhdeqs6pq - name: SD Ruby - Meetup April 2024 location: San Diego, CA date: 2024-04-04 start_time: 19:00:00 PDT end_time: 20:30:00 PDT url: https://www.meetup.com/sdruby/events/297372060 service: meetup - name: London Ruby User Group - April 2024 Meeting location: London, UK date: 2024-04-08 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/april - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-04-10 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/boulder_ruby_group/events/299093263 service: meetup - name: NYC.rb - Avi Flombaum on Building PWAs with Ruby on Rails location: Online date: 2024-04-10 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/299753087 service: meetup - name: Philly.rb - Pubnite April 2024 location: Online date: 2024-04-10 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/298382205 service: meetup - name: Ruby Usergroup Hamburg - April 2024 location: Hamburg, Germany date: 2024-04-10 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-april-2024-777 - name: Ruby User Group Berlin - Elixir Crossover Birthday Event location: Berlin, Germany date: 2024-04-11 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/elixir-crossover-birthday-event-check-the-date-772 - name: brooklyn.rb - rails new happy_hack_hour location: Brooklyn, NY date: 2024-04-11 start_time: 17:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/brooklyn-rb/events/299260755 service: meetup - name: Geneva.rb - Revisiting the Hotwire Landscape after Turbo 8 (Marco Roth) location: Geneva, Switzerland date: 2024-04-16 start_time: 19:00:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/geneva-rb/events/299288679 service: meetup - name: Ruby Frankfurt Meetup - April 2024 location: Frankfurt am Main, Germany date: 2024-04-16 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/frankfurt-ruby-meetup/events/299586276 service: meetup - name: RubySur - April 2024 location: Buenos Aires, Argentina / Online date: 2024-04-16 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/300307806 service: meetup - name: Polish Ruby User Group (PLRUG) - Meetup April 2024 location: Warsaw, Poland date: 2024-04-18 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/300326352 service: meetup - name: Ruby::AZ - Introduction to Turbo in Rails 7 location: Chandler, AZ date: 2024-04-18 start_time: 18:00:00 MST end_time: 20:00:00 MST url: https://www.meetup.com/ruby-az/events/300435419 service: meetup - name: brooklyn.rb - Recurse Center + Approximate Formal Modeling w/ Brock Wilcox location: Brooklyn, NY date: 2024-04-18 start_time: 17:30:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/brooklyn-rb/events/300384805 service: meetup - name: LA Ruby - Relaunch Social 2024!! location: Los Angeles, CA date: 2024-04-24 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/laruby/events/300435821 service: meetup - name: ChicagoRuby - Ruby Drinkup April location: Chicago, IL date: 2024-04-25 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/300391251 service: meetup - name: Upstate Ruby - Dev tooling show and tell location: Greenville, SC date: 2024-04-30 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/upstate-ruby/events/300290562 service: meetup - name: WNB.rb - April 2024 Meetup location: Online date: 2024-04-30 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/04/30 - name: Ruby in London with Mindful Chef location: London, UK date: 2024-05-01 start_time: 17:30:00 BST end_time: 20:00:00 BST url: https://www.meetup.com/ruby-in-london/events/299767863 service: meetup - name: Ruby User Group Berlin - May Meetup 2024 location: Berlin, Germany date: 2024-05-02 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/may-meetup-2024-776 - name: SD Ruby - Meetup May 2024 location: San Diego, CA date: 2024-05-02 start_time: 19:00:00 PDT end_time: 20:30:00 PDT url: https://www.meetup.com/sdruby/events/297372062 service: meetup - name: Charlotte Ruby - Ruby Hack Night May 2024 location: Online date: 2024-05-07 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/298294608 service: meetup - name: Paris.rb - Meetup May 2024 location: Paris, France date: 2024-05-07 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/300166981 service: meetup - name: NYC.rb - Mob Programming - Turbo Native! location: Online date: 2024-05-08 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/299736979 service: meetup - name: Ruby Usergroup Hamburg - May 2024 location: Hamburg, Germany date: 2024-05-08 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-may-2024-778 - name: Philippine Ruby Users Group - 2024 Restart Startup launchkit edition location: Makati, Philippines & Online date: 2024-05-09 start_time: 18:00:00 HKT end_time: 20:00:00 HKT url: https://www.facebook.com/events/758719776072660 - name: Ruby Fusion - Meetup May 2024 location: Online date: 2024-05-09 start_time: 19:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/ruby_fusion-inception service: luma - name: Ruby Montevideo - Meetup May 2024 location: Montevideo, Uruguay date: 2024-05-09 start_time: 19:00:00 UYT end_time: 22:00:00 UYT url: https://www.meetup.com/ruby-montevideo/events/300576250 service: meetup - name: brooklyn.rb - rails new happy_hack_hour location: Brooklyn, NY date: 2024-05-09 start_time: 17:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/brooklyn-rb/events/299260764 service: meetup - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-05-13 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/bostonrb/events/300022368 service: meetup - name: London Ruby User Group - May 2024 Meeting location: London, UK date: 2024-05-13 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/may - name: Austin.rb - Debugging with ruby/debug location: Austin, TX date: 2024-05-14 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610740 service: meetup - name: Geneva.rb - Travel through Time (zones) with Ruby and Rails (Vincent Pochet) location: Geneva, Switzerland date: 2024-05-14 start_time: 19:00:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/geneva-rb/events/299288843 service: meetup - name: Philly.rb - Pubnite May 2024 location: Online date: 2024-05-14 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/298382207 service: meetup - name: RubySur - May 2024 - Hotwire location: Buenos Aires, Argentina / Online date: 2024-05-14 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/300864089 service: meetup - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-05-15 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/boulder_ruby_group/events/299093266 service: meetup - name: North West Ruby User Group - What to do when you’ve been hit by a tornado location: Manchester, UK date: 2024-05-16 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/What-to-do-when-youve-been-hit-by-a-tornado - name: SF Bay Area Ruby - Meetup @ New Relic location: San Francisco, CA date: 2024-05-16 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/sfruby-may24 service: luma - name: Bluegrass Ruby - May 2024 location: Lexington, KY date: 2024-05-21 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/300478435 service: meetup - name: LA Ruby - Nil - Nothing is Easy, Is It? location: Los Angeles, CA date: 2024-05-22 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/de-DE/laruby/events/300616988 service: meetup - name: Ruby AI Happy Hour location: New York, NY date: 2024-05-22 start_time: 17:30:00 EDT end_time: 20:30:00 EDT url: https://luma.com/cbeeanbk service: luma - name: Toronto Ruby - May Edition location: Toronto, Canada date: 2024-05-22 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://radius.to/groups/toronto-ruby/events/pkgvym5ecyuc - name: ChicagoRuby - Coffee + Code @ Swadesi Cafe location: Chicago, IL date: 2024-05-23 start_time: 14:00:00 CDT end_time: 16:00:00 CDT url: https://www.meetup.com/chicagoruby/events/301104045 service: meetup - name: Ruby::AZ - AI Moderation of User Generated Content with OpenAI location: Chandler, AZ date: 2024-05-23 start_time: 18:00:00 MST end_time: 20:00:00 MST url: https://www.meetup.com/ruby-az/events/300938990 service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #1 / 2024' location: Online date: 2024-05-28 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/krug service: luma - name: 'Krakow Ruby Users Group - KRUG #1 2024' location: Krakow, Poland date: 2024-05-28 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/krakow-ruby-users-group/events/300990948 service: meetup - name: WNB.rb - May 2024 location: Online date: 2024-05-28 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/05/28 - name: Frevo on Rails - May location: Recife, Brazil date: 2024-05-29 start_time: 18:00:00 BRT end_time: 22:00:00 BRT url: http://frevoonrails.com.br/posts,/events/2024/05/10/encontro-de-maio-2024 - name: Helsinki Ruby Brigade - Summer kick-off location: Helsinki, Finland date: 2024-05-29 start_time: 17:30:00 EEST end_time: 20:30:00 EEST url: https://rubybrigade.fi/event/2024/summer-kick-off - name: Austin.rb - Ruby Social (Morning) location: Austin, TX date: 2024-05-30 start_time: '08:00:00 CDT' end_time: 10:00:00 CDT url: https://www.meetup.com/austinrb/events/300256914 service: meetup - name: 'Upstate Ruby - Tech Topics: Hotwire' location: Greenville, SC date: 2024-05-30 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/upstate-ruby/events/301117587 service: meetup - name: Ruby Türkiye - Virtual Meetup May 2024 location: Online date: 2024-05-31 start_time: 20:30:00 TRT end_time: 22:30:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202404-eeae65c1 - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-06-03 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/bostonrb/events/300772513 service: meetup - name: Bluegrass Ruby - June 2024 location: Lexington, KY date: 2024-06-04 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://bluegrassruby.club - name: Charlotte Ruby - Ruby Hack Night June 2024 location: Online date: 2024-06-04 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/298294644 service: meetup - name: Latvian Ruby Community - Ruby Community Meetup location: Riga, Latvia date: 2024-06-04 start_time: 17:00:00 EEST end_time: 20:00:00 EEST url: https://www.startuphouse.lv/event-details/ruby-community-meetup-1 - name: Madison + Ruby + NYC @ Domino location: Brooklyn, NY date: 2024-06-04 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://luma.com/j9qbs1ov service: luma - name: Paris.rb - Meetup June 2024 location: Paris, France date: 2024-06-04 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/300166992 service: meetup - name: Geneva.rb - Semantic search in RubyOnRails with GPT-4 (Yannis Jaquet, EPFL) location: Geneva, Switzerland date: 2024-06-05 start_time: 19:00:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/geneva-rb/events/299288852 service: meetup - name: Ruby Fusion - Function Composition location: Online date: 2024-06-06 start_time: 18:30:00 MDT end_time: 20:30:00 MDT url: https://luma.com/evt-gZUrAREsvN62jAm service: luma - name: Ruby Montevideo - Meetup June 2024 location: Montevideo, Uruguay date: 2024-06-06 start_time: 19:00:00 UYT end_time: 22:00:00 UYT url: https://www.meetup.com/ruby-montevideo/events/301320015 service: meetup - name: Ruby User Group Berlin - June Meetup 2024 location: Berlin, Germany date: 2024-06-06 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/june-meetup-2024-781 - name: SD Ruby - Meetup June 2024 location: San Diego, CA date: 2024-06-06 start_time: 19:00:00 PDT end_time: 20:30:00 PDT url: https://www.meetup.com/sdruby/events/297372063 service: meetup - name: London Ruby User Group - June 2024 Meeting location: London, UK date: 2024-06-10 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/june - name: Austin.rb - Contorted Frameworks location: Austin, TX date: 2024-06-11 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610742 service: meetup - name: Boston Ruby Group - June 2024 meeting location: Boston, MA date: 2024-06-11 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/bostonrb/events/300969682 service: meetup - name: Philly.rb - Pubnite June 2024 location: Online date: 2024-06-11 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/298382216 service: meetup - name: Barcelona.rb - Meetup June location: Barcelona, Spain date: 2024-06-12 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/barcelona-rb/events/301293554 service: meetup - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-06-12 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/boulder_ruby_group/events/299591825 service: meetup - name: Copenhagen Ruby Brigade - June Meetup location: Copenhagen, Denmark date: 2024-06-12 start_time: 17:00:00 CEST end_time: 20:00:00 CEST url: https://www.copenhagenrb.dk - name: 'NYC.rb - Obie Fernandez: Ruby and Rails & AI: Leading Prompt-Driven Development' location: Online date: 2024-06-12 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/300339701 service: meetup - name: RubySur - June 2024 - Asset Pipeline location: Buenos Aires, Argentina / Online date: 2024-06-13 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/301367143 service: meetup - name: SF Bay Area Ruby - Meetup in June @ Productboard location: San Francisco, CA date: 2024-06-13 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/sfruby-june24 service: luma - name: Ruby Frankfurt Meetup - Summer Edition - June 2024 location: Frankfurt, Germany date: 2024-06-17 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/frankfurt-ruby-meetup/events/301216095 service: meetup - name: Madison + Ruby + Detroit @ Revela location: Detroit, MI date: 2024-06-20 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://luma.com/p53lc1vp service: luma - name: North West Ruby User Group - RubyConf 2023 - Re-interpreting Data by Murray Steele location: Manchester, UK date: 2024-06-20 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/re-interpreting-data-murray-steele - name: Ruby User Group Cologne - Juni 2024 Meetup location: Cologne, Germany date: 2024-06-20 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.colognerb.de/events/juni-2024-meetup-779 - name: Ruby::AZ - Vite Ruby for your Rails app's frontend assets location: Chandler, AZ date: 2024-06-20 start_time: 18:00:00 MST end_time: 20:00:00 MST url: https://www.meetup.com/ruby-az/events/301702012 service: meetup - name: Toronto Ruby - June Edition location: Toronto, Canada date: 2024-06-20 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://radius.to/groups/toronto-ruby/events/s1tczn2usqf5 - name: ChicagoRuby - Madison+ Ruby + Chicago @ Chime location: Chicago, IL date: 2024-06-25 start_time: 18:00:00 CDT end_time: 19:30:00 CDT url: https://www.meetup.com/chicagoruby/events/301641748 service: meetup - name: WNB.rb - June 2024 location: Online date: 2024-06-25 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups/2024/06/25 - name: Austin.rb - Ruby Social (Evening) location: Austin, TX date: 2024-06-27 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/300256966 service: meetup - name: Philippine Ruby Users Group - Heading Hybrid location: Multi-location hydrid (Makati & Batangas City, Philippines) date: 2024-06-27 start_time: 18:00:00 HKT end_time: 20:00:00 HKT url: https://www.meetup.com/ruby-phil/events/301171721 service: meetup - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-07-01 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/bostonrb/events/301084091 service: meetup - name: Bluegrass Ruby - July 2024 location: Lexington, KY date: 2024-07-02 start_time: 18:00:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/301833145 service: meetup - name: Charlotte Ruby - Ruby Hack Night July 2024 location: Online date: 2024-07-02 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/301353961 service: meetup - name: Paris.rb - Meetup July 2024 location: Paris, France date: 2024-07-02 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/301437243 service: meetup - name: Ruby User Group Berlin - July 2024 outdoor social gathering location: Berlin, Germany date: 2024-07-04 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.rug-b.de/events/canceled-july-2024-outdoor-social-gathering-815 status: cancelled - name: London Ruby User Group - July 2024 Meeting location: London, UK date: 2024-07-08 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/july - name: Austin.rb - Modern Authentication with WebAuthn location: Austin, TX date: 2024-07-09 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610747 service: meetup - name: Boston Ruby Group - July 2024 meeting location: Boston, MA date: 2024-07-09 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/bostonrb/events/301988193 service: meetup - name: Lyon.rb - 2024.6 / Lightning talks location: Lyon, France date: 2024-07-09 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/lyonrb/events/301316102 service: meetup - name: Madison+ Ruby - + NYC @ Cisco Meraki location: New York, NY date: 2024-07-09 start_time: 07:30:00 CDT end_time: '09:00:00 CDT' url: https://luma.com/4bliqbqr service: luma - name: Philly.rb - Pubnite July 2024 location: Online date: 2024-07-09 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/nnlgbtygckbmb service: meetup - name: Boulder Ruby Group - Monthly Presentation Night location: Boulder, CO / Online date: 2024-07-10 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/boulder_ruby_group/events/bbsqktygckbnb service: meetup - name: Houston Ruby - July 2024 location: Houston, TX date: 2024-07-10 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/houstonruby/events/301759244 service: meetup - name: NYC.rb - Cody Norman on Action Mailbox location: Online date: 2024-07-10 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/301062985 service: meetup - name: Ruby Usergroup Hamburg - July 2024 location: Hamburg, Germany date: 2024-07-10 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-july-2024-780 - name: Ruby Fusion - Milestones location: Online date: 2024-07-11 start_time: 18:30:00 MDT end_time: 20:30:00 MDT url: https://luma.com/oyzfeg7u service: luma - name: 'Ruby Romania Meetup #05' location: Bucharest, Romania date: 2024-07-11 start_time: 19:00:00 EEST end_time: 21:00:00 EEST url: https://www.meetup.com/ruby-romania/events/302016838 service: meetup - name: Ruby Montevideo - Meetup July 2024 location: Montevideo, Uruguay date: 2024-07-12 start_time: 21:00:00 UYT end_time: 23:59:59 UYT url: https://www.meetup.com/ruby-montevideo/events/302065709 service: meetup - name: Ruby in London with BEAM location: London, UK date: 2024-07-17 start_time: 17:30:00 BST end_time: 20:30:00 BST url: https://www.meetup.com/ruby-in-london/events/300777187 service: meetup - name: North West Ruby User Group - Taylor’s Guide to Big Rewrites by Andy Croll location: Manchester, UK date: 2024-07-18 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/july-2024-taylor-s-guide-to-big-rewrites-by-andy-croll - name: Ruby::AZ - Implementing RAG in Rails location: Chandler, AZ date: 2024-07-18 start_time: 18:00:00 MST end_time: 20:00:00 MST url: https://www.meetup.com/ruby-az/events/302201104 service: meetup - name: RubySur - July 2024 - Turbo! location: Buenos Aires, Argentina / Online date: 2024-07-18 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/302163493 service: meetup - name: SD Ruby - Summer Social location: San Diego, CA date: 2024-07-18 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/sdruby/events/301083166 service: meetup - name: SF Bay Area Ruby - Meetup in July @ Cisco Meraki location: San Francisco, CA date: 2024-07-18 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/bxzdp6mz service: luma - name: Ruby on Rails Switzerland - 20 Years of Rails location: Zurich, Switzerland date: 2024-07-24 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyonrails-ch/events/301480681 service: meetup - name: "Ruby \U0001F91D AI Happy Hour 2.0" location: New York, NY date: 2024-07-24 start_time: 17:30:00 EDT end_time: 19:30:00 EDT url: https://luma.com/ntmonn8p service: luma - name: Austin.rb - Ruby Social (Morning) location: Austin, TX date: 2024-07-25 start_time: 8:00:00 CDT end_time: 10:00:00 CDT url: https://www.meetup.com/austinrb/events/300257002 service: meetup - name: Ruby DF - 3ª Edição - Julho de 2024 location: Brasilia, Brazil date: 2024-07-27 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/terceira-edicao - name: WNB.rb - July 2024 location: Online date: 2024-07-30 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups - name: Philippine Ruby Users Group - Hack the Hybrid! location: Multi-location hydrid (Quezon City & Batangas City, Philippines) date: 2024-07-31 start_time: 18:00:00 HKT end_time: 20:00:00 HKT url: https://www.meetup.com/ruby-phil/events/302437676 service: meetup - name: SD Ruby - Meetup August 2024 location: San Diego, CA date: 2024-08-01 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/sdruby/events/302290739 service: meetup - name: Boston Ruby Group - Project Night location: Boston, MA date: 2024-08-05 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/bostonrb/events/301905492 service: meetup - name: Boston Ruby Group - Project Night August 2024 location: Boston, MA date: 2024-08-05 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/69yog413 service: luma - name: Bluegrass Ruby - August 2024 location: Lexington, KY date: 2024-08-06 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/302434430 service: meetup - name: Charlotte Ruby - Ruby Hack Night August 2024 location: Online date: 2024-08-06 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/301353966 service: meetup - name: Paris.rb - Meetup August 2024 location: Paris, France date: 2024-08-06 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/301437247 service: meetup - name: London Ruby User Group - August 2024 Meeting location: London, UK date: 2024-08-12 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/august - name: Austin.rb - Ruby on AI "The magic Lego" location: Austin, TX date: 2024-08-13 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610749 service: meetup - name: Boston Ruby Group - August 2024 meeting location: Boston, MA date: 2024-08-13 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/i3r2svfm service: luma - name: Philly.rb - Pubnite August 2024 location: Online date: 2024-08-13 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/302705860 service: meetup - name: Ruby Montevideo - Meetup August 2024 location: Montevideo, Uruguay date: 2024-08-13 start_time: 19:00:00 UYT end_time: 22:00:00 UYT url: https://www.meetup.com/ruby-montevideo/events/302455776 service: meetup - name: Toronto Ruby - Summer of Rails World Edition location: Toronto, Canada date: 2024-08-13 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://radius.to/groups/toronto-ruby/events/tbhhgkd85fmb - name: 'YC Ruby Meetup: Ruby & Rails powering YC startups in 2024' location: San Francisco, CA date: 2024-08-13 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://events.ycombinator.com/yc-ruby-meetup - name: Boulder Ruby - August 2024 Presentation Night location: Boulder, CO date: 2024-08-14 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/16ykggyu service: luma - name: Ruby Usergroup Hamburg - August 2024 location: Hamburg, Germany date: 2024-08-14 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-august-2024-881 - name: RubySur - August 2024 - Refactoring location: Buenos Aires, Argentina / Online date: 2024-08-14 start_time: 19:30:00 ART end_time: 20:30:00 ART url: https://www.meetup.com/rubyba/events/302656192 service: meetup - name: North West Ruby User Group - Delivering Iterative Features location: Manchester, UK date: 2024-08-15 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/delivering-iterative-features - name: Ruby Türkiye - Virtual Meetup August 2024 location: Online date: 2024-08-20 start_time: 21:00:00 TRT end_time: 22:30:00 TRT url: https://kommunity.com/ruby-turkiye/events/walk-through-of-those-gems-3afc364c - name: Ruby on Rails Switzerland - Railshöck at Puzzle location: Zurich, Switzerland date: 2024-08-21 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/rubyonrails-ch/events/298503717 service: meetup - name: Polish Ruby User Group (PLRUG) - Meetup August 2024 location: Warsaw, Poland date: 2024-08-22 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/302785548 service: meetup - name: Ruby User Group Cologne - August 2024 Meetup location: Cologne, Germany date: 2024-08-22 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.colognerb.de/events/august-2024-meetup-782 - name: 'Bangkok.rb - Ruby Tuesday #56' location: เขตวัฒนา, Thailand date: 2024-08-27 start_time: 18:30:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/bangkok-rb/events/302552577 service: meetup - name: RubyJax - Open Hax August 2024 location: Jacksonville, FL date: 2024-08-27 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/302699864 service: meetup - name: 'Saigon.rb - Ruby Tuesday #20' location: Quận 1, Viet Nam date: 2024-08-27 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/saigonrb/events/302590681 service: meetup - name: WNB.rb - August 2024 location: Online date: 2024-08-27 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups - name: Rails Taiwan - 高雄 Rails Meetup August 2024 location: Kaohsiung, Taiwan date: 2024-08-28 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/302713460 service: meetup - name: Austin.rb - Ruby Social - Evening August 2024 location: Austin, TX date: 2024-08-29 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/302551912 service: meetup - name: Orange County Ruby - Meetup August 2024 location: Dana Point, CA date: 2024-08-29 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/302748814 service: meetup - name: Philippine Ruby Users Group - A night of Ruby Community Roadmapping location: Quezon City, Philippines date: 2024-08-29 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/302886229 service: meetup - name: Polish Ruby User Group - Warsztaty Przywódcze (PRUG) August 2024 location: Poznań, Poland date: 2024-08-29 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/302823685 service: meetup - name: Pune Ruby Users Group - August Meetup location: Pune, India date: 2024-08-31 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://www.meetup.com/punerubymeetup/events/302884102 status: cancelled service: meetup - name: Orange County Ruby - Ruby Science September 2024 location: Online date: 2024-09-02 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/302809972 service: meetup - name: Bluegrass Ruby - September location: Lexington, KY date: 2024-09-03 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/303108245 service: meetup - name: Charlotte Ruby - Ruby Hack Night September 2024 location: Online date: 2024-09-03 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/301353968 service: meetup - name: Paris.rb - Meetup September 2024 location: Paris, France date: 2024-09-03 start_time: 19:15:00 CEST end_time: 22:15:00 CEST url: https://www.meetup.com/paris_rb/events/301437249 service: meetup - name: Portland Ruby Brigade - Ruby Tuesday September 2024 location: Online date: 2024-09-03 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/302839871 service: meetup - name: RubyJax - Open Hax September 2024 location: Jacksonville, FL date: 2024-09-03 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/302836796 service: meetup - name: SF Bay Area Ruby - Meetup in September @ GitHub location: San Francisco, CA date: 2024-09-03 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/qfyzbfkk service: luma - name: Montreal.rb - Ruby GUI Desktop Development Hands-On Tutorial location: Montréal, Canada date: 2024-09-04 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/302320603 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby September 2024 location: Prague, Czechia date: 2024-09-04 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/302851699 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2024 location: Kaohsiung, Taiwan date: 2024-09-04 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/302844480 service: meetup - name: Ruby User Group Berlin - September Meetup 2024 location: Berlin, Germany date: 2024-09-05 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/september-meetup-2024-848 - name: SD Ruby - Monthly Meetup September 2024 location: San Diego, CA date: 2024-09-05 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/sdruby/events/302800203 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers September 2024 location: Adelaide, Australia date: 2024-09-06 start_time: 18:00:00 ACST end_time: 20:00:00 ACST url: https://www.meetup.com/adelaiderb/events/dzcvqsygcmbjb service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop September 2024 location: Online date: 2024-09-07 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/300548245 service: meetup - name: Boston Ruby Group - Project Night September 2024 location: Boston, MA date: 2024-09-09 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/af2n3jwa service: luma - name: London Ruby User Group - September 2024 Meeting location: London, UK date: 2024-09-09 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/september - name: 'Austin.rb - Visualizing Problems: From Abstract to Concrete' location: Austin, TX date: 2024-09-10 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610752 service: meetup - name: B'more on Rails - Monthly Meetup September 2024 location: Online date: 2024-09-10 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/302969766 status: cancelled service: meetup - name: Philly.rb - Pubnite September 2024 location: Online date: 2024-09-10 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/302815061 service: meetup - name: RubyJax - Open Hax September 2024 location: Jacksonville, FL date: 2024-09-10 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/302970360 service: meetup - name: Utah Ruby Users Group - URUG Meetup in Lehi location: Lehi, UT date: 2024-09-10 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/302948352 service: meetup - name: VanRuby - CI at Scale and Challenges with Rails Monolith location: North Vancouver, Canada date: 2024-09-10 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/302810382 service: meetup - name: 'Atlanta Ruby - Hidden Pioneers: Programmers of the ENIAC & the Birth of Computing [ATLRUG]' location: Online date: 2024-09-11 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/302989742 service: meetup - name: Boulder Ruby - September 2024 Presentation Night location: Boulder, CO date: 2024-09-11 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/yithw455 service: luma - name: Copenhagen Ruby Brigade - Ruby Brigade at PROSA location: Copenhagen, Denmark date: 2024-09-11 start_time: 17:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/copenhagen-ruby-brigade/events/302958358 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup September 2024 location: Indianapolis, IN date: 2024-09-11 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/302989114 service: meetup - name: NYC.rb - Dennis Martinez on Kamal location: Online date: 2024-09-11 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/301062992 service: meetup - name: Paris Ruby Workshop - Workshop chez September 2024 location: Paris, France date: 2024-09-11 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris-ruby-workshop/events/302568707 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2024 location: Kaohsiung, Taiwan date: 2024-09-11 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/302977852 service: meetup - name: Ruby Montevideo - Meetup - Setiembre 2024 location: Montevideo, Uruguay date: 2024-09-11 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/303136598 service: meetup - name: Ruby Usergroup Hamburg - September 2024 location: Hamburg, Germany date: 2024-09-11 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-september-2024-914 - name: 'African Ruby Community - Ruby Thursdays: To be determined September 2024' location: Online date: 2024-09-12 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/301578297 service: meetup - name: Ruby Buenos Aires - Ruby Meetup - Septiembre 2024 - Dual Booting location: CABA, Argentina date: 2024-09-12 start_time: 19:00:00 -03 end_time: 21:00:00 -03 url: https://www.meetup.com/rubyba/events/303276300 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup September 2024 location: Columbus, OH date: 2024-09-16 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/303084093 service: meetup - name: Miami Ruby Brigade - September 2024 location: Coral Gables, FL date: 2024-09-16 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/303077048 status: cancelled service: meetup - name: Orange County Ruby - Ruby Science September 2024 location: Online date: 2024-09-16 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/303078883 service: meetup - name: Boston Ruby Group - September 2024 meeting location: Boston, MA date: 2024-09-17 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/sbesulha service: luma - name: Frankfurt Ruby Meetup - Ruby Frankfurt Meetup - September 2024 - Database MasKING location: Frankfurt am Main, Germany date: 2024-09-17 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/frankfurt-ruby-meetup/events/302960601 service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #2 / 2024 powered by community' location: Online date: 2024-09-17 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/krug service: luma - name: 'Krakow Ruby Users Group (KRUG) - KRUG #2 / 2024 powered by community :)' location: Kraków, Poland date: 2024-09-17 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/krakow-ruby-users-group/events/302822679 service: meetup - name: RubyJax - Open Hax September 2024 location: Jacksonville, FL date: 2024-09-17 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303104994 service: meetup - name: Toulouse.rb - Conf & Apéro - Septembre location: Toulouse, France date: 2024-09-17 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/toulouse-ruby-friends/events/301833528 service: meetup - name: Geneva.rb - Optimizing Financial Data Ingestion at Inyova (Rafael Millán) location: Genève, Switzerland date: 2024-09-18 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/303018636 service: meetup - name: Portland Ruby Brigade - Cocktails + Code September 2024 location: Portland, OR date: 2024-09-18 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/302855296 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2024 location: Kaohsiung, Taiwan date: 2024-09-18 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303114134 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup September 2024 location: Online date: 2024-09-18 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/303122363 service: meetup - name: 'Christchurch Ruby Group - Monthly Meetup: How to Train your Manager September 2024' location: Christchurch, New Zealand date: 2024-09-19 start_time: 19:30:00 NZST end_time: 22:30:00 NZST url: https://christchurch.ruby.nz/events/2024/2024-09-19-meetup - name: 'North West Ruby User Group - From Teaching to Coding: How I Changed Careers' location: Manchester, UK date: 2024-09-19 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/september-2024-from-teaching-to-coding-how-i-changed-careers - name: 'Polish Ruby User Group - Warsaw meetup #September' location: Warszawa, Poland date: 2024-09-19 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/303197441 service: meetup - name: 'RubyJax - From Theory to Practice: Building Comprehensive PL/SQL Test Suites' location: Online date: 2024-09-19 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/303264670 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers September 2024 location: Adelaide, Australia date: 2024-09-20 start_time: 18:00:00 ACST end_time: 20:00:00 ACST url: https://www.meetup.com/adelaiderb/events/dzcvqsygcmbbc service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop September 2024 location: Online date: 2024-09-21 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/303170792 service: meetup - name: Bangalore Ruby Users Group - Bengaluru Ruby Users Meetup - September 2024 location: Bangalore, India date: 2024-09-21 start_time: 10:00:00 IST end_time: 12:00:00 IST url: https://www.meetup.com/bangalore-ruby-users-group/events/303346229 service: meetup - name: Pune Ruby Users Group - September Meetup location: Pune, India date: 2024-09-21 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://www.meetup.com/punerubymeetup/events/303153624 service: meetup - name: 'Auckland Ruby - Ruby Night September: Hacknight - Write your AI battle ship - Take 2' location: Auckland, New Zealand date: 2024-09-23 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/299606026 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #133 Wrzesień 2024' location: Wrocław, Poland date: 2024-09-23 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/303543533 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #57' location: เขตวัฒนา, Thailand date: 2024-09-24 start_time: 18:30:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/bangkok-rb/events/303075559 service: meetup - name: BelfastRuby - Ruby On Rails location: Belfast, UK date: 2024-09-24 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/belfastruby/events/303119630 service: meetup - name: Iowa City Ruby - [Ruby] Meet and Greet Lunch location: Iowa City, IA date: 2024-09-24 start_time: 11:30:00 CDT end_time: 13:00:00 CDT url: https://www.meetup.com/icruby/events/303588137 service: meetup - name: Ruby Zagreb - RubyZG September meetup @ MaMa location: Zagreb, Croatia date: 2024-09-24 start_time: 18:00:00 CEST end_time: 19:30:00 CEST url: https://www.meetup.com/rubyzg/events/303416478 service: meetup - name: RubyJax - Open Hax September 2024 location: Jacksonville, FL date: 2024-09-24 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303245553 service: meetup - name: 'Saigon.rb - Ruby Tuesday #21' location: Quận 1, Viet Nam date: 2024-09-24 start_time: 19:00:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/saigonrb/events/303479332 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2024 location: Kaohsiung, Taiwan date: 2024-09-25 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303253481 service: meetup - name: Stockholm Ruby - Cozy Ruby Meetup at Hemnet location: Stockholm, Sweden date: 2024-09-25 start_time: 17:30:00 CEST end_time: 19:30:00 CEST url: https://www.meetup.com/sthlmrb/events/303483996 service: meetup - name: Austin.rb - Ruby Social - Morning location: Austin, TX date: 2024-09-26 start_time: '08:00:00 CDT' end_time: 10:00:00 CDT url: https://www.meetup.com/austinrb/events/302552064 service: meetup - name: Melbourne Ruby - September 2024 location: Southbank, Australia date: 2024-09-26 start_time: 18:00:00 AEST end_time: 21:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/297781285 service: meetup - name: Orange County Ruby - Meetup September 2024 location: Dana Point, CA date: 2024-09-26 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/303289879 service: meetup - name: Polish Ruby User Group - PRUG - September 2024 location: Poznań, Poland date: 2024-09-26 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/303347188 service: meetup - name: Startups on Rails Social Event - Rails World Toronto location: Toronto, Canada date: 2024-09-26 start_time: 19:00:00 EDT end_time: 23:00:00 EDT url: https://luma.com/rq2pgkxk service: luma - name: "Nantes.rb - \U0001F680 C'est la rentrée pour les fans de Ruby ! \U0001F680" location: Nantes, France date: 2024-09-27 start_time: 19:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/nantes-rb/events/303348681 service: meetup - name: Orange County Ruby - Ruby Science September 2024 location: Online date: 2024-09-30 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/303353573 service: meetup - name: Bluegrass Ruby - October 2024 location: Lexington, KY date: 2024-10-01 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://bluegrassruby.club - name: Brighton Ruby Group - We're Back From The Dead location: Brighton, UK date: 2024-10-01 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://www.meetup.com/brighton-ruby-group/events/300466837 service: meetup - name: Charlotte Ruby - Ruby Hack Night October 2024 location: Online date: 2024-10-01 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/301353970 service: meetup - name: 'Ruby Malaysia - Ruby Tuesdays KL #110' location: Kuala Lumpur, Malaysia date: 2024-10-01 start_time: 19:30:00 +08 end_time: 21:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/303635983 service: meetup - name: RubyJax - Open Hax October 2024 location: Jacksonville, FL date: 2024-10-01 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303379089 service: meetup - name: Seattle.rb - October 2024 location: Seattle, WA date: 2024-10-01 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=23 - name: Singapore Ruby Group - RubySG September Meetup location: Singapore, Singapore date: 2024-10-01 start_time: 19:00:00 +08 end_time: 21:00:00 +08 url: https://www.meetup.com/singapore-ruby-group/events/303616940 service: meetup - name: 'Barcelona.rb - meetup #October' location: Barcelona, Spain date: 2024-10-02 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/barcelona-rb/events/303366619 service: meetup - name: Montreal.rb - Tame Complex Queries with Database Views location: Montréal, Canada date: 2024-10-02 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/montrealrb/events/302430342 service: meetup - name: NYC on Rails - Ruby Europe, NYC.rb and join forces on Oct 2nd location: New York, NY date: 2024-10-02 start_time: 17:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/nyc-on-rails/events/303665873 service: meetup - name: NYC.rb - Ruby Europe, and NYC on Rails join forces on Oct 2nd location: New York, NY date: 2024-10-02 start_time: 17:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/nyc-rb/events/303614858 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby October 2024 location: Prague, Czechia date: 2024-10-02 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/303395693 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2024 location: Kaohsiung, Taiwan date: 2024-10-02 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303388604 service: meetup - name: Philippine Ruby Users Group - Eyes on the Prize location: Quezon City, Philippines date: 2024-10-03 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/303699566 service: meetup - name: SD Ruby - Monthly Meetup October 2024 location: San Diego, CA date: 2024-10-03 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/sdruby/events/302800231 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers October 2024 location: Adelaide, Australia date: 2024-10-04 start_time: 18:00:00 ACST end_time: 20:00:00 ACST url: https://www.meetup.com/adelaiderb/events/dzcvqsygcnbgb service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop October 2024 location: Online date: 2024-10-05 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/303442712 service: meetup - name: Boston Ruby Group - Project Night October 2024 location: Boston, MA date: 2024-10-07 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/5wyckv9i service: luma - name: Austin.rb - Building Games with Ruby, a Cross-Platform Adventure location: Austin, TX date: 2024-10-08 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/297610754 service: meetup - name: B'more on Rails - Monthly Meetup October 2024 location: Online date: 2024-10-08 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/303140069 status: cancelled service: meetup - name: Paris.rb - October 2024 location: Paris, France date: 2024-10-08 start_time: 19:15:00 CEST end_time: 22:00:00 CEST url: https://www.meetup.com/paris_rb/events/303209426 service: meetup - name: Philly.rb - Pubnite October 2024 location: Online date: 2024-10-08 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/302834153 service: meetup - name: Ruby AI Happy Hour & Demo Night location: New York, NY date: 2024-10-08 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/ufk7pghd service: luma - name: Ruby Banitsa - Authentication Scheming with Hristo Vladev location: Sofia, Bulgaria date: 2024-10-08 start_time: 19:00:00 EEST end_time: 21:00:00 EEST url: https://rubybanitsa.com/events/99 - name: RubyJax - Open Hax October 2024 location: Jacksonville, FL date: 2024-10-08 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303515511 service: meetup - name: Utah Ruby Users Group - Agentic AI in Ruby location: Lehi, UT date: 2024-10-08 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/302950248 service: meetup - name: Atlanta Ruby - Monthly Meetup October 2024 location: Online date: 2024-10-09 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/303393799 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup October 2024 location: Indianapolis, IN date: 2024-10-09 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/303535514 service: meetup - name: Paris Ruby Workshop - Workshop chez October 2024 location: Paris, France date: 2024-10-09 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris-ruby-workshop/events/303530497 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2024 location: Kaohsiung, Taiwan date: 2024-10-09 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303523489 service: meetup - name: Ruby Montevideo - Meetup - Octubre 2024 location: Montevideo, Uruguay date: 2024-10-09 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/303647128 service: meetup - name: Ruby Usergroup Hamburg - Oktober 2024 location: Hamburg, Germany date: 2024-10-09 start_time: 21:00:00 CEST end_time: 23:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-oktober-2024-915 - name: 'African Ruby Community - Ruby Thursdays: To be determined October 2024' location: Online date: 2024-10-10 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/301578294 service: meetup - name: Cologne.rb - Oktober 2024 Meetup location: Köln, Germany date: 2024-10-10 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/cologne-rb/events/302980609 service: meetup - name: SF Bay Area Ruby - Meetup in October @ Chime location: San Francisco, CA date: 2024-10-10 start_time: 17:30:00 PDT end_time: 21:00:00 PDT url: https://luma.com/jfpfmh19 service: luma - name: Slovenia Ruby User Group - Autumn Ruby meetup location: Ljubljana, Slovenia date: 2024-10-10 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/rubyslovenia/events/303763298 service: meetup - name: 'STLRuby - Bring Your Ruby Tricks: A Fun Exploration of Ruby’s Quirks' location: University City, MO date: 2024-10-13 start_time: 13:00:00 CDT end_time: 15:00:00 CDT url: https://www.meetup.com/stlruby/events/303298491 service: meetup - name: London Ruby User Group - October 2024 Meeting location: London, UK date: 2024-10-14 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2024/october - name: Orange County Ruby - Ruby Science October 2024 location: Online date: 2024-10-14 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/303624231 service: meetup - name: Boston Ruby Group - October 2024 meeting location: Boston, MA date: 2024-10-15 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/0gm8qrp5 service: luma - name: RubyJax - Open Hax October 2024 location: Jacksonville, FL date: 2024-10-15 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303650775 service: meetup - name: VanRuby - Klue + Ruby - Past, Present & Future location: Vancouver, Canada date: 2024-10-15 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/303533573 service: meetup - name: York Ruby - Monthly Meeting October 2024 location: York, UK date: 2024-10-15 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://www.meetup.com/yorkdevelopers/events/303522212 service: meetup - name: Boulder Ruby - October 2024 Presentation Night location: Boulder, CO date: 2024-10-16 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/57vrruyr service: luma - name: Geneva.rb - Developer Tooling for the Modern Rails & Hotwire era (Marco Roth) location: Genève, Switzerland date: 2024-10-16 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/303018643 service: meetup - name: Portland Ruby Brigade - Cocktails + Code October 2024 location: Portland, OR date: 2024-10-16 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/303526402 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2024 location: Kaohsiung, Taiwan date: 2024-10-16 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303660345 service: meetup - name: Ruby Buenos Aires - Ruby Meetup - Octubre 2024 - View Components location: Online date: 2024-10-16 start_time: 19:00:00 -03 end_time: 21:00:00 -03 url: https://www.meetup.com/rubyba/events/304012554 service: meetup - name: Rzeszow Ruby User Group - RRUG#40 Sidekiq. Git internals. location: Rzeszów, Poland date: 2024-10-16 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/rzeszow-ruby-user-group/events/303625550 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup October 2024 location: Online date: 2024-10-16 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/303590621 service: meetup - name: 'Christchurch Ruby Group - Monthly Meetup: TBD October 2024' location: Christchurch, New Zealand date: 2024-10-17 start_time: 19:30:00 NZST end_time: 22:30:00 NZST url: https://christchurch.ruby.nz - name: North West Ruby User Group - Modernising Ruby Systems with Rage location: Manchester, UK date: 2024-10-17 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/october-2024-modernising-ruby-systems-with-rage - name: 'Polish Ruby User Group - Ruby Warsaw Meetup AI Edition #October' location: Warszawa, Poland date: 2024-10-17 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/303621402 service: meetup - name: RubyJax - Lightning Talks location: Jacksonville Beach, FL date: 2024-10-17 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/303705839 service: meetup - name: 'ada.rb - Live: O que rolou na Rails World 2024?' location: Online date: 2024-10-17 start_time: 19:45:00 -03 end_time: 21:15:00 -03 url: https://www.meetup.com/arquitetura-e-design-de-aplicacoes-ruby/events/303831529 service: meetup - name: African Ruby Community - Call for Speakers for Ruby Mini Conference location: Nairobi, Kenya date: 2024-10-18 start_time: 18:00:00 EAT end_time: 19:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/301578289 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers October 2024 location: Adelaide, Australia date: 2024-10-18 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/303700238 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop October 2024 location: Online date: 2024-10-19 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/303722099 service: meetup - name: Pune Ruby Users Group - October Meetup location: Pune, India date: 2024-10-19 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://www.meetup.com/punerubymeetup/events/303700137 service: meetup - name: 'Auckland Ruby - Ruby Night October: DDD from Richard, Litestack from Juri' location: Auckland, New Zealand date: 2024-10-21 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/299606029 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup October 2024 location: Columbus, OH date: 2024-10-21 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/303256232 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #134 Październik 2024' location: Wrocław, Poland date: 2024-10-21 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/304084691 service: meetup - name: Miami Ruby Brigade - October 2024 location: Coral Gables, FL date: 2024-10-21 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/303719541 service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #3 / 2024' location: Online date: 2024-10-22 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/krug service: luma - name: 'Krakow Ruby Users Group (KRUG) - KRUG #3 / 2024 powered by Maxio' location: Kraków, Poland date: 2024-10-22 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://www.meetup.com/krakow-ruby-users-group/events/303783863 service: meetup - name: RubyJax - Open Hax October 2024 location: Jacksonville, FL date: 2024-10-22 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303795300 service: meetup - name: 'Saigon.rb - Ruby Tuesday #22' location: Quận 1, Viet Nam date: 2024-10-22 start_time: 19:00:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/saigonrb/events/304022497 service: meetup - name: Toulouse.rb - Conf & Apéro - Octobre location: Toulouse, France date: 2024-10-22 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/toulouse-ruby-friends/events/303370450 service: meetup - name: 'Upstate Ruby - Rails World 2024: Greenville Edition' location: Greenville, SC date: 2024-10-22 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/upstate-ruby/events/303984045 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2024 location: Kaohsiung, Taiwan date: 2024-10-23 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303807998 service: meetup - name: Ruby Türkiye - Virtual Meetup October 2024 location: Online date: 2024-10-23 start_time: 20:00:00 TRT end_time: 22:00:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202406-11d3bd62 - name: Austin.rb - Ruby Social - Evening location: Austin, TX date: 2024-10-24 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/302552273 service: meetup - name: Melbourne Ruby - October 2024 location: Southbank, Australia date: 2024-10-24 start_time: 18:00:00 AEDT end_time: 21:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/297781289 service: meetup - name: Ruby Zagreb - RubyZG October meetup @ Kodius location: Zagreb, Croatia date: 2024-10-24 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/303954490 service: meetup - name: Toronto Ruby - October 2024 Edition location: Toronto, Canada date: 2024-10-24 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://luma.com/tjqs6iky service: luma - name: Nantes.rb - Ruby talk location: Nantes, France date: 2024-10-28 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/nantes-rb/events/303898436 service: meetup - name: Orange County Ruby - Ruby Science October 2024 location: Online date: 2024-10-28 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/303904064 service: meetup - name: Ruby on Rails Latvia - Ruby community meetup – October 2024 location: Riga, Latvia date: 2024-10-28 start_time: 17:00:00 EET end_time: 19:00:00 EET url: https://www.meetup.com/ruby-on-rails-latvia/events/303829526 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #58' location: เขตวัฒนา, Thailand date: 2024-10-29 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/304156776 service: meetup - name: "Lyon.rb - 2024.10 / The Spooky Rails Edition \U0001F383 \U0001F47B" location: Lyon, France date: 2024-10-29 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/lyonrb/events/303824727 service: meetup - name: RubyJax - Open Hax October 2024 location: Jacksonville, FL date: 2024-10-29 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/303930500 status: cancelled service: meetup - name: WNB.rb - October 2024 location: Online date: 2024-10-29 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://www.wnb-rb.dev/meetups - name: Rails Taiwan - 高雄 Rails Meetup October 2024 location: Kaohsiung, Taiwan date: 2024-10-30 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303937943 service: meetup - name: Winnipeg Ruby User Group - Integrating Threat Modelling + Keeping Rails App Development Fast location: Winnipeg, Canada date: 2024-10-30 start_time: 17:30:00 CDT end_time: 19:30:00 CDT url: https://www.meetup.com/winnipegrb/events/303877241 service: meetup - name: Orange County Ruby - Meetup October 2024 location: Dana Point, CA date: 2024-10-31 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/303970385 status: cancelled service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers November 2024 location: Adelaide, Australia date: 2024-11-01 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/303973001 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop November 2024 location: Online date: 2024-11-02 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/303722089 service: meetup - name: Boston Ruby Group - November 2024 meeting location: Boston, MA date: 2024-11-04 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/zs5he82r service: luma - name: 'Barcelona.rb - meetup #November' location: Barcelona, Spain date: 2024-11-05 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/barcelona-rb/events/304030335 service: meetup - name: 'Bluegrass Ruby - November: Rails 8' location: Lexington, KY date: 2024-11-05 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/the-bluegrass-developers-guild/events/303848730 service: meetup - name: Charlotte Ruby - Ruby Hack Night November 2024 location: Online date: 2024-11-05 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/301353973 service: meetup - name: Paris.rb - November 2024 location: Paris, France date: 2024-11-05 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/paris_rb/events/303637189 service: meetup - name: 'Ruby Malaysia - Ruby Tuesdays KL #111' location: Kuala Lumpur, Malaysia date: 2024-11-05 start_time: 18:30:00 +08 end_time: 20:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/304019968 service: meetup - name: RubyJax - Open Hax November 2024 location: Jacksonville, FL date: 2024-11-05 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304051365 service: meetup - name: Seattle.rb - November 2024 location: Seattle, WA date: 2024-11-05 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=24 - name: 'Tech Kafi #ruby: Kamal' location: Bern, Switzerland date: 2024-11-05 start_time: 11:00:00 CET end_time: 12:00:00 CET url: https://www.puzzle.ch/events/tech-kafi-ruby-kamal - name: Cleveland Ruby Brigade - Tools for the Dev Toolbox location: Independence, OH date: 2024-11-06 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/clevelandruby/events/304161797 service: meetup - name: 'Montreal.rb - Hack Night: Hunt The Wampus - Part 1 (The Model)' location: Montreal, Canada date: 2024-11-06 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/montrealrb/events/303804858 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby November 2024 location: Prague, Czechia date: 2024-11-06 start_time: 19:00:00 CET end_time: 19:00:00 CET url: https://www.meetup.com/praguerb/events/304064331 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2024 location: Kaohsiung, Taiwan date: 2024-11-06 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/303720985 service: meetup - name: Valencia.rb - Spain Triangle project - Ruby Europe Initiative & Kick-off location: Valencia, Spain date: 2024-11-06 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/vlctechhub/events/304025350 status: cancelled service: meetup - name: Madrid.rb - Ruby Europe - Madrid location: Madrid, Spain date: 2024-11-07 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.madridrb.com/events/ruby-europe-madrid-1046 - name: Ruby User Group Berlin - November Meetup 2024 location: Berlin, Germany date: 2024-11-07 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/november-meetup-2024-947 - name: SD Ruby - Monthly Meetup November 2024 location: San Diego, CA date: 2024-11-07 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/sdruby/events/303820136 service: meetup - name: Orange County Ruby - Ruby Science November 2024 location: Online date: 2024-11-11 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/304147462 service: meetup - name: Austin.rb - Hanami, An Alternative To Rails location: Austin, TX date: 2024-11-12 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/297610758 service: meetup - name: B'more on Rails - Monthly Meetup November 2024 location: Online date: 2024-11-12 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/bmore-on-rails/events/303140100 status: cancelled service: meetup - name: Philly.rb - Pubnite November 2024 location: Online date: 2024-11-12 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/304172825 service: meetup - name: Polish Ruby User Group - BRUG location: Białystok, Poland date: 2024-11-12 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/304377586 service: meetup - name: Ruby Buenos Aires - Noviembre 2024 - IA + Testing location: C1414CKQ, Argentina date: 2024-11-12 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/rubyba/events/304387497 service: meetup - name: Ruby Montevideo - Meetup - Noviembre 2024 location: Montevideo, Uruguay date: 2024-11-12 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/304398172 service: meetup - name: RubyJax - Open Hax November 2024 location: Jacksonville, FL date: 2024-11-12 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304172319 service: meetup - name: Utah Ruby Users Group - Topic TBD November 2024 location: Lehi, UT date: 2024-11-12 start_time: 19:00:00 MST end_time: 21:00:00 MST url: https://www.meetup.com/utah-ruby-users-group/events/302953305 service: meetup - name: Atlanta Ruby - Rails 8 is Live Open Topics Night! location: Online date: 2024-11-13 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/atlantaruby/events/304189595 service: meetup - name: Geneva.rb - Rails deployment with Kamal (Sean Carroll, GitLab) location: Genève, Switzerland date: 2024-11-13 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/303018670 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup November 2024 location: Indianapolis, IN date: 2024-11-13 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/indyrb/events/304188995 service: meetup - name: 'NYC.rb - Kamal 2: A Simpler Way to Deploy Ruby Applications' location: Online date: 2024-11-13 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/301063000 service: meetup - name: Paris Ruby Workshop - Workshop chez November 2024 location: Paris, France date: 2024-11-13 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris-ruby-workshop/events/304184381 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2024 location: Kaohsiung, Taiwan date: 2024-11-13 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/304434119 service: meetup - name: Ruby Usergroup Hamburg - November 2024 location: Hamburg, Germany date: 2024-11-13 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-november-2024-1013 - name: Singapore Ruby Group - Ruby SG November Meetup location: Singapore date: 2024-11-13 start_time: 18:30:00 +08 end_time: 20:30:00 +08 url: https://luma.com/29fzctx5 service: luma - name: Rzeszow Ruby User Group - RRUG#41 Functional Programming. Flaky tests. location: Rzeszów, Poland date: 2024-11-14 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/rzeszow-ruby-user-group/events/304395509 service: meetup - name: Vilnius.rb - open lecture at VilniusTech. location: Vilnius, Lithuania date: 2024-11-14 start_time: 14:00:00 EET end_time: 15:00:00 EET url: https://www.meetup.com/vilniusrb/events/304506053 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers November 2024 location: Adelaide, Australia date: 2024-11-15 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/304213704 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop November 2024 location: Online date: 2024-11-16 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304228425 status: cancelled service: meetup - name: Pune Ruby Users Group - November Ruby Meetup location: Pune, India date: 2024-11-16 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://www.meetup.com/punerubymeetup/events/304252082 service: meetup - name: 'Ruby Nepal - Ruby and Rails Nepal meetup - Episode #28' location: Kathmandu, Nepal date: 2024-11-16 start_time: 12:30:00 +0545 end_time: 14:30:00 +0545 url: https://www.meetup.com/nepal-ruby-users-group/events/303542484 status: cancelled service: meetup - name: 'Auckland Ruby - Final Ruby Night 2024: Spec-taculous rspec, Advanced Caching for CI/CD Pipelines' location: Auckland, New Zealand date: 2024-11-18 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/299606033 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup November 2024 location: Columbus, OH date: 2024-11-18 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/columbusrb/events/303256250 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #135 Listopad 2024' location: Wrocław, Poland date: 2024-11-18 start_time: 19:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/drugpl/events/304496724 service: meetup - name: Miami Ruby Brigade - November 2024 location: Coral Gables, FL date: 2024-11-18 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/miamirb/events/304278515 service: meetup - name: 'Robalos.rb - Robalos #1' location: Figueira da Foz, Portugal date: 2024-11-19 start_time: 18:00:00 WEST end_time: 19:00:00 WEST url: https://www.meetup.com/robalos-rb/events/303543758 service: meetup - name: RubyJax - Open Hax November 2024 location: Jacksonville, FL date: 2024-11-19 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304297455 service: meetup - name: SF Bay Area Ruby - Meetup in November @ Academia.edu location: San Francisco, CA date: 2024-11-19 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/f4pfsigc service: luma - name: South West Ruby - informal meetup location: Bristol , UK date: 2024-11-19 start_time: 18:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/south-west-ruby/events/304039254 service: meetup - name: Toulouse.rb - Conf & Apéro - Novembre location: Toulouse, France date: 2024-11-19 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/toulouse-ruby-friends/events/304416126 service: meetup - name: Portland Ruby Brigade - Cocktails + Code November 2024 location: Portland, OR date: 2024-11-20 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/portland-ruby-brigade/events/304311681 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2024 location: Kaohsiung, Taiwan date: 2024-11-20 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/304559651 service: meetup - name: Ruby Türkiye - Virtual Meetup November 2024 location: Online date: 2024-11-20 start_time: 20:00:00 TRT end_time: 22:00:00 TRT url: https://kommunity.com/ruby-turkiye/events/leveling-up-developer-tooling-for-the-modern-rails-hotwire-era-671f5b80 - name: VanRuby - Thinkific location: Vancouver, Canada date: 2024-11-20 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/vancouver-ruby/events/303769344 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup November 2024 location: Online date: 2024-11-20 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/304251200 service: meetup - name: 'Christchurch Ruby Group - Monthly Meetup: TBD November 2024' location: Christchurch, New Zealand date: 2024-11-21 start_time: 19:30:00 NZST end_time: 22:30:00 NZST url: https://christchurch.ruby.nz - name: North West Ruby User Group - A Test-Driven Development Workshop location: Manchester, UK date: 2024-11-21 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/a-test-driven-development-workshop - name: Ruby Wellington - November Meetup - Data Engineering and Browser Automation location: Wellington, New Zealand date: 2024-11-21 start_time: 17:10:00 NZDT end_time: 19:10:00 NZDT url: https://www.meetup.com/rubywellington/events/300206003 service: meetup - name: Orange County Ruby - Ruby Science November 2024 location: Online date: 2024-11-25 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/304251005 service: meetup - name: Toronto Ruby - One Year Anniversary location: Toronto, Canada date: 2024-11-25 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://luma.com/xbuggh8i service: luma - name: 'Bangkok.rb - Ruby Tuesday #59' location: เขตวัฒนา, Thailand date: 2024-11-26 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/304666405 service: meetup - name: "Lyon.rb - 2024.11 / The Pumpkin-Spiced Edition \U0001F383 \U0001F341" location: Lyon, France date: 2024-11-26 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/lyonrb/events/304303057 service: meetup - name: Nantes.rb - Ruby Talk! location: Nantes, France date: 2024-11-26 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/nantes-rb/events/304434830 service: meetup - name: Ruby Zagreb - RubyZG November meetup @ Mews location: Zagreb, Croatia date: 2024-11-26 start_time: 18:00:00 CET end_time: 19:30:00 CET url: https://www.meetup.com/rubyzg/events/304582338 service: meetup - name: RubyJax - Open Hax November 2024 location: Jacksonville, FL date: 2024-11-26 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304425763 service: meetup - name: 'Saigon.rb - Ruby Tuesday #23' location: Quận 1, Viet Nam date: 2024-11-26 start_time: 19:00:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/saigonrb/events/304573703 service: meetup - name: WNB.rb - November 2024 location: Online date: 2024-11-26 start_time: 12:00:00 EST end_time: 13:00:00 EST url: https://www.wnb-rb.dev/meetups - name: York Ruby - Monthly Meeting November 2024 location: York, UK date: 2024-11-26 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/304199919 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2024 location: Kaohsiung, Taiwan date: 2024-11-27 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/304398181 service: meetup - name: Ruby on Rails Switzerland - Railshöck at On location: Zürich, Switzerland date: 2024-11-27 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/rubyonrails-ch/events/301751612 service: meetup - name: Stockholm Ruby - Winterish Ruby Meetup location: 111 57 Stockholm, Sweden date: 2024-11-27 start_time: 17:30:00 CEST end_time: 21:00:00 CEST url: https://luma.com/56s5dtmn service: luma - name: Cologne.rb - November 2024 Meetup (Weihnachtsedition inkl Glühwein) location: Köln, Germany date: 2024-11-28 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/cologne-rb/events/304283868 service: meetup - name: Dresden.rb - Erstes Treffen der neuen Ruby User Group Dresden location: Dresden, Germany date: 2024-11-28 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://dresdenrb.onruby.de/events/erstes-treffen-der-neuen-ruby-user-group-dresden-980 - name: Melbourne Ruby - Meetup November 2024 location: Southbank, Australia date: 2024-11-28 start_time: 18:00:00 AEDT end_time: 21:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/297781304 service: meetup - name: Orange County Ruby - Meetup November 2024 location: Dana Point, CA date: 2024-11-28 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ocruby/events/304467971 status: cancelled service: meetup - name: Philippine Ruby Users Group - PhRUG - Bridge to Simpilcity location: Quezon City, Philippines date: 2024-11-28 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/304521596 service: meetup - name: Poznań Ruby User Group - PoznańRubyUserGroup November 2024 location: 60-810 Poznań, Poland date: 2024-11-28 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://luma.com/ozz5sd6d service: luma - name: African Ruby Community - Topic:Generative AI Foundations location: Nairobi, Kenya date: 2024-11-29 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304777542 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers November 2024 location: Adelaide, Australia date: 2024-11-29 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/304469456 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop November 2024 location: Online date: 2024-11-30 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/301647150 service: meetup - name: 'Bluegrass Ruby - November: Rails 8' location: Lexington, KY date: 2024-12-03 start_time: 18:00:00 EST end_time: 19:30:00 EST url: https://www.meetup.com/the-bluegrass-developers-guild/events/304547002 service: meetup - name: Charlotte Ruby - Ruby Hack Night December 2024 location: Online date: 2024-12-03 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/304550482 service: meetup - name: Ottawa Ruby - End Of Year Social! location: Ottawa, Canada date: 2024-12-03 start_time: 17:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/ottawaruby/events/304117874 service: meetup - name: Paris.rb - December 2024 location: Paris, France date: 2024-12-03 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/paris_rb/events/303637325 service: meetup - name: "Ruby Ireland - \U0001F384Have Yourself a Quizzy Little Christmas - Techie Charity Quiz 2024" location: Dublin 7, Ireland date: 2024-12-03 start_time: 18:30:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/rubyireland/events/304626932 service: meetup - name: 'Ruby Malaysia - Ruby Tuesdays KL #112' location: Kuala Lumpur, Malaysia date: 2024-12-03 start_time: 18:30:00 +08 end_time: 20:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/304645794 service: meetup - name: RubyJax - Open Hax December 2024 location: Jacksonville, FL date: 2024-12-03 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304552199 service: meetup - name: "SF Bay Area Ruby - SF Ruby presents: Ruby&AI, December \U0001F385 edition @ Sentry" location: San Francisco, CA date: 2024-12-03 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/q7fwrtj2 service: luma - name: Seattle.rb - December 2024 location: Seattle, WA date: 2024-12-03 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=25 - name: 'Montreal.rb - Hack Night: Hunt The Wampus - Part 2 (The View)' location: Montreal, Canada date: 2024-12-04 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/montrealrb/events/304095501 service: meetup - name: Prague.rb - PubQuiz night @ First Wednesday Of The Month - Ruby location: Prague, Czechia date: 2024-12-04 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/304564967 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2024 location: Kaohsiung, Taiwan date: 2024-12-04 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/304398185 service: meetup - name: Singapore Ruby Group - Ruby SG December Meetup location: Singapore date: 2024-12-04 start_time: 18:30:00 +08 end_time: 20:30:00 +08 url: https://luma.com/w1umr3hv service: luma - name: SD Ruby - Monthly Meetup location: San Diego, CA date: 2024-12-05 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/sdruby/events/303820137 service: meetup - name: 'VanRuby - Git Push to 2025: Devs Social Party' location: Vancouver, Canada date: 2024-12-05 start_time: 17:30:00 PST end_time: 19:30:00 PST url: https://www.meetup.com/vancouver-ruby/events/304726873 service: meetup - name: 'vienna.rb - #62 - Ruby December Meetup' location: Wien, Austria date: 2024-12-05 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/vienna-rb/events/304271765 service: meetup - name: Ruby Wellington - End of Year Social Catch-up location: Wellington, New Zealand date: 2024-12-06 start_time: 17:30:00 NZDT end_time: 19:30:00 NZDT url: https://www.meetup.com/rubywellington/events/304606895 service: meetup - name: SF Bay Area Ruby - East Bay Ruby Holiday Happy Hour location: Oakland, CA date: 2024-12-06 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://luma.com/wob1tny2 service: luma - name: London Ruby User Group - December 2024 Meeting location: London, UK date: 2024-12-09 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2024/december - name: Orange County Ruby - Ruby Science December 2024 location: Online date: 2024-12-09 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/304652574 service: meetup - name: Austin.rb - End of Year Ruby Social location: Austin, TX date: 2024-12-10 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/297610760 service: meetup - name: B'more on Rails - Monthly Meetup December 2024 location: Online date: 2024-12-10 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/bmore-on-rails/events/303140116 status: cancelled service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #4 / 2024 powered by Zendesk' location: Kraków, Poland date: 2024-12-10 start_time: 18:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/krakow-ruby-users-group/events/304882542 service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #4 / 2024 powered by Zendesk' location: Online date: 2024-12-10 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/krug service: luma - name: Philly.rb - Pubnite December 2024 location: Online date: 2024-12-10 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/304629934 service: meetup - name: RubyJax - Open Hax December 2024 location: Jacksonville, FL date: 2024-12-10 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304677738 service: meetup - name: Utah Ruby Users Group - Topic TBD location: Lehi, UT date: 2024-12-10 start_time: 19:00:00 MST end_time: 21:00:00 MST url: https://www.meetup.com/utah-ruby-users-group/events/302953317 service: meetup - name: Atlanta Ruby - Object Inspection [in Ruby] with Paul DobbinSchmaltz location: Online date: 2024-12-11 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/atlantaruby/events/304537407 service: meetup - name: Bangkok.rb - Ruby-Python Pool/Darts/Jenga Festive Mixer location: Bangkok , Thailand date: 2024-12-11 start_time: 18:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/304912695 service: meetup - name: Boulder Ruby - December 2024 Presentation Night location: Boulder, CO date: 2024-12-11 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/y1c2jita service: luma - name: Brighton Ruby Group - Silicon Brighton Big Festive Meetup location: Hove, UK date: 2024-12-11 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://www.meetup.com/brighton-ruby-group/events/304303023 service: meetup - name: Copenhagen Ruby Brigade - Julespecial - fun and games at Abtion location: København, Denmark date: 2024-12-11 start_time: 17:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/copenhagen-ruby-brigade/events/304755489 service: meetup - name: Geneva.rb - More everyday performance rules for Ruby on Rails developers (Alexis Bernard) location: Genève, Switzerland date: 2024-12-11 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/303018673 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup December 2024 location: Indianapolis, IN date: 2024-12-11 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/indyrb/events/304698514 status: cancelled service: meetup - name: NYC.rb - Celebrate 2024 with Lean Coffee! location: Online date: 2024-12-11 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/304697740 service: meetup - name: Paris Ruby Workshop - Workshop chez December 2024 location: Paris, France date: 2024-12-11 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris-ruby-workshop/events/304692685 status: cancelled service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2024 location: Kaohsiung, Taiwan date: 2024-12-11 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/304934011 service: meetup - name: Ruby Usergroup Hamburg - Chrismas Edition - Dezember 2024 location: Hamburg, Germany date: 2024-12-11 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-chrismas-edition-dezember-2024-916 - name: Valencia.rb - reinauguración del grupo de Ruby location: Valencia, Spain date: 2024-12-11 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/vlctechhub/events/304814718 service: meetup - name: DenHaag.rb - Den Haag Ruby Meetup but then in Rotterdam location: Rotterdam, Netherlands date: 2024-12-12 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/denhaagrb/events/304522962 service: meetup - name: Rotterdam.rb - Talks, Food & Drinks location: Rotterdam, Netherlands date: 2024-12-12 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/rotterdam-rb/events/304125044 service: meetup - name: Scottish Ruby User Group - Merry Ruby Christmas 2024 ! location: Online date: 2024-12-12 start_time: 18:00:00 GMT end_time: 19:30:00 GMT url: https://www.meetup.com/scotrug/events/304950930 service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers December 2024 location: Adelaide, Australia date: 2024-12-13 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/304722297 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop December 2024 location: Online date: 2024-12-14 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339811 service: meetup - name: Pune Ruby Users Group - December 2024 Meetup with ReactJS & Friends location: Pune, India date: 2024-12-14 start_time: 10:00:00 IST end_time: 14:00:00 IST url: https://www.meetup.com/punerubymeetup/events/304756374 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup December 2024 location: Columbus, OH date: 2024-12-16 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/columbusrb/events/304784434 status: cancelled service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #136 Grudzień 2024' location: Wrocław, Poland date: 2024-12-16 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/drugpl/events/305014805 service: meetup - name: Miami Ruby Brigade - December 2024 location: Coral Gables, FL date: 2024-12-16 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/miamirb/events/304785659 service: meetup - name: Latvian Ruby Community - Ruby community meetup – December 2024 location: LV-1039, Latvia date: 2024-12-17 start_time: 17:00:00 EEST end_time: 20:30:00 EEST url: https://luma.com/lzhx6jnz service: luma - name: Nantes.rb - Ruby au Melting Potes! location: Nantes, France date: 2024-12-17 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/nantes-rb/events/304903746 service: meetup - name: Ruby Zagreb - RubyZG December drinkup location: Zagreb, Croatia date: 2024-12-17 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/rubyzg/events/304954096 service: meetup - name: Ruby on Rails Latvia - Ruby community meetup - December 2024 location: Riga, Latvia date: 2024-12-17 start_time: 17:00:00 EET end_time: 20:00:00 EET url: https://www.meetup.com/ruby-on-rails-latvia/events/304912925 service: meetup - name: RubyJax - Open Hax December 2024 location: Jacksonville, FL date: 2024-12-17 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304803900 service: meetup - name: Toulouse.rb - Conf & Apéro - Décembre location: Toulouse, France date: 2024-12-17 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/toulouse-ruby-friends/events/304627678 service: meetup - name: York Ruby - Monthly Meeting December 2024 location: York, UK date: 2024-12-17 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/304876510 service: meetup - name: NYC.rb - Celebrate 2024 in-person! location: New York, NY date: 2024-12-18 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/nyc-rb/events/304976995 service: meetup - name: Portland Ruby Brigade - Cocktails + Code December 2024 location: Portland, OR date: 2024-12-18 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/portland-ruby-brigade/events/304759703 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2024 location: Kaohsiung, Taiwan date: 2024-12-18 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305047400 service: meetup - name: Ruby Türkiye - Virtual Meetup December 2024 location: Online date: 2024-12-18 start_time: 20:00:00 TRT end_time: 22:00:00 TRT url: https://kommunity.com/ruby-turkiye/events/aksam-oturmasi-202408-be842d65 - name: Vilnius.rb - VRB December meetup location: Vilnius, Lithuania date: 2024-12-18 start_time: 18:00:00 EET end_time: 21:00:00 EET url: https://www.meetup.com/vilniusrb/events/305016767 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup December 2024 location: Online date: 2024-12-18 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/304816153 service: meetup - name: 'Barcelona.rb - BARcelona.rb - let''s have some beers together at #December' location: Barcelona, Spain date: 2024-12-19 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/barcelona-rb/events/305046659 service: meetup - name: 'Christchurch Ruby Group - Monthly Meetup: TBD December 2024' location: Christchurch, New Zealand date: 2024-12-19 start_time: 19:30:00 NZST end_time: 22:30:00 NZST url: https://christchurch.ruby.nz - name: North West Ruby User Group - Festive Social at Cafe Beermoth location: Manchester, UK date: 2024-12-19 start_time: 19:30:00 BST end_time: 21:30:00 BST url: https://nwrug.org/events/festive-social-at-cafe-beermoth - name: 'Polish Ruby User Group - Warsaw meetup #December' location: Warszawa, Poland date: 2024-12-19 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/305029300 service: meetup - name: Orange County Ruby - Ruby Science December 2024 location: Online date: 2024-12-23 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/304901237 service: meetup - name: RubyJax - Open Hax December 2024 location: Jacksonville, FL date: 2024-12-24 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/304926026 status: cancelled service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2024 location: Kaohsiung, Taiwan date: 2024-12-25 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305162902 service: meetup - name: Orange County Ruby - Meetup December 2024 location: Dana Point, CA date: 2024-12-26 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ocruby/events/304760444 status: cancelled service: meetup - name: Ruby and Rails Adelaide - Ruby Burgers location: Adelaide, Australia date: 2024-12-27 start_time: 18:00:00 ACDT end_time: 20:00:00 ACDT url: https://www.meetup.com/adelaiderb/events/304967245 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop December 2024 location: Online date: 2024-12-28 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339813 service: meetup - name: RubyJax - Open Hax December 2024 location: Jacksonville, FL date: 2024-12-31 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305039696 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby January 2025 location: Prague, Czechia date: 2025-01-01 start_time: 19:00:00 CET end_time: 19:00:00 CET url: https://www.meetup.com/praguerb/events/305052820 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup January 2025 location: Kaohsiung, Taiwan date: 2025-01-01 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305264143 service: meetup - name: Orange County Ruby - Ruby Science January 2025 location: Online date: 2025-01-06 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/304997353 service: meetup - name: 'Bluegrass Ruby - January 2025: Rails 8' location: Lexington, KY date: 2025-01-07 start_time: 18:00:00 EST end_time: 19:30:00 EST url: https://www.meetup.com/the-bluegrass-developers-guild/events/305020795 status: cancelled service: meetup - name: Charlotte Ruby - Ruby Hack Night January 2025 location: Online date: 2025-01-07 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/304997364 service: meetup - name: NYC.rb - Meet up - Jan 2025 location: New York, NY date: 2025-01-07 start_time: 17:00:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/305382630 service: meetup - name: Paris.rb - Meetup January 2025 location: Paris, France date: 2025-01-07 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/paris_rb/events/304758193 service: meetup - name: RubyJax - Open Hax January 2025 location: Jacksonville, FL date: 2025-01-07 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305156103 service: meetup - name: Seattle.rb - January 2025 location: Seattle, WA date: 2025-01-07 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=26 - name: Atlanta Ruby - Gabe Torres on Building Multiplayer Minesweeper in Rails 8 location: Online date: 2025-01-08 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/atlantaruby/events/304537410 service: meetup - name: Boulder Ruby - Jan 2025 Presentation Night location: Boulder, CO date: 2025-01-08 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/vyiivomc service: luma - name: ChicagoRuby - New Year. New Ruby. New Rails. Welcome Ruby 3.4 + Rails 8! location: Chicago, IL date: 2025-01-08 start_time: 18:00:00 CST end_time: 20:00:00 CST url: https://www.meetup.com/chicagoruby/events/304769227 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup January 2025 location: Indianapolis, IN date: 2025-01-08 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/indyrb/events/305174267 service: meetup - name: NYC.rb - Event January 2025 location: Online date: 2025-01-08 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/304997372 service: meetup - name: Paris Ruby Workshop - Workshop chez January 2025 location: Paris, France date: 2025-01-08 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris-ruby-workshop/events/305169274 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup January 2025 location: Kaohsiung, Taiwan date: 2025-01-08 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305377704 service: meetup - name: Ruby Usergroup Hamburg - Januar 2025 location: Hamburg, Germany date: 2025-01-08 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-januar-2025-1178 - name: 'African Ruby Community - Ruby Thursdays: To be determined January 2025' location: Online date: 2025-01-09 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304997374 service: meetup - name: Ruby User Group Berlin - (tentative) January Meetup location: Berlin, Germany date: 2025-01-09 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.rug-b.de/events/tentative-january-meetup-1112 - name: African Ruby Community - Kampala Chapter Mini workshop January 2025 location: Online date: 2025-01-11 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339816 status: cancelled service: meetup - name: 'Robalos.rb - Watch together: "Pensar o Futuro: Ética e Justiça na Era da IA"' location: Figueira da Foz, Portugal date: 2025-01-11 start_time: 15:00:00 WEST end_time: 18:00:00 WEST url: https://www.meetup.com/robalos-rb/events/305460446 service: meetup - name: London Ruby User Group - January 2025 Meeting location: London, UK date: 2025-01-13 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2025/january - name: Austin.rb - What's new in Ruby 3.4? location: Austin, TX date: 2025-01-14 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/304960558 service: meetup - name: B'more on Rails - Monthly Meetup January 2025 location: Online date: 2025-01-14 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/bmore-on-rails/events/304997376 service: meetup - name: Brighton Ruby Group - January Evening Meetup location: Brighton, UK date: 2025-01-14 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://www.meetup.com/brighton-ruby-group/events/304413084 service: meetup - name: Philly.rb - Pubnite January 2025 location: Online date: 2025-01-14 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/304568429 service: meetup - name: RubyJax - Open Hax January 2025 location: Jacksonville, FL date: 2025-01-14 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305257944 service: meetup - name: 'Geneva.rb - Beyond the Basics: Tackling Edge Cases in Slow Ruby on Rails Code (J.-C. Santi)' location: Genève, Switzerland date: 2025-01-15 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/304627310 service: meetup - name: Montreal.rb - Responsibility Driven Design in Ruby location: Montréal, Canada date: 2025-01-15 start_time: 18:30:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/montrealrb/events/305005846 service: meetup - name: Portland Ruby Brigade - Cocktails + Code January 2025 location: Portland, OR date: 2025-01-15 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/portland-ruby-brigade/events/304874199 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup January 2025 location: Kaohsiung, Taiwan date: 2025-01-15 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305515327 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup January 2025 location: Online date: 2025-01-15 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/304997379 service: meetup - name: Munich Ruby User Group - Ruby Meetup January 2025 location: München, Germany date: 2025-01-16 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/munich-rubyshift-ruby-user-group/events/301843343 service: meetup - name: RubyJax - Intro to WebSockets location: Online date: 2025-01-16 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/rubyjax/events/304217938 service: meetup - name: SF Bay Area Ruby - SF Ruby January Meetup @ Productboard location: San Francisco, CA date: 2025-01-16 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/goujxu3a service: luma - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #137 Styczeń 2025' location: Wrocław, Poland date: 2025-01-20 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/drugpl/events/305634530 service: meetup - name: Miami Ruby Brigade - January 2025 location: Coral Gables, FL date: 2025-01-20 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/miamirb/events/305353771 service: meetup - name: Orange County Ruby - Ruby Science January 2025 location: Online date: 2025-01-20 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/305349007 service: meetup - name: VanRuby - The Past, Present, and Future of Ul at GitHub location: Vancouver, Canada date: 2025-01-20 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/vancouver-ruby/events/305550913 service: meetup - name: RubyJax - Open Hax January 2025 location: Jacksonville, FL date: 2025-01-21 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305369001 service: meetup - name: Toulouse.rb - Conf & Apéro - Janvier location: Toulouse, France date: 2025-01-21 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/toulouse-ruby-friends/events/304951231 service: meetup - name: York Ruby - Monthly Meeting January 2025 location: York, UK date: 2025-01-21 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/305337219 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup January 2025 location: Kaohsiung, Taiwan date: 2025-01-22 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305645957 service: meetup - name: Ruby Türkiye - Virtual Meetup January 2025 location: Online date: 2025-01-22 start_time: 20:00:00 TRT end_time: 22:00:00 TRT url: https://kommunity.com/ruby-turkiye/events/the-present-and-future-of-sqlite-on-rails-79926ab2 - name: Ruby in London - with Ophelos location: London, UK date: 2025-01-22 start_time: 17:30:00 GMT end_time: 19:30:00 GMT url: https://www.meetup.com/ruby-in-london/events/305376921 service: meetup - name: 'Polish Ruby User Group - Warsaw Meetup #January' location: Warszawa, Poland date: 2025-01-23 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/305606762 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop January 2025 location: Online date: 2025-01-25 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339817 service: meetup - name: Ruby DF - Janeiro de 2025 - Quarta edição location: Brasilia, Brazil date: 2025-01-25 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/quarta-edicao - name: Columbus Ruby Brigade - Monthly Meetup January 2025 location: Columbus, OH date: 2025-01-27 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/columbusrb/events/302708472 service: meetup - name: Austin.rb - Social @ True Texas BBQ location: Austin, TX date: 2025-01-28 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/305497249 service: meetup - name: Nantes.rb - Ruby talk location: Nantes, France date: 2025-01-28 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/nantes-rb/events/305457741 service: meetup - name: Ottawa Ruby - Happy New Year! location: Ottawa, Canada date: 2025-01-28 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/ottawaruby/events/305636170 service: meetup - name: Philippine Ruby Users Group - PhRUG - No use for a Theme location: Quezon City, Philippines date: 2025-01-28 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/305678421 service: meetup - name: RubyJax - Open Hax January 2025 location: Jacksonville, FL date: 2025-01-28 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305508098 service: meetup - name: Tallinn Ruby Usergroup - Ruby Tuesday - Ruby User Group Meetup location: k-space,Akadeemia 21/1 (5th floor), 12618 Tallinn date: 2025-01-28 start_time: 17:00:00 UTC end_time: 19:00:00 UTC url: https://tallinn.ruby.ee/events/ruby-tuesday-ruby-user-group-meetup-1244 - name: Toronto Ruby - January 2025 - Welcome to 2025 Edition location: Toronto, Canada date: 2025-01-28 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://luma.com/k8pr7rws service: luma - name: WNB.rb - January 2025 Meetup (Staff Engineering Panel) location: Online date: 2025-01-28 start_time: 12:00:00 EDT end_time: 13:00:00 EDT url: https://ruby.social/@wnb_rb/113844865167899947 - name: Rails Taiwan - 高雄 Rails Meetup January 2025 location: Kaohsiung, Taiwan date: 2025-01-29 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305772459 service: meetup - name: Ruby Zagreb - RubyZG January meetup @ Infinum location: Zagreb, Croatia date: 2025-01-29 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/rubyzg/events/305625887 service: meetup - name: Winnipeg Ruby User Group - ORMs are Fine + Making a Game with DragonRuby location: Winnipeg, Canada date: 2025-01-29 start_time: 18:00:00 CST end_time: 20:00:00 CST url: https://www.meetup.com/winnipegrb/events/305304260 service: meetup - name: Madrid.rb - January 2025 - Solid Queue internals, externals and all the things in between location: Madrid, Spain date: 2025-01-30 start_time: 19:30:00 CET end_time: 21:30:00 CET url: https://www.madridrb.com/events/january-2025-solid-queue-internals-externals-and-all-the-things-in-between-1145 - name: Melbourne Ruby - Ruby Melbourne Meetup January 2025 location: Southbank, Australia date: 2025-01-30 start_time: 18:00:00 AEDT end_time: 21:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601878 service: meetup - name: Orange County Ruby - Meetup January 2025 location: Dana Point, CA date: 2025-01-30 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ocruby/events/305549444 status: cancelled service: meetup - name: African Ruby Community - Nairuby's First Hangout of the Year! location: Nairobi, Kenya date: 2025-02-01 start_time: 12:00:00 EAT end_time: 14:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/305297114 service: meetup - name: Pune Ruby Meetup - February Meetup location: Maharashtra 411014, India date: 2025-02-01 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://luma.com/2yob77sl service: luma - name: Boston Ruby Group - Project Night February 2025 location: Boston, MA date: 2025-02-03 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/s15w0aq1 service: luma - name: Orange County Ruby - Ruby Science February 2025 location: Online date: 2025-02-03 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/305612466 service: meetup - name: 'Bluegrass Ruby - February 2025: Rails 8' location: Lexington, KY date: 2025-02-04 start_time: 18:00:00 EST end_time: 19:30:00 EST url: https://www.meetup.com/the-bluegrass-developers-guild/events/305461484 service: meetup - name: Charlotte Ruby - Ruby Hack Night February 2025 location: Online date: 2025-02-04 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/305557477 service: meetup - name: RubyJax - Open Hax February 2025 location: Jacksonville, FL date: 2025-02-04 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305638685 service: meetup - name: Seattle.rb - February 2025 location: Seattle, WA date: 2025-02-04 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=27 - name: Prague.rb - First Wednesday Of The Month - Ruby - Lightning Talk Night location: Prague, Czechia date: 2025-02-05 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/305652516 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup February 2025 location: Kaohsiung, Taiwan date: 2025-02-05 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/305898467 service: meetup - name: "Ruby \U0001F91D AI Happy Hour & Demo Night 4th Edition" location: New York, NY date: 2025-02-05 start_time: 17:30:00 EST end_time: 20:00:00 EST url: https://luma.com/p9pugbxf service: luma - name: Valencia.rb - Fido, Ruby, and OpenSSL – When Payments Randomly Fail location: Valencia, Spain date: 2025-02-05 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/vlctechhub/events/305775996 service: meetup - name: Cologne.rb - Februar 2025 Meetup bei jobvalley location: Köln, Germany date: 2025-02-06 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/cologne-rb/events/305624708 service: meetup - name: Kansas City Ruby - KC Ruby Lunch (@Joe's KC in Leawood) location: Leawood, KS date: 2025-02-07 start_time: 12:01:00 CST end_time: 13:01:00 CST url: https://www.meetup.com/kcruby/events/305920776 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop February 2025 location: Online date: 2025-02-08 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339818 service: meetup - name: London Ruby User Group - February 2025 Meeting location: London, UK date: 2025-02-10 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2025/february - name: Austin.rb - Billion Row Challenge location: Austin, TX date: 2025-02-11 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/304960562 service: meetup - name: B'more on Rails - Monthly Meetup February 2025 location: Online date: 2025-02-11 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/bmore-on-rails/events/305765170 service: meetup - name: 'Barcelona.rb - meetup #February' location: Barcelona, Spain date: 2025-02-11 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/barcelona-rb/events/305879212 service: meetup - name: Boston Ruby Group - February 2025 meeting location: Boston, MA date: 2025-02-11 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/1d04jxls service: luma - name: Latvian Ruby Community - Ruby community meetup – February 2025 location: LV-1039, Latvia date: 2025-02-11 start_time: 18:00:00 EEST end_time: 20:00:00 EEST url: https://luma.com/5oqjsofh service: luma - name: Philly.rb - Pubnite February 2025 location: Online date: 2025-02-11 start_time: 20:30:00 EST end_time: 22:00:00 EST url: https://www.meetup.com/phillyrb/events/305649468 service: meetup - name: Ruby on Rails Oceania Sydney - ROROSyd (February 2025) location: Sydney, Australia date: 2025-02-11 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/305764013 service: meetup - name: RubyJax - Open Hax February 2025 location: Jacksonville, FL date: 2025-02-11 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305765519 service: meetup - name: SF Bay Area Ruby - SF Ruby February Meetup @ GitHub location: San Francisco, CA date: 2025-02-11 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/hoou421h service: luma - name: VanRuby - Flipping LaunchDarkly location: Vancouver, Canada date: 2025-02-11 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/vancouver-ruby/events/305837290 service: meetup - name: Atlanta Ruby - Monthly Meetup February 2025 location: Online date: 2025-02-12 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/atlantaruby/events/305392731 service: meetup - name: Boulder Ruby - Feb 2025 Presentation Night location: Boulder, CO date: 2025-02-12 start_time: 18:00:00 MDT end_time: 21:00:00 MDT url: https://luma.com/e37ect5e service: luma - name: Indianapolis Ruby Brigade - Monthly Meetup February 2025 location: Indianapolis, IN date: 2025-02-12 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/indyrb/events/305783104 service: meetup - name: NYC.rb - Event February 2025 location: Online date: 2025-02-12 start_time: 17:30:00 EST end_time: 19:00:00 EST url: https://www.meetup.com/nyc-rb/events/305522360 service: meetup - name: Paris Ruby Workshop - Workshop chez February 2025 location: Paris, France date: 2025-02-12 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris-ruby-workshop/events/305237209 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup February 2025 location: Kaohsiung, Taiwan date: 2025-02-12 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcdbqb service: meetup - name: Ruby Usergroup Hamburg - Februar 2025 location: Hamburg, Germany date: 2025-02-12 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-februar-2025-1211 - name: 'Rzeszow Ruby User Group - RRUG #42 Hakowanie Gita. Rails Spotlight.' location: Rzeszów, Poland date: 2025-02-12 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/rzeszow-ruby-user-group/events/305778976 service: meetup - name: 'Auckland Ruby - Ruby Nights February: Spec-taculous Rspec' location: Auckland, New Zealand date: 2025-02-17 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/305875941 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup February 2025 location: Columbus, OH date: 2025-02-17 start_time: 18:00:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/columbusrb/events/305837469 service: meetup - name: Miami Ruby Brigade - February 2025 location: Coral Gables, FL date: 2025-02-17 start_time: 19:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/miamirb/events/305871459 service: meetup - name: Orange County Ruby - Ruby Science February 2025 location: Online date: 2025-02-17 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/305865679 service: meetup - name: 'LA Ruby - Tales & Ales: Connecting Deepseek to your Rails app' location: Hawthorne, CA date: 2025-02-18 start_time: 18:30:00 PST end_time: 20:30:00 PST url: https://www.meetup.com/laruby/events/306125578 service: meetup - name: RubyJax - Open Hax February 2025 location: Jacksonville, FL date: 2025-02-18 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/305889494 service: meetup - name: York Ruby - Monthly Meeting February 2025 location: York, UK date: 2025-02-18 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/305779166 service: meetup - name: Geneva.rb - The Past, Present and Future of UI at GitHub (Joel Hawksley, GitHub) location: Genève, Switzerland date: 2025-02-19 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/304627311 service: meetup - name: Montreal.rb - Design Patterns in Ruby location: Montreal, Canada date: 2025-02-19 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://www.meetup.com/montrealrb/events/305005933 service: meetup - name: Portland Ruby Brigade - Cocktails + Code February 2025 location: Portland, OR date: 2025-02-19 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/portland-ruby-brigade/events/305194628 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup February 2025 location: Kaohsiung, Taiwan date: 2025-02-19 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306152272 service: meetup - name: Ruby Zagreb - RubyZG February meetup @ Devot location: Zagreb, Croatia date: 2025-02-19 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/rubyzg/events/306030608 service: meetup - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-02-19 start_time: 19:00:00 MST end_time: 21:00:00 MST url: https://www.meetup.com/utah-ruby-users-group/events/305793844 service: meetup - name: "Valencia.rb - \U0001F4E2 Segundo ✌\U0001F3FB encuentro para organizar el VlcTechFest \U0001F680" location: Valencia, Spain date: 2025-02-19 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/vlctechhub/events/306185620 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup February 2025 location: Online date: 2025-02-19 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/305903818 service: meetup - name: 'African Ruby Community - Nairuby''s 1st 2025 meetup: Enhancing Ruby on Rails Applications with Stimulus JS' location: Nairobi, Kenya date: 2025-02-20 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306152803 service: meetup - name: North West Ruby User Group - Lightning Talks location: Manchester, UK date: 2025-02-20 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/february-2025-lightning-talks - name: RubyJax - All About ActionCable location: Jacksonville Beach, FL date: 2025-02-20 start_time: 18:30:00 EST end_time: 20:30:00 EST url: https://www.meetup.com/rubyjax/events/306205860 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop February 2025 location: Online date: 2025-02-22 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339819 service: meetup - name: RubyFloripa - 30º location: Florianopolis, Brazil date: 2025-02-22 start_time: 13:30:00 -03 end_time: 18:00:00 -03 url: https://www.meetup.com/rubyfloripa/events/306106789 service: meetup - name: Austin.rb - Social @ Brewtorium location: Austin, TX date: 2025-02-25 start_time: 18:30:00 CST end_time: 20:30:00 CST url: https://www.meetup.com/austinrb/events/306312332 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #61' location: เขตวัฒนา, Thailand date: 2025-02-25 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/305915629 service: meetup - name: "Lyon.rb - 2025.02 / The love on Rails edition ❤️ \U0001F6E4️" location: Lyon, France date: 2025-02-25 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/lyonrb/events/305971307 service: meetup - name: RubyJax - Open Hax February 2025 location: Jacksonville, FL date: 2025-02-25 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/306020535 service: meetup - name: 'Saigon.rb - Ruby Tuesday #24' location: Quận 1, Viet Nam date: 2025-02-25 start_time: 19:00:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/saigonrb/events/306268547 service: meetup - name: Tallinn Ruby Usergroup - Ruby Tuesday - Ruby User Group Meetup - February 2025 location: k-space,Akadeemia 21/1 (5th floor), 12618 Tallinn date: 2025-02-25 start_time: 17:00:00 UTC end_time: 19:00:00 UTC url: https://tallinn.ruby.ee/events/ruby-tuesday-ruby-user-group-meetup-february-2025-1343 - name: Toulouse.rb - Conf & Apéro - Février location: Toulouse, France date: 2025-02-25 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/toulouse-ruby-friends/events/305752126 service: meetup - name: 'African Ruby Community - Nairuby''s 2025 meetup: Enhancing Ruby on Rails Applications with Stimulus JS' location: Nairobi, Kenya date: 2025-02-26 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306152829 status: cancelled service: meetup - name: Rails Taiwan - 高雄 Rails Meetup February 2025 location: Kaohsiung, Taiwan date: 2025-02-26 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306275380 service: meetup - name: Kansas City Ruby - Closing out the Meetup.com account PARTY (remote) location: Kansas City, MO date: 2025-02-27 start_time: 19:00:00 CST end_time: 20:00:00 CST url: https://www.meetup.com/kcruby/events/306415435 service: meetup - name: 'Krakow Ruby Users Group (KRUG) - KRUG #1 2025' location: 30-302 Kraków, Poland date: 2025-02-27 start_time: 17:30:00 CEST end_time: 21:30:00 CEST url: https://luma.com/dow2zgc5 service: luma - name: Madrid.rb - February 2025 - How to Build a Boring(TM) Pub-Sub System location: Madrid, Spain date: 2025-02-27 start_time: 19:30:00 CET end_time: 21:30:00 CET url: https://www.madridrb.com/events/february-2025-how-to-build-a-boring-tm-pub-sub-system-1310 - name: Melbourne Ruby - Ruby Melbourne Meetup February 2025 location: Southbank, Australia date: 2025-02-27 start_time: 18:00:00 AEDT end_time: 21:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601899 service: meetup - name: Nantes.rb - Ruby Talk location: Nantes, France date: 2025-02-27 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/nantes-rb/events/305995476 service: meetup - name: Orange County Ruby - Meetup February 2025 location: Dana Point, CA date: 2025-02-27 start_time: 19:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ocruby/events/306061933 status: cancelled service: meetup - name: Philippine Ruby Users Group - PhRUG - Meta-golfing with Ruby! location: Quezon City, Philippines date: 2025-02-27 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/306250396 service: meetup - name: Ruby Romania - Meetup | February 2025 location: Bucuresti, Romania date: 2025-02-27 start_time: 19:00:00 EET end_time: 20:30:00 EET url: https://www.meetup.com/ruby-romania/events/306133031 service: meetup - name: Toronto Ruby - February 2025 location: Toronto, Canada date: 2025-02-27 start_time: 18:00:00 EST end_time: 21:00:00 EST url: https://luma.com/zk25jrny service: luma - name: Ruby DF - 5ª Edição - Refatoração de Carnaval location: Brasilia, Brazil date: 2025-03-01 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/quinta-edicao - name: Orange County Ruby - Ruby Science March 2025 location: Online date: 2025-03-03 start_time: 10:00:00 PST end_time: 11:00:00 PST url: https://www.meetup.com/ocruby/events/306120490 service: meetup - name: ArtificialRuby.ai - NYC Meetup March 2025 location: New York, NY date: 2025-03-04 start_time: 17:30:00 EST end_time: 20:00:00 EST url: https://luma.com/9b2goru4 service: luma - name: Charlotte Ruby - Ruby Hack Night March 2025 location: Online date: 2025-03-04 start_time: 19:00:00 EST end_time: 21:30:00 EST url: https://www.meetup.com/charlotte-rb/events/305964163 service: meetup - name: NYC on Rails - Artificial Ruby NYC location: New York, NY date: 2025-03-04 start_time: 17:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/nyc-on-rails/events/306325322 service: meetup - name: Paris.rb - March 2025 location: Paris, France date: 2025-03-04 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris_rb/events/306031816 service: meetup - name: Ruby Bogotá - Vámos a reunirnos hablar de ruby location: Bogota, Colombia date: 2025-03-04 start_time: 18:30:00 -05 end_time: 21:30:00 -05 url: https://www.meetup.com/bogota-ruby-meetup/events/306310536 service: meetup - name: Ruby Meetup Oslo - March 4th location: Oslo, Norway date: 2025-03-04 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/ruby-meetup-oslo/events/306253735 service: meetup - name: RubyJax - Open Hax March 2025 location: Jacksonville, FL date: 2025-03-04 start_time: 18:30:00 EST end_time: 20:00:00 EST url: https://www.meetup.com/rubyjax/events/306145213 service: meetup - name: Seattle.rb - March 2025 location: Seattle, WA date: 2025-03-04 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=28 - name: ChicagoRuby - Ruby @ Adler Planetarium location: Chicago, IL date: 2025-03-05 start_time: 18:00:00 CST end_time: 20:00:00 CST url: https://www.meetup.com/chicagoruby/events/305503069 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby - Lightning Talk Night location: Prague, Czechia date: 2025-03-05 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/305988179 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup March 2025 location: Kaohsiung, Taiwan date: 2025-03-05 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306436525 service: meetup - name: Slovenia Ruby User Group - Winter Ruby meetup location: Ljubljana, Slovenia date: 2025-03-05 start_time: 18:00:00 CET end_time: 19:30:00 CET url: https://www.meetup.com/rubyslovenia/events/306328134 service: meetup - name: Dresden.rb - meetup location: Dresden, Germany date: 2025-03-06 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://dresdenrb.onruby.de/events/dresden-rb-meetup-1079 - name: 'vienna.rb - Vienna.rb #63 - Ruby Spring Meetup' location: Vienna, Austria date: 2025-03-06 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/vienna-rb/events/305607564 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop March 2025 location: Online date: 2025-03-08 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/304339820 service: meetup - name: London Ruby User Group - March 2025 Meeting location: London, UK date: 2025-03-10 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2025/march - name: Austin.rb - Social @ Pinthouse Pizza location: Austin, TX date: 2025-03-11 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960567 service: meetup - name: B'more on Rails - Monthly Meetup March 2025 location: Online date: 2025-03-11 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/306125748 service: meetup - name: Boston Ruby Group - March 2025 meeting location: Boston, MA date: 2025-03-11 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/51fojxen service: luma - name: Philly.rb - Pubnite March 2025 location: Online date: 2025-03-11 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/306125769 service: meetup - name: RubyJax - Open Hax March 2025 location: Jacksonville, FL date: 2025-03-11 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306266661 service: meetup - name: 'VanRuby - Underground Competitive Coding: StarCraft 2 AI in Ruby!' location: Vancouver, Canada date: 2025-03-11 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/306178269 service: meetup - name: Atlanta Ruby - Ruby Open Topics Night - ATLRUG Virtual location: Online date: 2025-03-12 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/305392733 service: meetup - name: Boulder Ruby - March 2025 Presentation Night location: Boulder, CO date: 2025-03-12 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/mt89dmv3 service: luma - name: Copenhagen Ruby Brigade - Ruby Brigade at THE NEW Zendesk Office (Islands Brygge) location: Copenhagen, Denmark date: 2025-03-12 start_time: 17:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/copenhagen-ruby-brigade/events/306132665 service: meetup - name: 'Geneva.rb - Rails 8: Multi-db with Solid Queue, Solid Cache and Kamal (Guillaume Briday)' location: Genève, Switzerland date: 2025-03-12 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/304629277 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup March 2025 location: Indianapolis, IN date: 2025-03-12 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/306583428 service: meetup - name: NYC.rb - Damian Rossney - Hanami Router Adventure! location: Online date: 2025-03-12 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/306144023 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup March 2025 location: Kaohsiung, Taiwan date: 2025-03-12 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306275381 service: meetup - name: Ruby Buenos Aires - Ruby MeetUp - Marzo 2025 - Founders On Rails location: Buenos Aires, Argentina date: 2025-03-12 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/rubyba/events/306565829 service: meetup - name: Ruby Usergroup Hamburg - March 2025 location: Hamburg, Germany date: 2025-03-12 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-march-2025-1277 - name: 'African Ruby Community - Ruby Thursdays: To be determined March 2025' location: Online date: 2025-03-13 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/305623703 service: meetup - name: VanRuby - /VanJS March Social location: Vancouver, Canada date: 2025-03-13 start_time: 17:30:00 PDT end_time: 20:30:00 PDT url: https://www.meetup.com/vancouver-ruby/events/306318440 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup March 2025 location: Columbus, OH date: 2025-03-17 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/305931517 service: meetup - name: Miami Ruby Brigade - March 2025 location: Coral Gables, FL date: 2025-03-17 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/306408522 service: meetup - name: Orange County Ruby - Ruby Science March 2025 location: Online date: 2025-03-17 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/306401536 service: meetup - name: 'Bluegrass Ruby - March 2025: Fun and games with Ruby!' location: Lexington, KY date: 2025-03-18 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/306128562 service: meetup - name: Malmö.rb Meetup March 2025 location: Malmö, Sweden date: 2025-03-18 start_time: 17:30:00 CET end_time: 19:30:00 CET url: https://malmorb.se/events/2025/meetup-march.html - name: 'Robalos.rb - Robalos #2 - March' location: Figueira da Foz, Portugal date: 2025-03-18 start_time: 19:00:00 WET end_time: 20:30:00 WET url: https://www.meetup.com/robalos-rb/events/305585756 service: meetup - name: RubyJax - Open Hax March 2025 location: Jacksonville, FL date: 2025-03-18 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306428568 service: meetup - name: York Ruby - Monthly Meeting March 2025 location: York, UK date: 2025-03-18 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/306457885 service: meetup - name: Helsinki Ruby Brigade - March meet-up at Kisko Labs location: Helsinki, Finland date: 2025-03-19 start_time: 18:00:00 EET end_time: 20:00:00 EET url: https://www.meetup.com/rubybrigade/events/305839738 service: meetup - name: Montreal.rb - Lessons From Refactoring a Large Rails Monolith location: Montreal, Canada date: 2025-03-19 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/305005977 service: meetup - name: Portland Ruby Brigade - Cocktails + Code March 2025 location: Portland, OR date: 2025-03-19 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/305471483 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup March 2025 location: Kaohsiung, Taiwan date: 2025-03-19 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306436526 service: meetup - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-03-19 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/306270617 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup March 2025 location: Online date: 2025-03-19 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/306444868 service: meetup - name: Munich Ruby User Group - Ruby Meetup March 2025 location: München, Germany date: 2025-03-20 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/munich-rubyshift-ruby-user-group/events/306159513 service: meetup - name: North West Ruby User Group - March 2025 Meeting location: Manchester, UK date: 2025-03-20 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/2025-march - name: 'Polish Ruby User Group - Warsaw Meetup #March' location: Warszawa, Poland date: 2025-03-20 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/306661897 service: meetup - name: 'RubyJax - Workshop: Intro to Ruby' location: Jacksonville Beach, FL date: 2025-03-20 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/306366660 service: meetup - name: SF Bay Area Ruby - SF Ruby in March @ New Relic location: San Francisco, CA date: 2025-03-20 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/npghoigs service: luma - name: Slovenia Ruby User Group - Ruby User Group Slovenia is joining Meetup Of Meetups (MoM) location: Ljubljana, Slovenia date: 2025-03-20 start_time: 17:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/rubyslovenia/events/306514824 service: meetup - name: Toronto Ruby - March 2025 location: Toronto, Canada date: 2025-03-20 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://luma.com/2u8h0p9x service: luma - name: African Ruby Community - Kampala Chapter Mini workshop March 2025 location: Online date: 2025-03-22 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306491472 service: meetup - name: Pune Ruby Meetup - March Ruby Meetup location: Maharashtra 411016, India date: 2025-03-22 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://luma.com/9rabcph9 service: luma - name: Ruby On Rails Belo Horizonte - 3º Encontro Trem on Rails location: Belo Horizonte, Brazil date: 2025-03-22 start_time: 10:00:00 -03 end_time: 12:00:00 -03 url: https://www.meetup.com/ruby-on-rails-bh/events/306240061 service: meetup - name: 'Auckland Ruby - Ruby Nights March: Keycloak Authentication and Pair Programming with AI' location: Auckland, New Zealand date: 2025-03-24 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/305875946 service: meetup - name: Austin.rb - Social @ St Elmo Brewing location: Austin, TX date: 2025-03-25 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497318 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #62' location: เขตวัฒนา, Thailand date: 2025-03-25 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/306802526 service: meetup - name: Kansas City Ruby - KC Ruby March Meeting location: Shawnee, KS date: 2025-03-25 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/qaxgc8jr service: luma - name: Ruby Montevideo - Meetup - Marzo 2025 location: Montevideo, Uruguay date: 2025-03-25 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/306636509 service: meetup - name: Ruby Zagreb - RubyZG March Meetup @ Productive location: Zagreb, Croatia date: 2025-03-25 start_time: 18:00:00 CET end_time: 20:00:00 CET url: https://www.meetup.com/rubyzg/events/306688139 service: meetup - name: RubyJax - Open Hax March 2025 location: Jacksonville, FL date: 2025-03-25 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306561644 service: meetup - name: Tallinn Ruby Usergroup - Ruby Tuesday - Ruby User Group Meetup - March 2025 location: k-space,Akadeemia 21/1 (5th floor), 12618 Tallinn date: 2025-03-25 start_time: 17:00:00 UTC end_time: 19:00:00 UTC url: https://tallinn.ruby.ee/events/ruby-tuesday-ruby-user-group-meetup-march-2025-1409 - name: 'Barcelona.rb - BARcelona.rb - let''s have some beers together at #March' location: Barcelona, Spain date: 2025-03-26 start_time: 18:30:00 CET end_time: 21:30:00 CET url: https://www.meetup.com/barcelona-rb/events/306812440 service: meetup - name: Nantes.rb - Ruby à la Little Atlantique Brewery! location: Nantes, France date: 2025-03-26 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/nantes-rb/events/306593216 service: meetup - name: Philippine Ruby Users Group - PhRUG - Payday! location: Taguig, Philippines date: 2025-03-26 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/306677171 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup March 2025 location: Kaohsiung, Taiwan date: 2025-03-26 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306570607 service: meetup - name: Ruby Ireland - & Elixir Dublin Social – March Meetup location: dublin, Ireland date: 2025-03-26 start_time: 18:15:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/rubyireland/events/306578949 service: meetup - name: Upstate Ruby - Pizza Social location: Greenville, SC date: 2025-03-26 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/upstate-ruby/events/306527201 service: meetup - name: Valencia.rb - The Full Spectrum Developer location: Valencia, Spain date: 2025-03-26 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/vlctechhub/events/306704873 service: meetup - name: Winnipeg Ruby User Group - Exploring Concurrency in Ruby + HTML Over Websockets (using Common LISP) location: Winnipeg, Canada date: 2025-03-26 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/winnipegrb/events/306587497 service: meetup - name: Madrid.rb - March 2025 - Intro to the TimescaleDB gem location: Madrid, Spain date: 2025-03-27 start_time: 19:30:00 CET end_time: 21:30:00 CET url: https://www.madridrb.com/events/march-2025-intro-to-the-timescaledb-gem-1376 - name: Melbourne Ruby - Ruby Melbourne Meetup March 2025 location: Southbank, Australia date: 2025-03-27 start_time: 18:00:00 AEDT end_time: 21:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601901 service: meetup - name: Orange County Ruby - Meetup March 2025 location: Dana Point, CA date: 2025-03-27 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/306604391 service: meetup - name: Polish Ruby User Group - Poznań Ruby User Group - March 2025 location: Poznań, Poland date: 2025-03-27 start_time: 18:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/polishrubyusergroup/events/306703052 service: meetup - name: Poznań Ruby User Group - March 2025 location: 60-822 Poznań, Poland date: 2025-03-27 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://luma.com/u6nh8vx6 service: luma - name: STLRuby - "Developing with AI" Show and Tell location: Clayton, MO date: 2025-03-27 start_time: 18:30:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/stlruby/events/306367417 service: meetup - name: Stockholm Ruby - Springish Ruby Meetup location: 111 57 Stockholm, Sweden date: 2025-03-27 start_time: 17:30:00 CEST end_time: 21:00:00 CEST url: https://luma.com/1g14ow05 service: luma - name: Orange County Ruby - Ruby Science March 2025 location: Online date: 2025-03-31 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/306666623 status: cancelled service: meetup - name: 'Brighton Ruby Group - April Meetup: Partials Are Fine, Actually – From Basic to Advanced Components' location: Brighton, UK date: 2025-04-01 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://www.meetup.com/brighton-ruby-group/events/306133710 service: meetup - name: Charlotte Ruby - Ruby Hack Night April 2025 location: Online date: 2025-04-01 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/306671495 service: meetup - name: Paris.rb - Meetup April 2025 location: Paris, France date: 2025-04-01 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris_rb/events/306237956 service: meetup - name: RubyJax - Open Hax April 2025 location: Jacksonville, FL date: 2025-04-01 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306691924 service: meetup - name: 'Saigon.rb - Ruby Tuesday #25' location: Quận 1, Viet Nam date: 2025-04-01 start_time: 19:00:00 +07 end_time: 20:30:00 +07 url: https://www.meetup.com/saigonrb/events/306714026 service: meetup - name: Seattle.rb - April 2025 location: Seattle, WA date: 2025-04-01 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=29 - name: Belfast Ruby - Meetup April 2025 location: Belfast BT12 5GH, UK date: 2025-04-02 start_time: 18:00:00 BST end_time: 21:00:00 BST url: https://luma.com/wgjptxmc service: luma - name: BelfastRuby - 's first Meetup of 2025 location: Belfast, UK date: 2025-04-02 start_time: 18:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/belfastruby/events/306590652 service: meetup - name: ChicagoRuby - Ruby @ Tegus by AlphaSense location: Chicago, IL date: 2025-04-02 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/305899516 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby + Unexpected Pubquiz location: Prague, Czechia date: 2025-04-02 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/306552614 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup April 2025 location: Kaohsiung, Taiwan date: 2025-04-02 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306700632 service: meetup - name: Cologne.rb - April 2025 Meetup bei ampido location: Köln, Germany date: 2025-04-03 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/cologne-rb/events/306037216 service: meetup - name: Latvian Ruby Community - Latvian Ruby community April meetup location: LV-1039, Latvia date: 2025-04-03 start_time: 18:15:00 EEST end_time: 21:15:00 EEST url: https://luma.com/939q9twh service: luma - name: SD Ruby - Monthly Meetup location: San Diego, CA date: 2025-04-03 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/sdruby/events/306949334 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop April 2025 location: Online date: 2025-04-05 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306749137 service: meetup - name: 'Bluegrass Ruby - March 2025: Dinner at Charlie Brown''s' location: Lexington, KY date: 2025-04-07 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/307084719 service: meetup - name: Austin.rb - Spec Smells to Sniff For location: Austin, TX date: 2025-04-08 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960570 service: meetup - name: B'more on Rails - Monthly Meetup April 2025 location: Online date: 2025-04-08 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/306818067 service: meetup - name: Philly.rb - Pubnite April 2025 location: Online date: 2025-04-08 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/306819080 service: meetup - name: Ruby on Rails Oceania Sydney - Special Memorial Service In Remembrance of Paul Fioravanti location: Sydney CBD, Australia date: 2025-04-08 start_time: 18:30:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/307031437 service: meetup - name: RubyJax - Open Hax April 2025 location: Jacksonville, FL date: 2025-04-08 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306816818 service: meetup - name: ArtificialRuby.ai - NYC Meetup April 2025 location: New York, NY date: 2025-04-09 start_time: 18:00:00 EDT end_time: 20:30:00 EDT url: https://luma.com/51iv0zzl service: luma - name: Atlanta Ruby - Rails on WASM or Portfolio on a Budget with Thomas Breland - ATLRUG Virtual location: Online date: 2025-04-09 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/306692461 service: meetup - name: Boulder Ruby - April 2025 Presentation Night location: Boulder, CO date: 2025-04-09 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/wfy2z8pq service: luma - name: 'Geneva.rb - D. Delallée: How to release in production 5 times a day while enjoying the apero' location: Genève, Switzerland date: 2025-04-09 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/304629280 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup April 2025 location: Indianapolis, IN date: 2025-04-09 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/306836922 service: meetup - name: NYC on Rails - Artificial Ruby NYC location: New York, NY date: 2025-04-09 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/nyc-on-rails/events/307048619 service: meetup - name: NYC.rb - Event April 2025 location: Online date: 2025-04-09 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/306668887 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup April 2025 location: Kaohsiung, Taiwan date: 2025-04-09 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306825696 service: meetup - name: Ruby Usergroup Hamburg - April 2025 location: Hamburg, Germany date: 2025-04-09 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-april-2025-1442 - name: 'Rzeszow Ruby User Group - Spotkanie #43 – Unit testy. Zwolnienia.' location: Rzeszów, Poland date: 2025-04-09 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rzeszow-ruby-user-group/events/307035224 service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined April 2025' location: Online date: 2025-04-10 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/305623706 service: meetup - name: Ruby Buenos Aires - Ruby MeetUp - Abril 2025 - Es hora de actualizar location: Online date: 2025-04-10 start_time: 19:00:00 -03 end_time: 21:00:00 -03 url: https://www.meetup.com/rubyba/events/307093016 service: meetup - name: London Ruby User Group - April 2025 Meeting location: London, UK date: 2025-04-14 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/april - name: Orange County Ruby - Ruby Science April 2025 location: Online date: 2025-04-14 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/306917963 service: meetup - name: RubyJax - Open Hax April 2025 location: Jacksonville, FL date: 2025-04-15 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/306942829 service: meetup - name: York Ruby - Monthly Meeting April 2025 location: York, UK date: 2025-04-15 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/306930513 service: meetup - name: Montreal.rb - Domain Driven Design in Ruby on Rails location: Montréal, Canada date: 2025-04-16 start_time: 18:30:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/montrealrb/events/306467840 service: meetup - name: Portland Ruby Brigade - Cocktails + Code April 2025 location: Portland, OR date: 2025-04-16 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/305471493 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup April 2025 location: Kaohsiung, Taiwan date: 2025-04-16 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/306952160 service: meetup - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-04-16 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/306890961 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup April 2025 location: Online date: 2025-04-16 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/306960310 service: meetup - name: North West Ruby User Group - !vibe_coding — Using AI to build a Rails app location: Manchester, UK date: 2025-04-17 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/april-2025-vibe_coding-using-ai-to-build-a-rails-app - name: African Ruby Community - Kampala Chapter Mini workshop April 2025 location: Online date: 2025-04-19 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/307005684 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup location: Columbus, OH date: 2025-04-21 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/305931518 service: meetup - name: Miami Ruby Brigade - April 2025 location: Coral Gables, FL date: 2025-04-21 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/307053923 service: meetup - name: 'Auckland Ruby - Ruby Nights April: Beyond Android & iOS: building web apps for 4G feature phones' location: Auckland, New Zealand date: 2025-04-22 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875949 service: meetup - name: Austin.rb - Social @ Lazarus Brewing location: Austin, TX date: 2025-04-22 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497322 service: meetup - name: Ruby Bogotá - Vamos a reunirnos hablar de ruby location: Bogotá, Colombia date: 2025-04-22 start_time: 18:30:00 -05 end_time: 21:30:00 -05 url: https://www.meetup.com/bogota-ruby-meetup/events/306672080 service: meetup - name: RubyJax - Open Hax April 2025 location: Jacksonville, FL date: 2025-04-22 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307075373 service: meetup - name: Frankfurt Ruby Meetup - Ruby Frankfurt Meetup - April 2025 - Kamal 2 location: Frankfurt am Main, Germany date: 2025-04-23 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/frankfurt-ruby-meetup/events/306805327 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup April 2025 location: Kaohsiung, Taiwan date: 2025-04-23 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307083358 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, April @ Sentry location: San Francisco, CA date: 2025-04-23 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/9uabe94u service: luma - name: Winnipeg Ruby User Group - Escaping Platform as a Service with Kamal location: Winnipeg, Canada date: 2025-04-23 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/winnipegrb/events/307005212 service: meetup - name: Madrid.rb - Abril 2025 - Evento conjunto - Elixir Madrid location: Madrid, Spain date: 2025-04-24 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.madridrb.com/events/abril-2025-evento-conjunto-madrid-rb-elixir-madrid-1508 - name: Melbourne Ruby - Ruby Melbourne Meetup April 2025 location: Southbank, Australia date: 2025-04-24 start_time: 18:00:00 AEST end_time: 21:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601902 service: meetup - name: Orange County Ruby - Meetup April 2025 location: Dana Point, CA date: 2025-04-24 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/307119374 service: meetup - name: Prague Ruby - Restart Ruby meetup by Easy location: Hlavní město Praha, Czechia date: 2025-04-24 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/prague-ruby-meetup/events/306707077 service: meetup - name: Ruby Montevideo - Meetup - Abril 2025 location: Montevideo, Uruguay date: 2025-04-24 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/307285596 service: meetup - name: RubyJax - What is 'AI', actually? location: Jacksonville Beach, FL date: 2025-04-24 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/307293897 service: meetup - name: Orange County Ruby - Ruby Science April 2025 location: Online date: 2025-04-28 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/307180679 status: cancelled service: meetup - name: 'Bangkok.rb - Ruby Tuesday #63' location: เขตวัฒนา, Thailand date: 2025-04-29 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/307456423 service: meetup - name: Kansas City Ruby - KC Ruby April Hack Night location: Shawnee, KS date: 2025-04-29 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/sw3pa0d8 service: luma - name: LA Ruby - The Underground location: Los Angeles, CA date: 2025-04-29 start_time: 18:30:00 PDT end_time: 20:30:00 PDT url: https://www.meetup.com/laruby/events/307308208 service: meetup - name: Nantes.rb - Ruby Talk! location: Nantes, France date: 2025-04-29 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/nantes-rb/events/307159120 service: meetup - name: Ruby Zagreb - RubyZG April meetup @ Kodius location: Zagreb, Croatia date: 2025-04-29 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/307307003 service: meetup - name: RubyJax - Open Hax April 2025 location: Jacksonville, FL date: 2025-04-29 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307203265 service: meetup - name: Tallinn Ruby Usergroup - Ruby Tuesday - Ruby User Group Meetup - April 2025 location: k-space,Akadeemia 21/1 (5th floor), 12618 Tallinn date: 2025-04-29 start_time: 16:00:00 UTC end_time: 18:00:00 UTC url: https://tallinn.ruby.ee/events/ruby-tuesday-ruby-user-group-meetup-april-2025-1574 - name: Toronto Ruby - April 2025 - No Foolin' Edition location: Toronto, Canada date: 2025-04-29 start_time: 17:30:00 EDT end_time: 20:30:00 EDT url: https://luma.com/eyfg1u2m service: luma - name: Philippine Ruby Users Group - PhRUG - Virtual Insanity! location: Online date: 2025-04-30 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/307432236 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup April 2025 location: Kaohsiung, Taiwan date: 2025-04-30 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307212344 service: meetup - name: SD Ruby - 20th Anniversary Meetup location: San Diego, CA date: 2025-05-01 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/sdruby/events/307452417 service: meetup - name: African Ruby Community - Kampala Chapter Mini workshop May 2025 location: Online date: 2025-05-03 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/307262720 service: meetup - name: Charlotte Ruby - Ruby Hack Night May 2025 location: Online date: 2025-05-06 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/307167732 service: meetup - name: Paris.rb - May 2025 location: Paris, France date: 2025-05-06 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris_rb/events/307213572 service: meetup - name: Ruby on Rails Oceania Sydney - ROROSYD | MAY 2025 EDITION location: Sydney, Australia date: 2025-05-06 start_time: 18:00:00 AEST end_time: 20:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/307524806 service: meetup - name: RubyJax - Open Hax May 2025 location: Jacksonville, FL date: 2025-05-06 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307328154 service: meetup - name: Seattle.rb - May 2025 location: Seattle, WA date: 2025-05-06 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=30 - name: ArtificialRuby.ai - NYC Meetup May 2025 location: New York, NY date: 2025-05-07 start_time: 18:00:00 EDT end_time: 20:30:00 EDT url: https://luma.com/crm6e9sy service: luma - name: ChicagoRuby - Chicago Ruby @ Avant location: Chicago, IL date: 2025-05-07 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/306598554 service: meetup - name: NYC on Rails - Artificial Ruby NYC location: New York, NY date: 2025-05-07 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/nyc-on-rails/events/307602484 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby May 2025 location: Prague, Czechia date: 2025-05-07 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/307340704 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup May 2025 location: Kaohsiung, Taiwan date: 2025-05-07 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307335131 service: meetup - name: 'Rzeszow Ruby User Group - Spotkanie #44 – Kubernetes. API' location: Rzeszów, Poland date: 2025-05-07 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rzeszow-ruby-user-group/events/307560295 service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined May 2025' location: Online date: 2025-05-08 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/305623707 service: meetup - name: 'Barcelona.rb - meetup #May' location: Barcelona, Spain date: 2025-05-08 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/barcelona-rb/events/307510388 service: meetup - name: Ruby DF - 6ª Edição - Os Bastidores do Ruby location: Brasilia, Brazil date: 2025-05-10 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/sexta-edicao - name: London Ruby User Group - May 2025 Meeting location: London, UK date: 2025-05-12 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/may - name: Orange County Ruby - Ruby Science May 2025 location: Online date: 2025-05-12 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/307423253 service: meetup - name: 'Austin.rb - Zero-to-Hero: Postgres 12 ➔ 16 Upgrade in Production' location: Austin, TX date: 2025-05-13 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960572 service: meetup - name: B'more on Rails - Monthly Meetup May 2025 location: Online date: 2025-05-13 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/307248902 service: meetup - name: Boston Ruby Group - May 2025 meeting location: Boston, MA date: 2025-05-13 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/uy2s804c service: luma - name: 'Krakow Ruby Users Group (KRUG) - KRUG #2 2025' location: 31-123 Kraków, Poland date: 2025-05-13 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/pnamdg3o service: luma - name: Ottawa Ruby - Spring Refresh location: Ottawa, Canada date: 2025-05-13 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/ottawaruby/events/307336786 service: meetup - name: Philly.rb - Pubnite May 2025 location: Online date: 2025-05-13 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/307185632 service: meetup - name: RubyJax - Open Hax May 2025 location: Jacksonville, FL date: 2025-05-13 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307448786 service: meetup - name: VanRuby - AI Engineering for Ruby Developers location: Vancouver, Canada date: 2025-05-13 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/307297611 service: meetup - name: 'Atlanta Ruby - Namespaces in Rails: ActiveModel, Inheritance, and Routing' location: Online date: 2025-05-14 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/306692463 service: meetup - name: Boulder Ruby - May 2025 Presentation Night location: Boulder, CO date: 2025-05-14 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/e547ts3y service: luma - name: Geneva.rb - Share your best tip! location: Genève, Switzerland date: 2025-05-14 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/304629285 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup May 2025 location: Indianapolis, IN date: 2025-05-14 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/307467538 service: meetup - name: NYC.rb - Event May 2025 location: Online date: 2025-05-14 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/306732412 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup May 2025 location: Kaohsiung, Taiwan date: 2025-05-14 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307456135 service: meetup - name: Ruby Buenos Aires - Ruby MeetUp - Mayo 2025 - Escalabilidad y Service Objects location: Buenos Aires, Argentina date: 2025-05-14 start_time: 19:00:00 -03 end_time: 21:00:00 -03 url: https://www.meetup.com/rubyba/events/307533005 service: meetup - name: Ruby Usergroup Hamburg - May 2025 location: Hamburg, Germany date: 2025-05-14 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-may-2025-1541 - name: Latvian Ruby Community - Ruby community meetup - May 2025 location: LV-1001, Latvia date: 2025-05-15 start_time: 18:00:00 EEST end_time: 21:00:00 EEST url: https://luma.com/e34lm6hq service: luma - name: North West Ruby User Group - Rails AntiPatterns Revisited location: Manchester, UK date: 2025-05-15 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/rails-antipatterns-revisited - name: 'Tech Kafi #ruby: Mehrfaktorauthentisierung mit WebAuthn' location: Bern, Switzerland date: 2025-05-15 start_time: 13:00:00 CEST end_time: 14:00:00 CEST url: https://meet.google.com/prw-zqqu-hvq - name: 'Auckland Ruby - Ruby Nights May: TBC' location: Auckland, New Zealand date: 2025-05-19 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875952 status: cancelled service: meetup - name: Columbus Ruby Brigade - Monthly Meetup May 2025 location: Columbus, OH date: 2025-05-19 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/307552241 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #139 Maj 2025' location: Wroclaw, Poland date: 2025-05-19 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/307837875 service: meetup - name: Miami Ruby Brigade - May 2025 location: Coral Gables, FL date: 2025-05-19 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/307551705 service: meetup - name: Ruby Zagreb - RubyZG May meetup @ DECODE location: Zagreb, Croatia date: 2025-05-20 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/307782886 service: meetup - name: RubyJax - Open Hax May 2025 location: Jacksonville, FL date: 2025-05-20 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307573644 service: meetup - name: Toulouse.rb - Conf & Apéro - Mai location: Toulouse, France date: 2025-05-20 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/toulouse-ruby-friends/events/307492131 service: meetup - name: York Ruby - Monthly Meeting May 2025 location: York, UK date: 2025-05-20 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/307398287 service: meetup - name: Montreal.rb - Native Ruby gems with Rust location: Montréal, Canada date: 2025-05-21 start_time: 18:30:16 EDT end_time: 20:59:16 EDT url: https://www.meetup.com/montrealrb/events/307030572 service: meetup - name: Portland Ruby Brigade - Cocktails + Code May 2025 location: Portland, OR date: 2025-05-21 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/305471496 status: cancelled service: meetup - name: Rails Taiwan - 高雄 Rails Meetup May 2025 location: Kaohsiung, Taiwan date: 2025-05-21 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307580446 service: meetup - name: Ruby Montevideo - Meetup - Mayo 2025 location: Montevideo, Uruguay date: 2025-05-21 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/307735416 service: meetup - name: Ruby in London - with Mindful Chef location: London, UK date: 2025-05-21 start_time: 17:30:00 BST end_time: 19:30:00 BST url: https://www.meetup.com/ruby-in-london/events/307304019 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, May @ Cisco Meraki location: San Francisco, CA date: 2025-05-21 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/9f6l9pn2 service: luma - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-05-21 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/307423980 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup May 2025 location: Online date: 2025-05-21 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/307588585 service: meetup - name: Dresden.rb - meetup May 2025 location: Dresden, Germany date: 2025-05-22 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://dresdenrb.onruby.de/events/dresden-rb-meetup-may-2025-1475 - name: Nantes.rb - Nantes RB à la nuit des Meetup location: nantes, France date: 2025-05-22 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/nantes-rb/events/307651155 service: meetup - name: Polish Ruby User Group - Poznań Ruby User Group - May 2025 location: Poznań, Poland date: 2025-05-22 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/307805770 service: meetup - name: Poznań Ruby User Group - PoznańRubyUserGroup May 2025 location: 60-810 Poznań, Poland date: 2025-05-22 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://luma.com/iiuld7lr service: luma - name: Ruby Ireland - Resilient Systems Start with the Human Stack location: Dublin, Ireland date: 2025-05-22 start_time: 18:30:00 IST end_time: 21:00:00 IST url: https://www.meetup.com/rubyireland/events/307799270 service: meetup - name: 'RubyJax - Workshop: Intro to Ruby on Rails' location: Jacksonville Beach, FL date: 2025-05-22 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/307753058 service: meetup - name: Ruby and Rails Adelaide - Adelaide Ruby Meetup location: Adelaide, Australia date: 2025-05-23 start_time: 18:00:00 ACST end_time: 21:00:00 ACST url: https://www.meetup.com/adelaiderb/events/307653427 service: meetup - name: Pune Ruby Meetup - Ruby + Go May meetup location: Maharashtra 411045, India date: 2025-05-24 start_time: 10:30:00 IST end_time: 13:30:00 IST url: https://luma.com/05duzyj9 service: luma - name: Orange County Ruby - Ruby Science May 2025 location: Online date: 2025-05-26 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/307679419 service: meetup - name: Amsterdam.rb - May Amsterdam Ruby meetup location: Amsterdam, Netherlands date: 2025-05-27 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/amsterdam-rb/events/306538127 service: meetup - name: Austin.rb - Social @ Central Machine Works location: Austin, TX date: 2025-05-27 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497326 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #64' location: เขตวัฒนา, Thailand date: 2025-05-27 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/307801105 service: meetup - name: Kansas City Ruby - KC Ruby May Hack Night location: Shawnee, KS date: 2025-05-27 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/0y0iu9b4 service: luma - name: RubyJax - Open Hax May 2025 location: Jacksonville, FL date: 2025-05-27 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307705016 service: meetup - name: Toronto Ruby - May 2025 - Spring is Here location: Toronto, Canada date: 2025-05-27 start_time: 17:30:00 EDT end_time: 20:30:00 EDT url: https://luma.com/i00pdbmp service: luma - name: Philippine Ruby Users Group - PhRUG - Harvest Time! location: Quezon City, Philippines date: 2025-05-28 start_time: 18:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ruby-phil/events/308017459 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup May 2025 location: Kaohsiung, Taiwan date: 2025-05-28 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307714649 service: meetup - name: 'Barcelona.rb - BARcelona.rb - let''s have some beers together at #May' location: Barcelona, Spain date: 2025-05-29 start_time: 18:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/barcelona-rb/events/307931719 service: meetup - name: 'Madrid.rb - Mayo 2025 - Roundtable: "Real world usage of LLMs and AI in software development"' location: Madrid, Spain date: 2025-05-29 start_time: 19:30:00 CEST end_time: 21:30:00 CEST url: https://www.madridrb.com/events/mayo-2025-roundtable-real-world-usage-of-llms-and-ai-in-software-development-1640 - name: Melbourne Ruby - Ruby Melbourne Meetup May 2025 location: Southbank, Australia date: 2025-05-29 start_time: 18:00:00 AEST end_time: 21:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601905 service: meetup - name: Orange County Ruby - Meetup May 2025 location: Dana Point, CA date: 2025-05-29 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/307747296 status: cancelled service: meetup - name: 'Valencia.rb - +Hacknight - Learn MCP with Ruby: Connecting existing web apps and AI' location: Valencia, Spain date: 2025-05-29 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/vlctechhub/events/307952237 service: meetup - name: Pune Ruby Meetup - Ruby + Go May meetup location: Maharashtra 411045, India date: 2025-05-31 start_time: 10:30:00 IST end_time: 13:30:00 IST url: https://luma.com/05duzyj9 service: luma - name: 'Bluegrass Ruby - June 2025: Rails 2 and Phoenix LiveView' location: Lexington, KY date: 2025-06-03 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/308026901 service: meetup - name: 'Brighton Ruby Group - Ruby & Tacos: Brighton Pre-Conf Meetup' location: BN1 1EZ, UK date: 2025-06-03 start_time: 12:00:00 BST end_time: 13:30:00 BST url: https://www.meetup.com/brighton-ruby-group/events/307438750 service: meetup - name: Charlotte Ruby - Ruby Hack Night June 2025 location: Online date: 2025-06-03 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/307829062 service: meetup - name: Paris.rb - Meetup June 2025 location: Paris, France date: 2025-06-03 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris_rb/events/307439561 service: meetup - name: RubyJax - Open Hax June 2025 location: Jacksonville, FL date: 2025-06-03 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307831185 service: meetup - name: Seattle.rb - June 2025 location: Seattle, WA date: 2025-06-03 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=31 - name: ChicagoRuby - Chicago Ruby @ Chime location: Chicago, IL date: 2025-06-04 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/307067943 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby June 2025 location: Prague, Czechia date: 2025-06-04 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/307844153 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup June 2025 location: Kaohsiung, Taiwan date: 2025-06-04 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307838798 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, June @ Chime location: San Francisco, CA date: 2025-06-04 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/doa9bu64 service: luma - name: Cologne.rb - Juni 2025 Meetup bei Placetel location: Köln, Germany date: 2025-06-05 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/cologne-rb/events/307102584 service: meetup - name: 'Polish Ruby User Group - Warsaw Meetup #JUNE' location: Warsaw, Poland date: 2025-06-05 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/308002944 service: meetup - name: Ruby User Group Berlin - June Meetup 2025 location: Berlin, Germany date: 2025-06-05 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/june-meetup-2025-1673 - name: 'vienna.rb - Vienna.rb #64 - Ruby Summer Meetup' location: Vienna, Austria date: 2025-06-05 start_time: 18:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/vienna-rb/events/307283556 service: meetup - name: MerseyRails - Inaugural Meetup location: Liverpool, UK date: 2025-06-06 start_time: 17:00:00 BST end_time: 21:00:00 BST url: https://merseyrails.com - name: London Ruby User Group - June 2025 Meeting location: London, UK date: 2025-06-09 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/june - name: Orange County Ruby - Ruby Science June 2025 location: Online date: 2025-06-09 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/307938592 service: meetup - name: 'Austin.rb - Rewriting Localhost: A Modern Approach to Dev Environments' location: Austin, TX date: 2025-06-10 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960576 service: meetup - name: B'more on Rails - Monthly Meetup June 2025 location: Online date: 2025-06-10 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/307968149 service: meetup - name: Belfast Ruby - Marco Roth & John Gallagher location: Belfast BT12 5GH, UK date: 2025-06-10 start_time: 18:00:00 BST end_time: 21:00:00 BST url: https://luma.com/nfivv402 service: luma - name: 'BelfastRuby - Belfast Ruby: Marco Roth & John Gallagher' location: Belfast, UK date: 2025-06-10 start_time: 18:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/belfastruby/events/307911039 service: meetup - name: Boston Ruby Group - June 2025 meeting location: Boston, MA date: 2025-06-10 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/jyhr0dvs service: luma - name: 'Krakow Ruby Users Group (KRUG) - KRUG #3 2025' location: 31-123 Kraków, Poland date: 2025-06-10 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/0852jl2w service: luma - name: Philly.rb - Pubnite June 2025 location: Online date: 2025-06-10 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/307185641 service: meetup - name: Ruby Bogotá - Vamos a reunirnos hablar de ruby location: Bogota, Colombia date: 2025-06-10 start_time: 18:30:00 -05 end_time: 21:30:00 -05 url: https://www.meetup.com/bogota-ruby-meetup/events/308259771 service: meetup - name: Ruby on Rails Oceania Sydney - ROROSYD | JUNE 2025 EDITION location: Sydney, Australia date: 2025-06-10 start_time: 18:00:00 AEST end_time: 20:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/308158353 service: meetup - name: RubyJax - Open Hax June 2025 location: Jacksonville, FL date: 2025-06-10 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/307968928 service: meetup - name: 'VanRuby - Derailing Our Application: How And Why We Are Decoupling Our Code From Rails' location: Vancouver, Canada date: 2025-06-10 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/308072595 service: meetup - name: Atlanta Ruby - Monthly Meetup June 2025 location: Online date: 2025-06-11 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/307202389 service: meetup - name: Boulder Ruby - June 2025 Social Night location: Boulder, CO date: 2025-06-11 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/bm1073gf service: luma - name: Copenhagen Ruby Brigade - Social night at Skaal location: Copenhagen, Denmark date: 2025-06-11 start_time: 17:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/copenhagen-ruby-brigade/events/308277997 service: meetup - name: 'Geneva.rb - Race Conditions in Rails: Gotta Catch ’Em All (Before Your Buyers Do)' location: Genève, Switzerland date: 2025-06-11 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/304629286 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup June 2025 location: Indianapolis, IN date: 2025-06-11 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/307994457 service: meetup - name: NYC.rb - Event June 2025 location: Online date: 2025-06-11 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/307990380 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup June 2025 location: Kaohsiung, Taiwan date: 2025-06-11 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/307978332 service: meetup - name: Ruby Usergroup Hamburg - Juni 2025 location: Hamburg, Germany date: 2025-06-11 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-juni-2025-1607 - name: 'African Ruby Community - Ruby Thursdays: To be determined June 2025' location: Online date: 2025-06-12 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306568156 service: meetup - name: Ruby Buenos Aires - Ruby MeetUp - Junio 2025 location: Online date: 2025-06-12 start_time: 19:00:00 -03 end_time: 21:00:00 -03 url: https://www.meetup.com/rubyba/events/307825488 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup June 2025 location: Columbus, OH date: 2025-06-16 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/307987144 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #140 Czerwiec 2025' location: Wroclaw, Poland date: 2025-06-16 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/308433540 service: meetup - name: Miami Ruby Brigade - June 2025 location: Coral Gables, FL date: 2025-06-16 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/308095416 service: meetup - name: Slovenia Ruby User Group - Spring Ruby meetup location: Ljubljana, Slovenia date: 2025-06-16 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/rubyslovenia/events/308157106 service: meetup - name: "Lyon.rb - 2025.06 / The Summer edition \U0001F60E☀️" location: Lyon, France date: 2025-06-17 start_time: 18:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/lyonrb/events/307419621 service: meetup - name: 'Robalos.rb - Robalos #3' location: Figueira da Foz, Portugal date: 2025-06-17 start_time: 18:30:00 WEST end_time: 20:00:00 WEST url: https://www.meetup.com/robalos-rb/events/308478494 service: meetup - name: Ruby Europe - Ruby + AI Meetup London location: London EC1V 9NR, UK date: 2025-06-17 start_time: 19:00:00 CEST end_time: 23:00:00 CEST url: https://luma.com/kzqf2xyz service: luma - name: RubyJax - Open Hax June 2025 location: Jacksonville, FL date: 2025-06-17 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/308118671 service: meetup - name: Toronto Ruby - June 2025 - The Start of Summer Edition location: Toronto, Canada date: 2025-06-17 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://luma.com/w1b342xg service: luma - name: Toulouse.rb - Conf & Apéro - Juin location: Toulouse, France date: 2025-06-17 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/toulouse-ruby-friends/events/307661560 service: meetup - name: York Ruby - Monthly Meeting location: York, UK date: 2025-06-17 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/307953382 service: meetup - name: ruby.mn - June 17th Ruby.MN meetup. location: St Paul, MN date: 2025-06-17 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/ruby-mn/events/308331266 service: meetup - name: Montreal.rb - Ruby Open Source Night location: Montréal, Canada date: 2025-06-18 start_time: 18:30:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/montrealrb/events/307979974 service: meetup - name: Portland Ruby Brigade - Cocktails + Code June 2025 location: Portland, OR date: 2025-06-18 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/305471498 status: cancelled service: meetup - name: Rails Taiwan - 高雄 Rails Meetup June 2025 location: Kaohsiung, Taiwan date: 2025-06-18 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/308131191 service: meetup - name: Ruby on Rails Switzerland - Railshöck at Renuo location: Wallisellen, Switzerland date: 2025-06-18 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/rubyonrails-ch/events/307626721 service: meetup - name: SF Bay Area Ruby - SF Ruby & Elixir with José Valim at PlanetScale location: San Francisco, CA date: 2025-06-18 start_time: 17:00:00 PDT end_time: 20:00:00 PDT url: https://luma.com/rzyjxo93 service: luma - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-06-18 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/308092453 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup June 2025 location: Online date: 2025-06-18 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/308081948 service: meetup - name: RubyJax - Rails Generators location: Jacksonville Beach, FL date: 2025-06-19 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/308518452 service: meetup - name: 'Auckland Ruby - Ruby Nights June: TBC' location: Auckland, New Zealand date: 2025-06-23 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875955 status: cancelled service: meetup - name: Orange County Ruby - Ruby Science June 2025 location: Online date: 2025-06-23 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyhcjbfc service: meetup - name: Austin.rb - Social @ Deep Eddy Cabaret location: Austin, TX date: 2025-06-24 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497330 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #65' location: เขตวัฒนา, Thailand date: 2025-06-24 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/308225743 service: meetup - name: 'Kansas City Ruby - Meetup: Web Scraping with Ferrum' location: Shawnee, KS date: 2025-06-24 start_time: 18:00:00 CDT end_time: 19:00:00 CDT url: https://luma.com/5abe9emx service: luma - name: Nantes.rb - @ Jack's Corner Pub&Food location: Nantes, France date: 2025-06-24 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/nantes-rb/events/308481125 service: meetup - name: Ruby Europe - Ruby + AI Meetup location: 10119 Berlin, Germany date: 2025-06-24 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/286b35qd service: luma - name: 'Ruby User Group Berlin - Special Ruby Europe: Ruby + AI meetup' location: Berlin, Germany date: 2025-06-24 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.rug-b.de/events/special-ruby-europe-ruby-ai-meetup-1706 - name: RubyJax - Open Hax June 2025 location: Jacksonville, FL date: 2025-06-24 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/308293837 service: meetup - name: Philippine Ruby Users Group - PhRUG - Going, going...GONE! location: Online date: 2025-06-25 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/308568850 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup June 2025 location: Kaohsiung, Taiwan date: 2025-06-25 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/308303949 service: meetup - name: Ruby Zagreb - RubyZG June meetup @ Devot location: Zagreb, Croatia date: 2025-06-25 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/308435495 service: meetup - name: Winnipeg Ruby User Group - Development Speed Optimizations in Rails 8 location: Winnipeg, Canada date: 2025-06-25 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/winnipegrb/events/308546274 service: meetup - name: Melbourne Ruby - Ruby Melbourne Meetup June 2025 location: Southbank, Australia date: 2025-06-26 start_time: 18:00:00 AEST end_time: 21:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601914 service: meetup - name: Orange County Ruby - Meetup June 2025 location: Dana Point, CA date: 2025-06-26 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/pbgwwqyhcjbjc service: meetup - name: Ruby Wellington - June location: Wellington, New Zealand date: 2025-06-26 start_time: 17:00:00 NZST end_time: 19:00:00 NZST url: https://www.meetup.com/rubywellington/events/306413731 service: meetup - name: Valencia.rb - Time to play! location: Valencia, Spain date: 2025-06-26 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/vlctechhub/events/308442811 service: meetup - name: Ruby DF - 7ª Edição - Refatoração em grupo location: Brasilia, Brazil date: 2025-06-28 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/setima-edicao - name: 'Bluegrass Ruby - July 2025: Advent of Code' location: Lexington, KY date: 2025-07-01 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/308596581 service: meetup - name: Charlotte Ruby - Ruby Hack Night July 2025 location: Online date: 2025-07-01 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/308448570 service: meetup - name: Paris.rb - July 2025 location: Paris, France date: 2025-07-01 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris_rb/events/308552376 service: meetup - name: Ruby Belgium - Meetup Summer 2025 location: 1160 Auderghem, Belgium date: 2025-07-01 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/g8adodhj service: luma - name: 'Ruby Malaysia - Ruby Tuesdays KL #113: Casual Meetup' location: Petaling Jaya, Malaysia date: 2025-07-01 start_time: 19:30:00 +08 end_time: 21:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/308628137 service: meetup - name: RubyJax - Open Hax July 2025 location: Jacksonville, FL date: 2025-07-01 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/308450237 service: meetup - name: Seattle.rb - July 2025 location: Seattle, WA date: 2025-07-01 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=32 - name: ChicagoRuby - Ruby Drinkup July 2nd @ Chicago Brewhouse Riverwalk location: Chicago, IL date: 2025-07-02 start_time: 17:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/308006843 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby July 2025 location: Prague, Czechia date: 2025-07-02 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/308462988 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup July 2025 location: Kaohsiung, Taiwan date: 2025-07-02 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/308457124 service: meetup - name: Singapore Ruby Group - Ruby SG July Meetup location: Singapore date: 2025-07-02 start_time: 18:30:00 +08 end_time: 20:30:00 +08 url: https://luma.com/gdzrmak0 service: luma - name: Amsterdam.rb - July Amsterdam Ruby meetup location: Amsterdam, Netherlands date: 2025-07-03 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/amsterdam-rb/events/308536326 service: meetup - name: Brighton Ruby Group - PRE-VOLVE [25] location: Brighton, UK date: 2025-07-03 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/brighton-ruby-group/events/308753883 service: meetup - name: 'Brighton Ruby Group - EVOLVE [25]: Shaping Tomorrow' location: Brighton, UK date: 2025-07-04 start_time: '08:30:00 BST' end_time: 17:30:00 BST url: https://www.meetup.com/brighton-ruby-group/events/308327178 service: meetup - name: Slovenia Ruby User Group - Hands-on Nix & NixOS Workshop with Jacek Galowicz location: Ljubljana, Slovenia date: 2025-07-06 start_time: 13:00:00 CEST end_time: 18:00:00 CEST url: https://www.meetup.com/rubyslovenia/events/308135834 service: meetup - name: Orange County Ruby - Ruby Science July 2025 location: Online date: 2025-07-07 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyhckbkb service: meetup - name: Austin.rb - Programming Challenge, should you choose to accept it location: Austin, TX date: 2025-07-08 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960579 service: meetup - name: B'more on Rails - Monthly Meetup July 2025 location: Online date: 2025-07-08 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/rkzbjsyhckblb service: meetup - name: Philly.rb - Pubnite July 2025 location: Online date: 2025-07-08 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/308605377 service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - ROROSYD | JULY 2025 EDITION location: Sydney, Australia date: 2025-07-08 start_time: 18:00:00 AEST end_time: 20:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/308780826 service: meetup - name: RubyJax - Open Hax July 2025 location: Jacksonville, FL date: 2025-07-08 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhckblb service: meetup - name: 'Sardines.rb: Lisbon Ruby Meetup - Sardines #14 - In-Person Edition' location: Lisbon, Portugal date: 2025-07-08 start_time: 18:00:00 WEST end_time: 20:00:00 WEST url: https://www.meetup.com/sardinesrb/events/308538116 service: meetup - name: Atlanta Ruby - Monthly Meetup July 2025 location: Online date: 2025-07-09 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/307205011 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup July 2025 location: Indianapolis, IN date: 2025-07-09 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/308965169 service: meetup - name: NYC.rb - Event July 2025 location: Online date: 2025-07-09 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308415519 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup July 2025 location: Kaohsiung, Taiwan date: 2025-07-09 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhckbmb service: meetup - name: Ruby Usergroup Hamburg - Juli 2025 location: Hamburg, Germany date: 2025-07-09 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-juli-2025-1739 - name: 'African Ruby Community - Ruby Thursdays: To be determined July 2025' location: Online date: 2025-07-10 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306568157 service: meetup - name: Ruby Montevideo - Meetup - Julio 2025 location: Montevideo, Uruguay date: 2025-07-10 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/308754500 service: meetup - name: London Ruby User Group - July 2025 Meeting location: London, UK date: 2025-07-14 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/july - name: RubyJax - Open Hax July 2025 location: Jacksonville, FL date: 2025-07-15 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/309638004 service: meetup - name: York Ruby - Monthly Meeting location: York, UK date: 2025-07-15 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/308647166 service: meetup - name: 'ruby.mn - July 15th Ruby.MN meetup: JRuby in 2025: Faster, Stronger, Better' location: St Paul, MN date: 2025-07-15 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/ruby-mn/events/309046939 service: meetup - name: Boulder Ruby - July 2025 Presentation Night location: Boulder, CO date: 2025-07-16 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/ndr3imn9 service: luma - name: Montreal.rb - JSON Response Strategies for Rails APls location: Montréal, Canada date: 2025-07-16 start_time: 18:30:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/montrealrb/events/308551557 service: meetup - name: Portland Ruby Brigade - Cocktails + Code July 2025 location: Portland, OR date: 2025-07-16 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/308533814 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup July 2025 location: Kaohsiung, Taiwan date: 2025-07-16 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhckbvb service: meetup - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-07-16 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/308657139 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup July 2025 location: Online date: 2025-07-16 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/rvvzzryhckbvb service: meetup - name: Munich Ruby User Group - Ruby Meetup July 2025 location: Munich, Germany date: 2025-07-17 start_time: 19:00:00 CEST end_time: 22:00:00 CEST url: https://www.meetup.com/munich-rubyshift-ruby-user-group/events/308137751 service: meetup - name: North West Ruby User Group - Tugging threads location: Manchester, UK date: 2025-07-17 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/tugging-threads-july-2025 - name: RubyJax - Lightning Talks location: Jacksonville Beach, FL date: 2025-07-17 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/309486712 service: meetup - name: SF Bay Area Ruby - SF Ruby AI Hackathon location: San Francisco, CA date: 2025-07-19 start_time: 10:00:00 PDT end_time: 17:00:00 PDT url: https://luma.com/znhcct7v service: luma - name: The San Francisco Ruby - SF Ruby AI Hackathon location: San Francisco, CA date: 2025-07-19 start_time: 10:00:00 PDT end_time: 17:00:00 PDT url: https://www.meetup.com/sfruby/events/308374196 service: meetup - name: 'Auckland Ruby - Ruby Nights July: No flaky capybara; Integrating Workato with Ruby' location: Auckland, New Zealand date: 2025-07-21 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875957 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup July 2025 location: Columbus, OH date: 2025-07-21 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/308635265 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #141 Lipiec 2025' location: Wroclaw, Poland date: 2025-07-21 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/308916371 service: meetup - name: Miami Ruby Brigade - July 2025 location: Coral Gables, FL date: 2025-07-21 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/310048189 service: meetup - name: Orange County Ruby - Ruby Science July 2025 location: Online date: 2025-07-21 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310040341 service: meetup - name: Austin.rb - Social @ The Draught House Pub & Brewery location: Austin, TX date: 2025-07-22 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497335 service: meetup - name: RubyJax - Open Hax July 2025 location: Jacksonville, FL date: 2025-07-22 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/309951838 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, July @ Figma location: San Francisco, CA date: 2025-07-22 start_time: 17:00:00 PDT end_time: 20:30:00 PDT url: https://luma.com/8jcbnfls service: luma - name: Rails Taiwan - 高雄 Rails Meetup July 2025 location: Kaohsiung, Taiwan date: 2025-07-23 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/309979233 service: meetup - name: Ruby User Group Berlin - Late July social meetup location: Berlin, Germany date: 2025-07-24 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/late-july-social-meetup-1838 - name: Ruby Zagreb - July RubyZG drinkup location: Zagreb, Croatia date: 2025-07-24 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/309352017 service: meetup - name: Toronto Ruby - July 2025 Edition location: Toronto, Canada date: 2025-07-24 start_time: 17:30:00 EDT end_time: 20:30:00 EDT url: https://luma.com/km1571iq service: luma - name: Kansas City Ruby - KC Ruby July Hack Night location: Shawnee, KS date: 2025-07-29 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/v4yamu7q service: luma - name: Philippine Ruby Users Group - PhRUG - Kickin it Lo-Fi location: Manila, Philippines date: 2025-07-29 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/309958294 service: meetup - name: RubyJax - Open Hax July 2025 location: Jacksonville, FL date: 2025-07-29 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310138984 service: meetup - name: Toulouse.rb - Apéro & Networking - Juillet location: Toulouse, France date: 2025-07-29 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/toulouse-ruby-friends/events/310077898 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup July 2025 location: Kaohsiung, Taiwan date: 2025-07-30 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310147070 service: meetup - name: 'Barcelona.rb - BARcelona.rb - let''s have some beers together at #July' location: Barcelona, Spain date: 2025-07-31 start_time: 18:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/barcelona-rb/events/310169092 service: meetup - name: Melbourne Ruby - Ruby Melbourne Meetup July 2025 location: Melbourne, Australia date: 2025-07-31 start_time: 17:30:00 AEST end_time: 20:30:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601915 service: meetup - name: Orange County Ruby - Meetup July 2025 location: Dana Point, CA date: 2025-07-31 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/310187418 service: meetup - name: Brighton Ruby Group - Silicon Brighton Marches with Pride 2025 location: Hove, UK date: 2025-08-02 start_time: '09:00:00 BST' end_time: 14:00:00 BST url: https://www.meetup.com/brighton-ruby-group/events/310123085 service: meetup - name: Pune Ruby Meetup - August Ruby Meetup location: Maharashtra 411045, India date: 2025-08-02 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://luma.com/ftfdakox service: luma - name: Orange County Ruby - Ruby Science August 2025 location: Online date: 2025-08-04 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310257143 service: meetup - name: Charlotte Ruby - Ruby Hack Night August 2025 location: Online date: 2025-08-05 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/308872349 service: meetup - name: 'Paris.rb - BARisRb.new(:monthly, on: :first_tuesday)' location: 75001, Paris, France date: 2025-08-05 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris_rb/events/308552390 service: meetup - name: 'Ruby Malaysia - Ruby Tuesdays KL #114: Casual Meetup' location: Petaling Jaya, Malaysia date: 2025-08-05 start_time: 19:30:00 +08 end_time: 21:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310305823 service: meetup - name: RubyJax - Open Hax August 2025 location: Jacksonville, FL date: 2025-08-05 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/309951839 service: meetup - name: Seattle.rb - August 2025 location: Seattle, WA date: 2025-08-05 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=33 - name: ChicagoRuby - @ Workforce.com location: Chicago, IL date: 2025-08-06 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/chicagoruby/events/308610556 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby August 2025 location: Prague, Czechia date: 2025-08-06 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/309990329 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup August 2025 location: Kaohsiung, Taiwan date: 2025-08-06 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/309978051 service: meetup - name: 'Polish Ruby User Group - PLRUG Warsaw Meetup #AUGUST - Special Edition @ BEHIND THE CODE' location: Warsaw, Poland date: 2025-08-07 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/310121470 service: meetup - name: London Ruby User Group - August 2025 Meeting location: London, UK date: 2025-08-11 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/august - name: Austin.rb - Hack Night! location: Austin, TX date: 2025-08-12 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960585 service: meetup - name: B'more on Rails - Monthly Meetup August 2025 location: Online date: 2025-08-12 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/310136715 service: meetup - name: Boston Ruby Group - August 2025 meeting location: Boston, MA date: 2025-08-12 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/lxflyzae service: luma - name: Philly.rb - Pubnite August 2025 location: Online date: 2025-08-12 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/307185647 service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - August 2025 EDITION location: Sydney, Australia date: 2025-08-12 start_time: 18:00:00 AEST end_time: 20:00:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310332015 service: meetup - name: RubyJax - Open Hax August 2025 location: Jacksonville, FL date: 2025-08-12 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310137090 service: meetup - name: Atlanta Ruby - Open Ruby on Rails Topics Night - ATLRUG Virtual location: Online date: 2025-08-13 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/307205033 service: meetup - name: Boulder Ruby - August 2025 Presentation Night location: Boulder, CO date: 2025-08-13 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/wknbqe8c service: luma - name: Indianapolis Ruby Brigade - Monthly Meetup August 2025 location: Indianapolis, IN date: 2025-08-13 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/310160335 service: meetup - name: NYC on Rails - Artificial Ruby NYC (RSVP on Luma) location: New York, NY date: 2025-08-13 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/nyc-on-rails/events/310470290 service: meetup - name: NYC.rb - Event August 2025 location: Online date: 2025-08-13 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308866985 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup August 2025 location: Kaohsiung, Taiwan date: 2025-08-13 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310146347 service: meetup - name: Ruby Usergroup Hamburg - August 2025 location: Hamburg, Germany date: 2025-08-13 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-august-2025-1805 - name: Ruby and Rails Perth - Ruby Perth - August 2025 location: Perth, Australia date: 2025-08-13 start_time: 17:00:00 AWST end_time: 19:00:00 AWST url: https://www.meetup.com/ruby-perth-meetup/events/310244015 service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined August 2025' location: Online date: 2025-08-14 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/306476212 service: meetup - name: Ruby Malaysia - August 2025 location: Online date: 2025-08-14 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310423390 service: meetup - name: Ruby Wellington - August location: Wellington, New Zealand date: 2025-08-14 start_time: 17:00:00 NZST end_time: 19:00:00 NZST url: https://www.meetup.com/rubywellington/events/306413742 service: meetup - name: SD Ruby - Summer Social location: San Diego, CA date: 2025-08-14 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/sdruby/events/310480873 service: meetup - name: Ruby DF - 8ª Edição - O seu primeiro emprego em Ruby location: Brasilia, Brazil date: 2025-08-16 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/oitava-edicao - name: 'Auckland Ruby - Ruby Nights August: TBC' location: Auckland, New Zealand date: 2025-08-18 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875960 status: cancelled service: meetup - name: Columbus Ruby Brigade - Monthly Meetup August 2025 location: Columbus, OH date: 2025-08-18 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/310048975 service: meetup - name: Miami Ruby Brigade - August 2025 location: Coral Gables, FL date: 2025-08-18 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/310261992 service: meetup - name: Orange County Ruby - Ruby Science August 2025 location: Online date: 2025-08-18 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310255333 service: meetup - name: Ottawa Ruby - Summer Shopify Edition location: Ottawa, Canada date: 2025-08-19 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/ottawaruby/events/310376161 service: meetup - name: RubyJax - Open Hax August 2025 location: Jacksonville, FL date: 2025-08-19 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310283863 service: meetup - name: York Ruby - Monthly Meeting location: York, UK date: 2025-08-19 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/310101660 service: meetup - name: 'ruby.mn - August 19th Ruby.MN meetup: RailsConf Highlights and Reflections.' location: St Paul, MN date: 2025-08-19 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/ruby-mn/events/310441879 service: meetup - name: Montreal.rb - Ruby Tech Outing at Benelux Bar location: Montréal, Canada date: 2025-08-20 start_time: 19:00:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/montrealrb/events/309519928 service: meetup - name: Portland Ruby Brigade - Cocktails + Code August 2025 location: Portland, OR date: 2025-08-20 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/310303792 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup August 2025 location: Kaohsiung, Taiwan date: 2025-08-20 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310290621 service: meetup - name: Utah Ruby Users Group - Utah Valley URUG location: Lehi, UT date: 2025-08-20 start_time: 19:00:00 MDT end_time: 21:00:00 MDT url: https://www.meetup.com/utah-ruby-users-group/events/310486726 status: cancelled service: meetup - name: West Midlands Ruby User Group - Monthly Meetup August 2025 location: Online date: 2025-08-20 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/310295666 service: meetup - name: Winnipeg Ruby User Group - Teaching an LLM New Tricks location: Winnipeg, Canada date: 2025-08-20 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/winnipegrb/events/310385645 service: meetup - name: Dresden.rb - meetup August 2025 location: Dresden, Germany date: 2025-08-21 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://dresdenrb.onruby.de/events/dresden-rb-meetup-august-2025-1772 - name: North West Ruby User Group - Software dev with LLMs, Summer 25 update location: Manchester, UK date: 2025-08-21 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/software-dev-with-llms-summer-2025-update - name: Ruby Malaysia - August 2025 location: Online date: 2025-08-21 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310473986 service: meetup - name: Ruby Montevideo - Meetup - Agosto 2025 location: Montevideo, Uruguay date: 2025-08-21 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/310087437 service: meetup - name: Ruby User Group Berlin - Social Ruby Meetup location: Berlin, Germany date: 2025-08-21 start_time: 19:30:00 CEST end_time: 21:30:00 CEST url: https://www.rug-b.de/events/social-ruby-meetup-1904 - name: Ruby Zagreb - RubyZg @ Zagreb Developers Drinkup, August 2025 location: Zagreb, Croatia date: 2025-08-21 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/rubyzg/events/310467430 service: meetup - name: "RubyJax - Speed Up Your Rails App with Caching! \U0001F680" location: Jacksonville Beach, FL date: 2025-08-21 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/rubyjax/events/310509474 service: meetup - name: Austin.rb - Social @ Austin Beer Garden Brewing Co location: Austin, TX date: 2025-08-26 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497338 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #66' location: เขตวัฒนา, Thailand date: 2025-08-26 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/310246437 service: meetup - name: Kansas City Ruby - KC Ruby August Hack Night location: Shawnee, KS date: 2025-08-26 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/doqg940b service: luma - name: RubyJax - Open Hax August 2025 location: Jacksonville, FL date: 2025-08-26 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310398050 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, August @ Github location: San Francisco, CA date: 2025-08-26 start_time: 17:00:00 PDT end_time: 20:30:00 PDT url: https://luma.com/k2l9089u service: luma - name: Rails Taiwan - 高雄 Rails Meetup August 2025 location: Kaohsiung, Taiwan date: 2025-08-27 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310405789 service: meetup - name: Ruby Ireland - The Last Wheel You Will Ever Reinvent location: Dublin, Ireland date: 2025-08-27 start_time: 18:30:00 IST end_time: 20:30:00 IST url: https://www.meetup.com/rubyireland/events/310536751 service: meetup - name: Melbourne Ruby - Ruby Melbourne Meetup August 2025 location: Melbourne, Australia date: 2025-08-28 start_time: 17:30:00 AEST end_time: 20:30:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601920 service: meetup - name: Orange County Ruby - Meetup August 2025 location: Dana Point, CA date: 2025-08-28 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/310435415 service: meetup - name: Philippine Ruby Users Group - PhRUG - sayo-Narra! location: Quezon City, Philippines date: 2025-08-28 start_time: 18:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/310422645 service: meetup - name: Ruby Malaysia - August 2025 location: Online date: 2025-08-28 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310422762 service: meetup - name: Orange County Ruby - Ruby Science September 2025 location: Online date: 2025-09-01 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310488166 service: meetup - name: Boston Ruby Group - September 2025 meeting location: Boston, MA date: 2025-09-02 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/o71llz38 service: luma - name: Charlotte Ruby - Ruby Hack Night September 2025 location: Online date: 2025-09-02 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/310488915 service: meetup - name: Paris.rb - Meetup September 2025 location: Paris, France date: 2025-09-02 start_time: 19:15:00 CEST end_time: 21:15:00 CEST url: https://www.meetup.com/paris_rb/events/310693908 service: meetup - name: 'Ruby Malaysia - Ruby Tuesdays KL #115: At Shortcut Bangsar South' location: Kuala Lumpur, Malaysia date: 2025-09-02 start_time: 19:30:00 +08 end_time: 21:30:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310743723 service: meetup - name: RubyJax - Open Hax September 2025 location: Jacksonville, FL date: 2025-09-02 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310511595 service: meetup - name: Seattle.rb - September 2025 location: Seattle, WA date: 2025-09-02 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=34 - name: Prague.rb - First Wednesday Of The Month - Ruby September 2025 location: Prague, Czechia date: 2025-09-03 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/310523337 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2025 location: Kaohsiung, Taiwan date: 2025-09-03 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310517907 service: meetup - name: Cologne.rb - September 2025 Meetup location: Köln, Germany date: 2025-09-04 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/cologne-rb/events/308225694 service: meetup - name: Ruby Malaysia - September 2025 location: Online date: 2025-09-04 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310473989 service: meetup - name: Ruby User Group Berlin - September Meetup 2025 location: Berlin, Germany date: 2025-09-04 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.rug-b.de/events/september-meetup-2025-1871 - name: 'vienna.rb - Vienna.rb #65 - Ruby Autumn Meetup' location: Vienna, Austria date: 2025-09-04 start_time: 18:30:00 CEST end_time: 21:30:00 CEST url: https://www.meetup.com/vienna-rb/events/310404842 service: meetup - name: Pune Ruby Meetup - September Ruby Meetup location: Maharashtra 411057, India date: 2025-09-06 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://luma.com/4zo2m8i2 service: luma - name: London Ruby User Group - September 2025 Meeting location: London, UK date: 2025-09-08 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/september - name: Austin.rb - Declarative Programming at Enterprise Scale location: Austin, TX date: 2025-09-09 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960589 service: meetup - name: B'more on Rails - Monthly Meetup September 2025 location: Online date: 2025-09-09 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/310623561 service: meetup - name: Modena.rb - Third Meetup location: Modena, Italy date: 2025-09-09 start_time: 19:00:00 CEST end_time: 22:00:00 CEST url: https://www.meetup.com/modena-rb/events/310609904 service: meetup - name: Philly.rb - Pubnite September 2025 location: Online date: 2025-09-09 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/307185648 service: meetup - name: Ruby Meetup Oslo - September 9th location: Oslo, Norway date: 2025-09-09 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://www.meetup.com/ruby-meetup-oslo/events/310466755 service: meetup - name: RubyJax - Open Hax September 2025 location: Jacksonville, FL date: 2025-09-09 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310624004 service: meetup - name: Atlanta Ruby - Monthly Meetup September 2025 location: Online date: 2025-09-10 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/307205056 service: meetup - name: Belfast Ruby - BelfastRuby x PyBelfast at TeamFeePay location: Belfast BT3 9DT, UK date: 2025-09-10 start_time: 18:00:00 BST end_time: 21:00:00 BST url: https://luma.com/ppyuhvwz service: luma - name: BelfastRuby - x PyBelfast at TeamFeePay location: Belfast, UK date: 2025-09-10 start_time: 18:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/belfastruby/events/310407715 service: meetup - name: Boulder Ruby - September 2025 Presentation Night location: Boulder, CO date: 2025-09-10 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/puayjyi5 service: luma - name: ChicagoRuby - @ Beyond Finance location: Chicago, IL date: 2025-09-10 start_time: 18:00:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/chicagoruby/events/310313555 service: meetup - name: Indianapolis Ruby Brigade - Monthly Meetup location: Indianapolis, IN date: 2025-09-10 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/310640767 service: meetup - name: NYC.rb - Event September 2025 location: Online date: 2025-09-10 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308866987 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup September 2025 location: Kaohsiung, Taiwan date: 2025-09-10 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310630030 service: meetup - name: Ruby Usergroup Hamburg - September 2025 location: Hamburg, Germany date: 2025-09-10 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-september-2025-1937 - name: Ruby and Rails Perth - Ruby Perth - September 2025 location: Perth, Australia date: 2025-09-10 start_time: 17:00:00 AWST end_time: 19:00:00 AWST url: https://www.meetup.com/ruby-perth-meetup/events/310739433 service: meetup - name: Ruby on Rails Switzerland - Mini Höck at openscript location: Opfikon, Switzerland date: 2025-09-10 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/rubyonrails-ch/events/307191188 service: meetup - name: Ruby Malaysia - September 2025 location: Online date: 2025-09-11 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310473991 service: meetup - name: African Ruby Community - Ruby Meetup:The Modern Rails Blueprint:A Practical Look at Hotwire and Solid Gem location: Nairobi, Kenya date: 2025-09-13 start_time: 11:00:00 EAT end_time: 13:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/310083994 service: meetup - name: 'Rails + Claude AI: Build Together Challenge' location: Philadelphia, PA date: 2025-09-13 start_time: 10:00:00 EDT end_time: 13:30:00 EDT url: https://luma.com/66txruyw service: luma - name: Columbus Ruby Brigade - Monthly Meetup September 2025 location: Columbus, OH date: 2025-09-15 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/310048985 service: meetup - name: London Ruby User Group - September 2025 Meeting location: London, UK date: 2025-09-15 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/september - name: Miami Ruby Brigade - September 2025 location: Coral Gables, FL date: 2025-09-15 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/310721835 service: meetup - name: Orange County Ruby - Ruby Science September 2025 location: Online date: 2025-09-15 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310641482 service: meetup - name: Philly.rb - Scaling Rails the Smart Way + Lightning Talks at Power HRG location: Chester, PA date: 2025-09-16 start_time: 17:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/phillyrb/events/310478357 service: meetup - name: RubyJax - Open Hax September 2025 location: Jacksonville, FL date: 2025-09-16 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/310738848 service: meetup - name: York Ruby - Monthly Meeting location: York, UK date: 2025-09-16 start_time: 19:00:00 BST end_time: 22:00:00 BST url: https://www.meetup.com/yorkdevelopers/events/310649221 service: meetup - name: Montreal.rb - ** Talk Topic To Be Decided*** September 2025 location: Montréal, Canada date: 2025-09-17 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/310448161 service: meetup - name: Portland Ruby Brigade - Cocktails + Code September 2025 location: Portland, OR date: 2025-09-17 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/310416848 service: meetup - name: 'Pune Ruby Meetup - Meet the JRuby Guy: A Fireside Chat with Charles Nutter' location: Maharashtra 411045, India date: 2025-09-17 start_time: 16:00:00 IST end_time: 18:00:00 IST url: https://luma.com/hmkvncub service: luma - name: Rails Taiwan - 高雄 Rails Meetup September 2025 location: Kaohsiung, Taiwan date: 2025-09-17 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/310746038 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup September 2025 location: Online date: 2025-09-17 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/310532084 service: meetup - name: North West Ruby User Group - Turbocharged Native Development location: Manchester, UK date: 2025-09-18 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/september-2025-turbocharged-native-development - name: Ruby Malaysia - September 2025 location: Online date: 2025-09-18 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/310763715 service: meetup - name: Pune Ruby Meetup - September Ruby Meetup location: Maharashtra 411057, India date: 2025-09-20 start_time: 11:00:00 IST end_time: 13:00:00 IST url: https://luma.com/4zo2m8i2 service: luma - name: 'Auckland Ruby - Ruby Nights September: TBC' location: Auckland, New Zealand date: 2025-09-22 start_time: 18:30:00 NZST end_time: 21:30:00 NZST url: https://www.meetup.com/aucklandruby/events/305875962 service: meetup - name: Austin.rb - Social @ Hold Out Brewing location: Austin, TX date: 2025-09-23 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497344 service: meetup - name: RubyJax - Open Hax September 2025 location: Jacksonville, FL date: 2025-09-23 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcmbfc service: meetup - name: Toronto Ruby - September 2025 Edition location: Toronto, Canada date: 2025-09-23 start_time: 17:30:00 EDT end_time: 20:30:00 EDT url: https://luma.com/jy77b1m0 service: luma - name: Rails Taiwan - 高雄 Rails Meetup September 2025 location: Kaohsiung, Taiwan date: 2025-09-24 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcmbgc service: meetup - name: Melbourne Ruby - Ruby Melbourne Meetup September 2025 location: Melbourne, Australia date: 2025-09-25 start_time: 17:30:00 AEST end_time: 20:30:00 AEST url: https://www.meetup.com/ruby-on-rails-oceania-melbourne/events/305601922 service: meetup - name: Orange County Ruby - Meetup September 2025 location: Dana Point, CA date: 2025-09-25 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/pbgwwqyhcmbhc service: meetup - name: Ruby Malaysia - September 2025 location: Online date: 2025-09-25 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcmbhc service: meetup - name: LA Ruby - Techy Brekky location: MANHATTAN BEACH, CA date: 2025-09-26 start_time: '09:00:00 PDT' end_time: 11:00:00 PDT url: https://www.meetup.com/laruby/events/310617942 service: meetup - name: Orange County Ruby - Ruby Science September 2025 location: Online date: 2025-09-29 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/310641484 service: meetup - name: Kansas City Ruby - Jekyll Primer location: Shawnee, KS date: 2025-09-30 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/trahi0q1 service: luma - name: RubyJax - Open Hax September 2025 location: Jacksonville, FL date: 2025-09-30 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcmbnc service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, September @ Binti location: San Francisco, CA date: 2025-09-30 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/jsxmbf03 service: luma - name: Prague.rb - First Wednesday Of The Month - Ruby October 2025 location: Prague, Czechia date: 2025-10-01 start_time: 19:00:00 CEST end_time: 19:00:00 CEST url: https://www.meetup.com/praguerb/events/310678557 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2025 location: Kaohsiung, Taiwan date: 2025-10-01 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcnbcb service: meetup - name: Tallinn Ruby Usergroup - Ruby Tuesday (on Wednesday) - Ruby User Group Meetup - September 2025 location: k-space,Akadeemia 21/1 (5th floor), 12618 Tallinn date: 2025-10-01 start_time: 16:00:00 UTC end_time: 18:00:00 UTC url: https://tallinn.ruby.ee/events/ruby-tuesday-on-wednesday-ruby-user-group-meetup-september-2025-2036 - name: Ruby Malaysia - October 2025 location: Online date: 2025-10-02 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcnbdb service: meetup - name: Brighton Ruby Group - October Evening Meetup location: Brighton, UK date: 2025-10-07 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/brighton-ruby-group/events/308609935 service: meetup - name: Charlotte Ruby - Ruby Hack Night October 2025 location: Online date: 2025-10-07 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/mhkrrtyhcnbkb service: meetup - name: Ruby Europe - Ruby + AI Meetup Paris location: 75008 Paris, France date: 2025-10-07 start_time: 19:00:00 CEST end_time: 23:30:00 CEST url: https://luma.com/yx01jidr service: luma - name: RubyJax - Open Hax October 2025 location: Jacksonville, FL date: 2025-10-07 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcnbkb service: meetup - name: Seattle.rb - October 2025 location: Seattle, WA date: 2025-10-07 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=35 - name: Atlanta Ruby - Open Ruby (or JavaScript) Topics Night - ATLRUG Virtual location: Online date: 2025-10-08 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/307577488 service: meetup - name: Boulder Ruby - October 2025 Presentation Night location: Boulder, CO date: 2025-10-08 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/ue3fso8b service: luma - name: NYC.rb - Event October 2025 location: Online date: 2025-10-08 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308866988 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2025 location: Kaohsiung, Taiwan date: 2025-10-08 start_time: 19:00:00 CST end_time: 19:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcnblb service: meetup - name: Ruby Usergroup Hamburg - Oktober 2025 location: Hamburg, Germany date: 2025-10-08 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://hamburg.onruby.de/events/ruby-usergroup-hamburg-oktober-2025-2003 - name: 'African Ruby Community - Ruby Thursdays: To be determined October 2025' location: Online date: 2025-10-09 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/310428682 service: meetup - name: B'more on Rails - We're Back! | location: Baltimore, MD date: 2025-10-09 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/311113344 service: meetup - name: Ruby Malaysia - October 2025 location: Online date: 2025-10-09 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcnbmb service: meetup - name: Scottish Ruby User Group - Building *and* Using LLMs in Ruby location: Edinburgh, Scotland date: 2025-10-09 start_time: 17:00:00 UTC end_time: 19:00:00 UTC url: https://www.meetup.com/scotrug/events/311075119 service: meetup - name: BRUG.cz October Meetup - Guess Who is Back? location: Brno, Czech Republic date: 2025-10-13 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.brug.cz/event/2025/10/14/guess-who-is-back.html service: none - name: London Ruby User Group - October 2025 Meeting location: London, UK date: 2025-10-13 start_time: 18:00:00 BST end_time: 20:00:00 BST url: https://lrug.org/meetings/2025/october - name: Orange County Ruby - Ruby Science October 2025 location: Dana Point, CA date: 2025-10-13 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/311182127 service: meetup - name: Polish Ruby User Group - PLRUG Warsaw Meetup @ Behind The Code – October Edition location: Warsaw, Poland date: 2025-10-13 start_time: 18:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/polishrubyusergroup/events/311286454 service: meetup - name: Austin.rb - Hack Night! location: Austin, TX date: 2025-10-14 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960594 service: meetup - name: Boston Ruby Group - October 2025 meeting location: Boston, MA date: 2025-10-14 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://luma.com/finds4mu service: luma - name: Philly.rb - Pubnite October 2025 location: Online date: 2025-10-14 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/310854028 service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - October 2025 EDITION location: Sydney, Australia date: 2025-10-14 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310829109 service: meetup - name: RubyJax - Open Hax October 2025 location: Jacksonville, FL date: 2025-10-14 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/311211657 service: meetup - name: VanRuby - AI for Ruby Pull Request Review location: North Vancouver, Canada date: 2025-10-14 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/vancouver-ruby/events/311370524 service: meetup - name: 'Geneva.rb - Introducing ReActionView: A new ActionView-Compatible ERB Engine' location: Geneva, Switzerland date: 2025-10-15 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/geneva-rb/events/311083533 service: meetup - name: Montreal.rb - Temporal Tables in ActiveRecord by Martin Giannakopoulos location: Montréal, Canada date: 2025-10-15 start_time: 18:30:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/montrealrb/events/310599891 service: meetup - name: Portland Ruby Brigade - Cocktails + Code October 2025 location: Portland, OR date: 2025-10-15 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/311125205 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2025 location: Kaohsiung, Taiwan date: 2025-10-15 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/311218617 service: meetup - name: Ruby Montevideo - Meetup - Octubre 2025 location: Montevideo, Uruguay date: 2025-10-15 start_time: 19:00:00 -03 end_time: 22:00:00 -03 url: https://www.meetup.com/ruby-montevideo/events/311344494 service: meetup - name: Ruby Wellington - October location: Wellington, New Zealand date: 2025-10-15 start_time: 17:00:00 NZDT end_time: 19:00:00 NZDT url: https://www.meetup.com/rubywellington/events/306413783 service: meetup - name: West Midlands Ruby User Group - Monthly Meetup October 2025 location: Online date: 2025-10-15 start_time: 19:00:00 BST end_time: 21:00:00 BST url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/310532085 service: meetup - name: Munich Ruby User Group - Ruby Meetup October 2025 location: München, Germany date: 2025-10-16 start_time: 19:00:00 CEST end_time: 22:00:00 CEST url: https://www.meetup.com/munich-rubyshift-ruby-user-group/events/310392682 service: meetup - name: 'North West Ruby User Group - Millions on Rails: A Two-Decade Retrospective on Scaling With Rails' location: Manchester, UK date: 2025-10-16 start_time: 18:30:00 BST end_time: 20:30:00 BST url: https://nwrug.org/events/millions-on-rails - name: Ruby Malaysia - October 2025 location: Online date: 2025-10-16 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/311237245 service: meetup - name: Stockholm Ruby - Ruby Meetup at Qasa location: 118 26 Stockholm, Sweden date: 2025-10-16 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/z5j80vna service: luma - name: Ruby DF - 9ª Edição location: Brasilia, Brazil date: 2025-10-18 start_time: '09:30:00 -03' end_time: 11:30:00 -03 url: https://rubydf.com/events/nona-edicao - name: 'Auckland Ruby - Ruby Nights October: CSSBattle ⚔️' location: Auckland, New Zealand date: 2025-10-20 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/305875968 service: meetup - name: Columbus Ruby Brigade - Monthly Meetup location: Columbus, OH date: 2025-10-20 start_time: 18:00:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/columbusrb/events/310569327 service: meetup - name: 'Dolnośląska Grupa Użytkowników Ruby - DRUG #143 Październik 2025' location: Wrocław, Poland date: 2025-10-20 start_time: 19:00:00 CEST end_time: 21:00:00 CEST url: https://www.meetup.com/drugpl/events/311419749 service: meetup - name: Miami Ruby Brigade - October 2025 location: Coral Gables, FL date: 2025-10-20 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/311314253 service: meetup - name: Ruby Belgium - Meetup Autumn 2025 location: 1160 Auderghem, Belgium date: 2025-10-20 start_time: 18:00:00 CEST end_time: 22:00:00 CEST url: https://luma.com/egkjexj2 service: luma - name: Latvian Ruby Community - Ruby community meetup - October 2025 location: LV-1039, Latvia date: 2025-10-21 start_time: 18:00:00 EEST end_time: 20:30:00 EEST url: https://luma.com/72pph1ea service: luma - name: Nantes.rb - Ruby Talk! location: Nantes, France date: 2025-10-21 start_time: 18:30:00 CEST end_time: 20:30:00 CEST url: https://www.meetup.com/nantes-rb/events/311363649 service: meetup - name: RubyJax - Open Hax October 2025 location: Jacksonville, FL date: 2025-10-21 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/311333689 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2025 location: Kaohsiung, Taiwan date: 2025-10-22 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/311339624 service: meetup - name: Helsinki Ruby Brigade - October meet-up at Punavuoren Ahven location: Helsinki, Finland date: 2025-10-23 start_time: 18:00:00 EEST end_time: 21:00:00 EEST url: https://www.meetup.com/rubybrigade/events/311165822 service: meetup - name: Poznań Ruby User Group - October 2025 location: 60-995 Poznań, Poland date: 2025-10-23 start_time: 18:00:00 CEST end_time: 20:00:00 CEST url: https://luma.com/cohylg77 service: luma - name: Ruby Malaysia - October 2025 location: Online date: 2025-10-23 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcnbfc service: meetup - name: 'Sardines.rb: Lisbon Ruby Meetup - Sardines #15 - In-Person Edition' location: Lisbon, Portugal date: 2025-10-23 start_time: 18:00:00 WEST end_time: 20:00:00 WEST url: https://www.meetup.com/sardinesrb/events/311340390 service: meetup - name: Bengaluru Ruby Users Group - Bengaluru Ruby Users Meetup in October location: Online date: 2025-10-25 start_time: 11:00:00 IST end_time: 14:00:00 IST url: https://luma.com/yy65d157 service: luma - name: Orange County Ruby - Ruby Science October 2025 location: Online date: 2025-10-27 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/311182135 service: meetup - name: Austin.rb - Social @ Hi Sign Brewing location: Austin, TX date: 2025-10-28 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/305497352 service: meetup - name: 'Bangkok.rb - Ruby Tuesday #68' location: เขตวัฒนา, Thailand date: 2025-10-28 start_time: 19:00:00 +07 end_time: 21:00:00 +07 url: https://www.meetup.com/bangkok-rb/events/311318924 service: meetup - name: Kansas City Ruby - KC Ruby October Hack Night location: Shawnee, KS date: 2025-10-28 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/dzt05jeh service: luma - name: 'Krakow Ruby Users Group (KRUG) - KRUG #4 2025' location: 30-302 Kraków, Poland date: 2025-10-28 start_time: 18:00:00 CET end_time: 22:00:00 CET url: https://luma.com/se3qppbl service: luma - name: Philly.rb - How FastRuby.io Built an Automated, AI-Enhanced Roadmap for Rails Upgrades location: Chester, PA date: 2025-10-28 start_time: 17:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/phillyrb/events/311362494 service: meetup - name: Ruby Meetup Oslo - with Ali Krynitsky and Sergy Sergyenko location: Oslo, Norway date: 2025-10-28 start_time: 18:00:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/ruby-meetup-oslo/events/311358096 service: meetup - name: RubyJax - Open Hax October 2025 location: Jacksonville, FL date: 2025-10-28 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/311449394 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup October 2025 location: Kaohsiung, Taiwan date: 2025-10-29 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/311455589 service: meetup - name: Toronto Ruby - October 2025 Edition location: Toronto, Canada date: 2025-10-29 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://luma.com/pyqeo3h5 service: luma - name: Winnipeg Ruby User Group - From Alert Fatigue to Intelligent Investigation location: Winnipeg, Canada date: 2025-10-29 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://www.meetup.com/winnipegrb/events/311418908 service: meetup - name: 'Madrid.rb - Octubre 2025: Building a ruby gem for OpenFGA' location: Madrid, Spain date: 2025-10-30 start_time: 18:30:00 UTC end_time: 20:30:00 UTC url: https://www.madridrb.com/events/octubre-2025-building-a-ruby-gem-for-openfga-2069 - name: Melbourne Ruby - Ruby Melbourne Meetup October 2025 location: Melbourne, Australia date: 2025-10-30 start_time: 17:30:00 AEDT end_time: 20:30:00 AEDT url: https://www.meetup.com/ruby-melbourne/events/305601923 service: meetup - name: Orange County Ruby - Meetup October 2025 location: Dana Point, CA date: 2025-10-30 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/311485308 service: meetup - name: Philippine Ruby Users Group - PhRUG - Open Source Chismis Edition & Halloween Party location: Multi-location hydrid (Makati & Batangas City, Philippines) date: 2025-10-30 start_time: 18:30:00 PST end_time: 20:30:00 PST url: https://www.meetup.com/ruby-phil/events/311559509 service: meetup - name: Ruby Malaysia - October 2025 location: Online date: 2025-10-30 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/311472579 service: meetup - name: SF Bay Area Ruby - SF Ruby Meetup, October @ AngelList location: San Francisco, CA date: 2025-10-30 start_time: 17:00:00 PDT end_time: 21:00:00 PDT url: https://luma.com/xh2h2jd3 service: luma - name: 'Bluegrass Ruby - User Group November 2025: Polished Ruby Programming, Ch. 3' location: Lexington, KY date: 2025-11-04 start_time: 18:00:00 EDT end_time: 19:30:00 EDT url: https://www.meetup.com/the-bluegrass-developers-guild/events/311583147 service: meetup - name: Charlotte Ruby - Ruby Hack Night November 2025 location: Online date: 2025-11-04 start_time: 19:00:00 EDT end_time: 21:30:00 EDT url: https://www.meetup.com/charlotte-rb/events/311429769 service: meetup - name: Paris.rb - Meetup November 2025 location: Paris, France date: 2025-11-04 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris_rb/events/311420187 service: meetup - name: RubyJax - Open Hax November 2025 location: Jacksonville, FL date: 2025-11-04 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/311559110 service: meetup - name: Seattle.rb - November 2025 location: Seattle, WA date: 2025-11-04 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://seattlerb.org/?event_id=36 - name: Belfast Ruby - Petr Hlavicka & Rob Graham at Stora location: Belfast BT2 8BG, UK date: 2025-11-05 start_time: 18:00:00 GMT end_time: 21:00:00 GMT url: https://luma.com/r42ger8m service: luma - name: ChicagoRuby - @ Cisco Systems location: Chicago, IL date: 2025-11-05 start_time: 18:00:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/chicagoruby/events/311241901 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby November 2025 location: Prague, Czechia date: 2025-11-05 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/311569792 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2025 location: Kaohsiung, Taiwan date: 2025-11-05 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcpbhb service: meetup - name: Cologne.rb - November 2025 Meetup location: Köln, Germany date: 2025-11-06 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/cologne-rb/events/310886630 service: meetup - name: Dresden.rb - meetup November 2025 location: Dresden, Germany date: 2025-11-06 start_time: 18:00:00 UTC end_time: 20:00:00 UTC url: https://dresdenrb.onruby.de/events/dresden-rb-meetup-november-2025-1970 - name: Ruby Malaysia - November 2025 location: Online date: 2025-11-06 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcpbjb service: meetup - name: London Ruby User Group - November 2025 Meeting location: London, UK date: 2025-11-10 start_time: 18:00:00 GMT end_time: 20:00:00 GMT url: https://lrug.org/meetings/2025/november - name: Orange County Ruby - Ruby Science November 2025 location: Online date: 2025-11-10 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/311182138 service: meetup - name: Austin.rb - Placeholder (Tech Talk) location: Austin, TX date: 2025-11-11 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960597 service: meetup - name: Philly.rb - Pubnite November 2025 location: Online date: 2025-11-11 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/nnlgbtyhcpbpb service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - November 2025 EDITION location: Sydney, Australia date: 2025-11-11 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310950736 service: meetup - name: RubyJax - Open Hax November 2025 location: Jacksonville, FL date: 2025-11-11 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/311668972 service: meetup - name: Atlanta Ruby - Monthly Meetup November 2025 location: Online date: 2025-11-12 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/tczcxryhcpbqb service: meetup - name: Boulder Ruby - November 2025 Presentation Night location: Boulder, CO date: 2025-11-12 start_time: 18:00:00 MDT end_time: 20:30:00 MDT url: https://luma.com/08y9l6f4 service: luma - name: Indianapolis Ruby Brigade - Monthly Meetup November 2025 location: Indianapolis, IN date: 2025-11-12 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/indyrb/events/bprjttyhcpbqb service: meetup - name: NYC.rb - Event November 2025 location: Online date: 2025-11-12 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308866990 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2025 location: Kaohsiung, Taiwan date: 2025-11-12 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/311672692 service: meetup - name: Ruby on Rails Switzerland - Railhöck at Swisscom location: Zurich, Switzerland date: 2025-11-12 start_time: 18:30:00 CET end_time: 20:30:00 CET url: https://www.meetup.com/rubyonrails-ch/events/307805999 service: meetup - name: STLRuby - Is it snowing? Is that thunder? Thundersnow! ❄️⚡️ location: University City, MO date: 2025-11-12 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/stlruby/events/310893869 service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined November 2025' location: Online date: 2025-11-13 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/310656914 service: meetup - name: B'more on Rails - Monthly Meetup | November 2025 location: Baltimore, MD date: 2025-11-13 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/311190310 service: meetup - name: Ruby Malaysia - November 2025 location: Online date: 2025-11-13 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcpbrb service: meetup - name: 'Auckland Ruby - Ruby Nights November: TBC' location: Auckland, New Zealand date: 2025-11-17 start_time: 18:30:00 NZDT end_time: 21:30:00 NZDT url: https://www.meetup.com/aucklandruby/events/305875977 service: meetup - name: Miami Ruby Brigade - November 2025 location: Coral Gables, FL date: 2025-11-17 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/pdvctsyhcpbwb service: meetup - name: RubyJax - Open Hax November 2025 location: Jacksonville, FL date: 2025-11-18 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcpbxb service: meetup - name: Geneva.rb - Rage Against the Malicious location: Geneva, Switzerland date: 2025-11-19 start_time: 19:00:00 CET end_time: 21:00:00 CET url: https://www.meetup.com/geneva-rb/events/311658218 service: meetup - name: Montreal.rb - ** Talk Topic To Be Decided*** November 2025 location: Montréal, Canada date: 2025-11-19 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/311445998 service: meetup - name: Portland Ruby Brigade - Cocktails + Code November 2025 location: Portland, OR date: 2025-11-19 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/311508190 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2025 location: Kaohsiung, Taiwan date: 2025-11-19 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcpbzb service: meetup - name: West Midlands Ruby User Group - Monthly Meetup November 2025 location: Online date: 2025-11-19 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/310532129 service: meetup - name: Ruby Malaysia - November 2025 location: Online date: 2025-11-20 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcpbbc service: meetup - name: Philippine Ruby Users Group - PhRUG - Graduation Farewell Party location: Taguig, Philippines date: 2025-11-20 start_time: 18:00:00 PST end_time: 21:00:00 PST url: https://www.meetup.com/ruby-phil/events/311866172/ service: meetup - name: Orange County Ruby - Ruby Science November 2025 location: Online date: 2025-11-24 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/311182140 service: meetup - name: Kansas City Ruby - KC Ruby November Hack Night location: Shawnee, KS date: 2025-11-25 start_time: 18:00:00 CDT end_time: 20:00:00 CDT url: https://luma.com/d147kxaq service: luma - name: RubyJax - Open Hax November 2025 location: Jacksonville, FL date: 2025-11-25 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcpbhc service: meetup - name: Rails Taiwan - 高雄 Rails Meetup November 2025 location: Kaohsiung, Taiwan date: 2025-11-26 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcpbjc service: meetup - name: Melbourne Ruby - Ruby Melbourne Meetup November 2025 location: Southbank, Australia date: 2025-11-27 start_time: 17:30:00 AEDT end_time: 20:30:00 AEDT url: https://www.meetup.com/ruby-melbourne/events/305601924 service: meetup - name: Orange County Ruby - Meetup November 2025 location: Dana Point, CA date: 2025-11-27 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/pbgwwqyhcpbkc service: meetup - name: Ruby Malaysia - November 2025 location: Online date: 2025-11-27 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcpbkc service: meetup - name: Paris.rb - December 2025 location: Paris, France date: 2025-12-02 start_time: 19:15:00 CET end_time: 21:15:00 CET url: https://www.meetup.com/paris_rb/events/311695059 service: meetup - name: RubyJax - Open Hax December 2025 location: Jacksonville, FL date: 2025-12-02 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcqbdb service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby December 2025 location: Prague, Czechia date: 2025-12-03 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/dkmktfyhcqbfb service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2025 location: Kaohsiung, Taiwan date: 2025-12-03 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcqbfb service: meetup - name: Ruby Wellington - December location: Wellington, New Zealand date: 2025-12-03 start_time: 17:00:00 NZDT end_time: 19:00:00 NZDT url: https://www.meetup.com/rubywellington/events/306413799 service: meetup - name: Ruby Malaysia - December 2025 location: Online date: 2025-12-04 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcqbgb service: meetup - name: Orange County Ruby - Ruby Science December 2025 location: Online date: 2025-12-08 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyhcqblb service: meetup - name: Austin.rb - Social @ Pinthouse Pizza location: Austin , TX date: 2025-12-09 start_time: 18:30:00 CDT end_time: 20:30:00 CDT url: https://www.meetup.com/austinrb/events/304960599 service: meetup - name: Philly.rb - Pubnite December 2025 location: Online date: 2025-12-09 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/nnlgbtyhcqbmb service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - December 2025 EDITION location: Sydney, Australia date: 2025-12-09 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310950733 service: meetup - name: RubyJax - Open Hax December 2025 location: Jacksonville, FL date: 2025-12-09 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcqbmb service: meetup - name: Atlanta Ruby - Monthly Meetup December 2025 location: Online date: 2025-12-10 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/tczcxryhcqbnb service: meetup - name: Austin.rb - Social @ Pinthouse Pizza location: Austin, TX date: 2025-12-10 start_time: 00:30:00 UTC end_time: 02:30:00 UTC url: https://www.meetup.com/austinrb/events/304960599 service: meetup - name: NYC.rb - Event December 2025 location: Online date: 2025-12-10 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/308866992 service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2025 location: Kaohsiung, Taiwan date: 2025-12-10 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcqbnb service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined December 2025' location: Online date: 2025-12-11 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/310656917 service: meetup - name: B'more on Rails - Monthly Meetup | December 2025 location: Baltimore, MD date: 2025-12-11 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/cqndttyhcqbpb service: meetup - name: Ruby Malaysia - December 2025 location: Online date: 2025-12-11 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcqbpb service: meetup - name: Miami Ruby Brigade - December 2025 location: Coral Gables, FL date: 2025-12-15 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/pdvctsyhcqbtb service: meetup - name: RubyJax - Open Hax December 2025 location: Jacksonville, FL date: 2025-12-16 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcqbvb service: meetup - name: Montreal.rb - ** Talk Topic To Be Decided*** December 2025 location: Montréal, Canada date: 2025-12-17 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/311584061 service: meetup - name: Portland Ruby Brigade - Cocktails + Code December 2025 location: Portland, OR date: 2025-12-17 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/nzpdntyhcqbwb service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2025 location: Kaohsiung, Taiwan date: 2025-12-17 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcqbwb service: meetup - name: West Midlands Ruby User Group - Monthly Meetup December 2025 location: Online date: 2025-12-17 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/310532132 service: meetup - name: Ruby Malaysia - December 2025 location: Online date: 2025-12-18 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcqbxb service: meetup - name: Orange County Ruby - Ruby Science December 2025 location: Online date: 2025-12-22 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyhcqbdc service: meetup - name: RubyJax - Open Hax December 2025 location: Jacksonville, FL date: 2025-12-23 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcqbfc service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2025 location: Kaohsiung, Taiwan date: 2025-12-24 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcqbgc service: meetup - name: Orange County Ruby - Meetup December 2025 location: Dana Point, CA date: 2025-12-25 start_time: 19:00:00 PDT end_time: 21:00:00 PDT url: https://www.meetup.com/ocruby/events/pbgwwqyhcqbhc service: meetup - name: Ruby Malaysia - December 2025 location: Online date: 2025-12-25 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyhcqbhc service: meetup - name: RubyJax - Open Hax December 2025 location: Jacksonville, FL date: 2025-12-30 start_time: 18:30:00 EDT end_time: 20:00:00 EDT url: https://www.meetup.com/rubyjax/events/llklbtyhcqbnc service: meetup - name: Rails Taiwan - 高雄 Rails Meetup December 2025 location: Kaohsiung, Taiwan date: 2025-12-31 start_time: 19:00:00 CST end_time: 22:00:00 CST url: https://www.meetup.com/rails-taiwan/events/qxfvjkyhcqbpc service: meetup - name: Ruby Malaysia - January 2026 location: Online date: 2026-01-01 start_time: 19:00:00 +08 end_time: 20:00:00 +08 url: https://www.meetup.com/ruby-malaysia/events/fnnnstyjccbcb service: meetup - name: Orange County Ruby - Ruby Science January 2026 location: Online date: 2026-01-05 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyjccbhb service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby January 2026 location: Prague, Czechia date: 2026-01-07 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/dkmktfyjccbkb service: meetup - name: 'African Ruby Community - Ruby Thursdays: To be determined January 2026' location: Online date: 2026-01-08 start_time: 18:00:00 EAT end_time: 20:00:00 EAT url: https://www.meetup.com/african_ruby_community/events/310656918 service: meetup - name: B'more on Rails - Monthly Meetup | January 2026 location: Baltimore, MD date: 2026-01-08 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/bmore-on-rails/events/cqndttyjccblb service: meetup - name: Philly.rb - Pubnite January 2026 location: Online date: 2026-01-13 start_time: 20:30:00 EDT end_time: 22:00:00 EDT url: https://www.meetup.com/phillyrb/events/nnlgbtyjccbrb service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - January 2026 EDITION location: Sydney, Australia date: 2026-01-13 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310950737 service: meetup - name: Atlanta Ruby - Monthly Meetup January 2026 location: Online date: 2026-01-14 start_time: 18:30:00 EDT end_time: 20:30:00 EDT url: https://www.meetup.com/atlantaruby/events/tczcxryjccbsb service: meetup - name: NYC.rb - Event January 2026 location: Online date: 2026-01-14 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/hkbsltyjccbsb service: meetup - name: Miami Ruby Brigade - January 2026 location: Coral Gables, FL date: 2026-01-19 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/pdvctsyjccbzb service: meetup - name: Orange County Ruby - Ruby Science January 2026 location: Online date: 2026-01-19 start_time: 10:00:00 PDT end_time: 11:00:00 PDT url: https://www.meetup.com/ocruby/events/sdczltyjccbzb service: meetup - name: Montreal.rb - ** Talk Topic To Be Decided*** January 2026 location: Montréal, Canada date: 2026-01-21 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/hrtnptyjccbcc service: meetup - name: Portland Ruby Brigade - Cocktails + Code January 2026 location: Portland, OR date: 2026-01-21 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/nzpdntyjccbcc service: meetup - name: West Midlands Ruby User Group - Monthly Meetup January 2026 location: Online date: 2026-01-21 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/rvvzzryjccbcc service: meetup - name: Philippine Ruby Users Group - Takin care of Business location: Quezon City, Philippines date: 2026-01-29 start_time: 17:00:00 PST end_time: 20:00:00 PST url: https://www.meetup.com/ruby-phil/events/313004915 service: meetup - name: Prague.rb - First Wednesday Of The Month - Ruby February 2026 location: Prague, Czechia date: 2026-02-04 start_time: 19:00:00 CET end_time: 22:00:00 CET url: https://www.meetup.com/praguerb/events/dkmktfyjcdbgb service: meetup - name: Ruby on Rails Oceania Sydney - Ruby Sydney - <%= Time.now.strftime('%B %Y') %> EDITION location: Sydney, Australia date: 2026-02-10 start_time: 18:00:00 AEDT end_time: 20:00:00 AEDT url: https://www.meetup.com/ruby-on-rails-oceania-sydney/events/310950739 service: meetup - name: NYC.rb - Event February 2026 location: Online date: 2026-02-11 start_time: 17:30:00 EDT end_time: 19:00:00 EDT url: https://www.meetup.com/nyc-rb/events/hkbsltyjcdbpb service: meetup - name: Miami Ruby Brigade - February 2026 location: Coral Gables, FL date: 2026-02-16 start_time: 19:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/miamirb/events/pdvctsyjcdbvb service: meetup - name: Montreal.rb - ** Talk Topic To Be Decided*** February 2026 location: Montréal, Canada date: 2026-02-18 start_time: 18:00:00 EDT end_time: 21:00:00 EDT url: https://www.meetup.com/montrealrb/events/hrtnptyjcdbxb service: meetup - name: Portland Ruby Brigade - Cocktails + Code February 2026 location: Portland, OR date: 2026-02-18 start_time: 18:00:00 PDT end_time: 20:00:00 PDT url: https://www.meetup.com/portland-ruby-brigade/events/nzpdntyjcdbxb service: meetup - name: West Midlands Ruby User Group - Monthly Meetup February 2026 location: Online date: 2026-02-18 start_time: 19:00:00 GMT end_time: 21:00:00 GMT url: https://www.meetup.com/west-midlands-ruby-user-group-wmrug/events/rvvzzryjcdbxb service: meetup ================================================ FILE: _includes/event.html ================================================
{% if event.url %} {{ event.name }} {% else %} {{ event.name }} {% endif %} {% if event.status %}
{% endif %} {% if event.reg_phrase %}
{% endif %} {% assign cfp_open_timestamp = event.cfp_open_date | date: '%s' | plus: 0 %} {% assign cfp_close_timestamp = event.cfp_close_date | date: '%s' | plus: 0 %} {% assign cfp_open_date = event.cfp_open_date | date: '%Y-%m-%d' %} {% assign cfp_close_date = event.cfp_close_date | date: '%Y-%m-%d' %} {% if event.cfp_open_date and (cfp_open_timestamp >= now or cfp_open_date == today) %} {% if event.cfp_link %} {% else %}
{% endif %} {% elsif event.cfp_close_date %} {% if event.cfp_link %} {% else %}
{% endif %} {% endif %}
  • {% assign start_month = event.start_date | date: '%m' %} {% assign end_month = event.end_date | date: '%m' %} {% assign start_year = event.start_date | date: '%Y' %} {% assign end_year = event.end_date | date: '%Y' %} {% if event.date_precision == 'month' %} {{ event.start_date | date: '%B %Y' }} {% elsif event.date_precision == 'year' %} {{ event.start_date | date: '%Y' }} {% elsif event.start_date == event.end_date %} {{ event.start_date | date: '%B %-d, %Y' }} {% elsif start_month == end_month %} {{ event.start_date | date: '%B %-d' }}–{{ event.end_date | date: '%-d, %Y' }} {% elsif start_year == end_year %} {{ event.start_date | date: '%B %-d' }}–{{ event.end_date | date: '%B %-d, %Y' }} {% else %} {% comment %} This should only trigger if some crazy person has a conference over the New Year {% endcomment %} {{ event.start_date | date: '%B %-d, %Y' }}–{{ event.end_date | date: '%B %-d, %Y' }} {% endif %}
  • {{ event.location }}
  • {% if event.twitter %}
  • @{{ event.twitter }}
  • {% endif %} {% if event.mastodon %}
  • Mastodon
  • {% endif %} {% if event.video_link %}
  • Event Videos
  • {% endif %}
================================================ FILE: _includes/filters.html ================================================
{% if meetups %}
{% assign unique_months = "" | split: "" %} {% assign now = "now" | date: "%Y-%m-%d 00:00:00" | date: "%s" | plus: 0 %} {% for meetup in meetups %} {% assign date = meetup.date | date: "%s" | plus: 0 %} {% if date >= now %} {% assign formatted_month = meetup.date | date: "%Y%m" %} {% unless unique_months contains formatted_month %}
{{ meetup.date | date: "%B %Y" }}
{% assign unique_months = unique_months | push: formatted_month %} {% endunless %} {% endif %} {% endfor %}
{% endif %}
Africa
Asia
Australia & Oceania
Europe
North America
South America
Online
================================================ FILE: _includes/meetup.html ================================================ {% comment %} Handle both single meetup and grouped meetups {% endcomment %} {% if meetup_group %} {% assign meetups_to_display = meetup_group %} {% else %} {% assign meetups_to_display = meetup | split: "" | push: meetup %} {% endif %} {% assign first_meetup = meetups_to_display | first %}
{% if first_meetup.url %} {{ first_meetup.name }} {% else %} {{ first_meetup.name }} {% endif %} {% if first_meetup.status %}
{% endif %}
  • {{ first_meetup.date | date: "%B %-d, %Y" }}
  • {{ first_meetup.location }}
  • {% if meetups_to_display.size > 1 %}
  • {% for m in meetups_to_display %} {% assign detected_service = m.service %} {% unless detected_service %} {% if m.url contains "meetup.com" %} {% assign detected_service = "meetup" %} {% elsif m.url contains "lu.ma" or m.url contains "luma.com" %} {% assign detected_service = "luma" %} {% endif %} {% endunless %} {% if detected_service == "meetup" %} Meetup.com {% elsif detected_service == "luma" %} Luma.com {% else %} Link {% endif %} {% unless forloop.last %} • {% endunless %} {% endfor %}
  • {% endif %}
================================================ FILE: _layouts/default.html ================================================ Ruby Conferences {% feed_meta %}
RubyConferences becomes RubyEvents! Learn more about it here.

Ruby  {% if page.url == "/meetups/" %} Meetups {% elsif page.url == "/cfp/" %} Call For Papers {% else %} Conferences {% endif %}

{{ content }}
================================================ FILE: _layouts/page.html ================================================ --- layout: default ---

{{ page.title }}

{{ content }}
================================================ FILE: _layouts/post.html ================================================ --- layout: default ---

{{ page.title }}

{{ content }}
================================================ FILE: _plugins/continent_tag.rb ================================================ require "countries" module Jekyll class ContinentTag < Liquid::Block def render(context) country_code = super country = nil return "online" if country_code == "Online" country = ISO3166::Country.new("US") if ISO3166::Country.new("US").subdivisions.keys.include?(country_code) country = ISO3166::Country.new("GB") if country_code == "UK" country = ISO3166::Country.new("GB") if country_code == "Scotland" country = ISO3166::Country.find_country_by_iso_short_name(country_code) if country.nil? country = ISO3166::Country.find_country_by_unofficial_names(country_code) if country.nil? if country.nil? raise "Country not found: #{country_code}" end country.continent.gsub(/\s+/, "-").downcase end end end Liquid::Template.register_tag("continent", Jekyll::ContinentTag) ================================================ FILE: calendar.ics ================================================ --- layout: null --- BEGIN:VCALENDAR VERSION:2.0 PRODID:https://rubyconferences.org/ METHOD:PUBLISH {% for event in site.data.conferences %} BEGIN:VEVENT UID:{{ event.start_date | date: "%Y%m%d" | append: event.name }}@rubyconferences.org SUMMARY:{{ event.name }} LOCATION:{{ event.location | replace: ",", "\\," }} DESCRIPTION:{% if event.twitter %}Twitter:\nhttps://twitter.com/{{ event.twitter }}\n{% endif %}{% if event.mastodon %}\nMastodon:\n{{ event.mastodon }}{% endif %}{% if event.video_link %}\nVideo Link:\n{{ event.video_link }}\n{% endif %} CLASS:PUBLIC URL:{{ event.url }} DTSTART;VALUE=DATE:{{ event.start_date | date: "%Y%m%d" }} DTEND;VALUE=DATE:{{ event.end_date | date: "%Y%m%d" | plus: 1 }} END:VEVENT {% endfor %} END:VCALENDAR ================================================ FILE: cfp/index.html ================================================ --- layout: default --- ================================================ FILE: cfp.ics ================================================ --- layout: null --- BEGIN:VCALENDAR VERSION:2.0 PRODID:https://rubyconferences.org/cfp METHOD:PUBLISH {% for event in site.data.conferences %} {% if event.cfp_open_date %} BEGIN:VEVENT UID:{{ event.cfp_open_date | date: "%Y%m%d" | append: event.name }}-cfp-open@rubyconferences.org SUMMARY:{{ event.name }} CFP opens LOCATION:{{ event.location | replace: ",", "\\," }} CLASS:PUBLIC URL:{% if event.cfp_link %}{{ event.cfp_link }}{% else %}{{ event.url }}{% endif %} DTSTART;VALUE=DATE:{{ event.cfp_open_date | date: "%Y%m%d" }} DTEND;VALUE=DATE:{{ event.cfp_open_date | date: "%Y%m%d" | plus: 1 }} END:VEVENT {% endif %} {% if event.cfp_close_date %} BEGIN:VEVENT UID:{{ event.cfp_close_date | date: "%Y%m%d" | append: event.name }}-cfp-close@rubyconferences.org SUMMARY:{{ event.name }} CFP closes LOCATION:{{ event.location | replace: ",", "\\," }} CLASS:PUBLIC URL:{% if event.cfp_link %}{{ event.cfp_link }}{% else %}{{ event.url }}{% endif %} DTSTART;VALUE=DATE:{{ event.cfp_close_date | date: "%Y%m%d" }} DTEND;VALUE=DATE:{{ event.cfp_close_date | date: "%Y%m%d" | plus: 1 }} END:VEVENT {% endif %} {% endfor %} END:VCALENDAR ================================================ FILE: css/style.css ================================================ @charset "UTF-8"; ul, ol { list-style: none; } h1, h2, h3, h4, h5, h6, pre, code { font-size: 1em; } ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, dl, dt, dd, figure, figcaption { margin: 0; padding: 0; } a img, :link img, :visited img, fieldset { border: none; } address { font-style: normal; } header, section, article, nav, footer, hgroup, details, summary, figure, main { display: block; } mark { color: inherit; background: transparent; } abbr { border: none; } summary::-webkit-details-marker { display: none; } a { text-decoration: none; color: #444; -webkit-transition: color 0.2s; -moz-transition: color 0.2s; transition: color 0.2s; } a:active, a:hover { color: #ea1010; } body { background: #e5e5e5; font-family: "Exo 2", helvetica, sans-serif; color: #999; text-shadow: 1px 1px rgba(255, 255, 255, 0.5); font-size: 20px; line-height: 160%; font-weight: 300; -webkit-font-smoothing: antialiased; } body .extruded { font-family: "Squada One", helvetica, sans-serif; text-transform: uppercase; font-size: 70px; position: relative; text-shadow: 1px 1px 1px #fff, 0.5px 1px 0px #ddd, 1px 2px 0px #dbdbdb, 1.5px 3px 0px #d9d9d9, 2px 4px 0px #d8d8d8, 2.5px 5px 0px #d6d6d6, 3px 6px 0px #d4d4d4, 3.5px 7px 0px #d2d2d2, 4px 8px 0px #d1d1d1, 4.5px 9px 0px #cfcfcf, 5px 10px 0px #cdcdcd, 5.5px 11px 0px #cbcbcb, 6px 12px 0px #c9c9c9, 6.5px 13px 0px #c8c8c8, 7px 14px 0px #c6c6c6, 7.5px 15px 0px #c4c4c4, 8px 16px 0px #c2c2c2, 8.5px 17px 0px silver, 9px 18px 0px #bfbfbf, 9.5px 19px 0px #bdbdbd, 10px 20px 0px #bbbbbb, 14px 26px 5px #a5a5a5, 11px 21px 1px #c0c0c0, 13px 24px 2px rgba(192, 192, 192, 0.915), 15px 27px 3px rgba(192, 192, 192, 0.83), 17px 30px 4px rgba(192, 192, 192, 0.745), 19px 33px 5px rgba(192, 192, 192, 0.66), 21px 36px 6px rgba(192, 192, 192, 0.575), 23px 39px 7px rgba(192, 192, 192, 0.49), 25px 42px 8px rgba(192, 192, 192, 0.405), 27px 45px 9px rgba(192, 192, 192, 0.32), 29px 48px 10px rgba(192, 192, 192, 0.235), 31px 51px 11px rgba(192, 192, 192, 0.15), 33px 54px 12px rgba(192, 192, 192, 0.065), 35px 57px 13px rgba(192, 192, 192, 0), 37px 60px 14px rgba(192, 192, 192, 0), 39px 63px 15px rgba(192, 192, 192, 0), 41px 66px 16px rgba(192, 192, 192, 0), 43px 69px 17px rgba(192, 192, 192, 0), 45px 72px 18px rgba(192, 192, 192, 0), 47px 75px 19px rgba(192, 192, 192, 0), 49px 78px 20px rgba(192, 192, 192, 0); top: -20px; left: -10px; color: #fff; letter-spacing: -2px; font-weight: normal; } @media screen and (max-width: 480px) { body { font-size: 16px; } } #page { max-width: 800px; margin: 0 auto; padding: 0 60px; } @media screen and (max-width: 768px) { #page { padding: 0 30px; } } @media screen and (max-width: 480px) { #page { padding: 0 15px; } } header { padding: 80px 0 40px 0; } header h1 { margin: 0 0 60px -10px; } header h1 span { position: relative; font-size: 350px; line-height: 69%; letter-spacing: -26px; display: block; -webkit-transition: font-size 0.2s, letter-spacing 0.2s, line-height 0.2s; -moz-transition: font-size 0.2s, letter-spacing 0.2s, line-height 0.2s; transition: font-size 0.2s, letter-spacing 0.2s, line-height 0.2s; } header h1 span + span { font-size: 140px; line-height: 69%; letter-spacing: -8px; margin-left: 10px; } header nav ul { overflow: hidden; } header nav ul li { float: left; font-size: 24px; text-transform: uppercase; letter-spacing: 3px; } header nav ul li a { display: block; color: #999; padding: 5px 40px; border-bottom: 2px solid #ccc; -webkit-transition: color 0.2s, border 0.2s; -moz-transition: color 0.2s, border 0.2s; transition: color 0.2s, border 0.2s; } header nav ul li a:hover { border-color: #ea1010; } header nav ul li.active a { color: #444; border-color: #999; } @media screen and (max-width: 768px) { header { padding: 60px 0 20px; } header h1 { margin: 0 0 30px -5px; } header h1 span { font-size: 250px; letter-spacing: -18px; } header h1 span + span { font-size: 100px; letter-spacing: -5px; margin-left: 7px; } header nav ul li { width: 33.33%; } header nav ul li a { padding: 5px 0; font-size: 20px; text-align: center; } } @media screen and (max-width: 480px) { header { padding-top: 40px; } header h1 { margin: 0 0 20px 0; } header h1 span { font-size: 150px; letter-spacing: -7px; } header h1 span + span { font-size: 60px; letter-spacing: -2px; margin-left: 4px; } header nav ul li a { letter-spacing: 1px; } } #page > footer { padding: 80px 0; font-size: 16px; } #page > footer ul li { display: inline-block; } #page > footer ul li p { display: inline; } #page > footer ul li + li:before { content: "•"; margin: 0 10px; display: inline-block; } @media screen and (max-width: 480px) { #page > footer { padding: 40px 0; font-size: 14px; line-height: 120%; } #page > footer p { margin: 0 0 10px 0; } #page > footer ul li { display: block; margin: 0 0 10px 0; } #page > footer ul li + li:before { display: none; } } #home dl dt > a, #past dl dt > a { font-size: 30px; line-height: 120%; margin-right: 10px; } #home dl dt .reg, #home dl dt .cfp, #home dl dt .status, #past dl dt .reg, #past dl dt .cfp, #past dl dt .status { font-size: 14px; color: #de5a5a; display: inline-block; line-height: 140%; font-weight: 400; } @media screen and (max-width: 480px) { #home dl dt .reg, #home dl dt .cfp, #home dl dt .status, #past dl dt .reg, #past dl dt .cfp, #past dl dt .status { display: block; } } #home dl dt .reg + .cfp + .status:before, #past dl dt .reg + .cfp + .status:before { content: "•"; margin: 0 10px; color: #999; } @media screen and (max-width: 480px) { #home dl dt .reg + .cfp + .status:before, #past dl dt .reg + .cfp + .status:before { display: none; } } #home dl dd, #past dl dd { margin: 0 0 30px 0; } @media screen and (max-width: 480px) { #home dl dd, #past dl dd { margin-bottom: 20px; } } #home dl dd ul li, #past dl dd ul li { display: inline-block; line-height: 140%; } #home dl dd ul li p, #past dl dd ul li p { display: inline; } #home dl dd ul li + li:before, #past dl dd ul li + li:before { content: "•"; margin: 0 10px; display: inline-block; } @media screen and (max-width: 768px) { #home dl dd ul li, #past dl dd ul li { display: block; } #home dl dd ul li + li:before, #past dl dd ul li + li:before { display: none; } } #news dl dt { position: relative; padding-left: 120px; } #news dl dt time { position: absolute; left: 0; top: 0; text-transform: uppercase; font-size: 16px; } #news dl dt a { font-size: 26px; } #news dl dd { padding: 0 0 30px 120px; } @media screen and (max-width: 480px) { #news dl dt { padding: 0 0 5px 0; } #news dl dt time { position: static; left: auto; top: auto; display: block; font-size: 20px; margin: 0 0 5px 0; } #news dl dd { padding-left: 0; } } #news footer .older { float: right; } .cfp-link { text-decoration: underline; } .cfp-link:hover { color: black !important; } ================================================ FILE: feed.xml ================================================ --- --- {{ site.name }} {{ site.time | date_to_xmlschema }} {{ site.url }}/feed.xml {% assign latest_events = site.data.conferences | reverse | slice: 0, 50 %} {% for event in latest_events %} {% if event.announced_on %} {{ event.announced_on | date: "%Y-%m-%dT%H:%M:%S%z" }} {{ event.name }} {{ event.url }} {% endif %} {% endfor %} ================================================ FILE: index.html ================================================ --- layout: default --- ================================================ FILE: js/callout.js ================================================ function getCalloutText(dateString, phrase) { if (!dateString) return phrase const date = new Date(dateString) const now = new Date() const tomorrow = new Date(now) tomorrow.setDate(now.getDate() + 1) if (isSameDay(date, now)) { return `${phrase} today` } if (isSameDay(date, tomorrow)) { return `${phrase} tomorrow` } if (date > now) { return `${phrase} ${getRelativeTimePhrase(date)}` } return phrase } function isSameDay(date1, date2) { return ( date1.getFullYear() === date2.getFullYear() && date1.getMonth() === date2.getMonth() && date1.getDate() === date2.getDate() ) } function getRelativeTimePhrase(date) { const rtf = new Intl.RelativeTimeFormat('en', { numeric: 'auto' }) const diffDays = Math.ceil((date - new Date()) / (1000 * 60 * 60 * 24)) if (Math.abs(diffDays) < 7) { return rtf.format(diffDays, 'day') } if (Math.abs(diffDays) < 30) { return rtf.format(Math.floor(diffDays / 7), 'week') } if (Math.abs(diffDays) < 365) { return rtf.format(Math.floor(diffDays / 30), 'month') } return rtf.format(Math.floor(diffDays / 365), 'year') } function updateCallouts() { document.querySelectorAll('[data-phrase]').forEach(element => { const { date, phrase } = element.dataset if (!date) { element.textContent = phrase return } const calloutText = getCalloutText(date, phrase) if (calloutText !== phrase) { element.textContent = calloutText } else { element.remove() } }) } document.addEventListener('DOMContentLoaded', updateCallouts) ================================================ FILE: meetups/index.html ================================================ --- layout: default ---
{% assign now = "now" | date: "%Y-%m-%d 00:00:00" | date: "%s" | plus: 0 %} {% assign meetups = site.data.meetups | sort: "date" %} {% assign item_name = "meetup" %} {% include filters.html %} {% comment %} Group meetups by group name and date {% endcomment %} {% assign processed = "" | split: "" %} {% for meetup in meetups %} {% assign date = meetup.date | date: "%s" | plus: 0 %} {% if date >= now %} {% assign group_name = meetup.name | split: " - " | first %} {% assign key = group_name | append: "|" | append: meetup.date %} {% unless processed contains key %} {% assign processed = processed | push: key %} {% comment %} Find all meetups for this group and date {% endcomment %} {% assign group_meetups = "" | split: "" %} {% for m in meetups %} {% assign m_date = m.date | date: "%s" | plus: 0 %} {% if m_date >= now %} {% assign m_group = m.name | split: " - " | first %} {% if m_group == group_name and m.date == meetup.date %} {% assign group_meetups = group_meetups | push: m %} {% endif %} {% endif %} {% endfor %} {% assign meetup_group = group_meetups %} {% include meetup.html %} {% endunless %} {% endif %} {% endfor %}
================================================ FILE: past/index.html ================================================ --- layout: default --- ================================================ FILE: src/data_file_validator.rb ================================================ class DataFileValidator attr_accessor :events def self.validate(events, allowed_keys, type = :conference) new(events, allowed_keys, type).tap &:validate end def initialize(events, allowed_keys, type = :conference) @events = events @allowed_keys = allowed_keys @type = type end def validate requires_announced_on_after = Date.parse("2024-08-01") events.each do |event| missing_keys = required_keys - event.keys unless missing_keys.empty? puts "Missing keys: #{missing_keys}" puts event @missing_keys_error = true end bonus_keys = event.keys - @allowed_keys unless bonus_keys.empty? puts "Bonus keys: #{bonus_keys}" puts event @bonus_keys_error = true end if @type == :conference && event["start_date"].after?(requires_announced_on_after) && !event.key?("announced_on") @missing_announced_on_date_error = true puts "Conference '#{event["name"]}' doesn't have an 'announced_on' key." end end if @type == :meetup events_by_group_and_date = events.group_by { |event| [event["name"].split(" - ").first, event["date"]] } events_by_group_and_date.each do |(group, date), group_events| next if group_events.size == 1 services = group_events.map { |event| event["service"] || detect_service_from_url(event["url"]) }.compact if services.uniq.size == services.size next end @duplicate_events_error = true duplicate_services = services.group_by { |s| s }.select { |_, v| v.size > 1 }.keys puts "Meetup Group '#{group}' has multiple events on #{date.iso8601} from the same service(s): #{duplicate_services.join(', ')}" end end end def missing_keys? @missing_keys_error end def bonus_keys? @bonus_keys_error end def duplicate_events? @duplicate_events_error end def missing_announced_on_date? @missing_announced_on_date_error end private def required_keys(type = @type) case type when :conference ["start_date", "end_date", "name", "location"] when :meetup ["date", "start_time", "end_time", "name", "location"] else raise "required_keys: unknown type '#{type}'" end end def detect_service_from_url(url) return nil unless url case url when /meetup\.com/ "meetup" when /lu\.ma/, /luma\.com/ "luma" else nil end end end ================================================ FILE: src/events/abstract_event.rb ================================================ require "forwardable" require "tzinfo" require_relative "../meetups_file_entry" class AbstractEvent extend Forwardable attr_reader :object, :group def_delegators :meetup_file_entry, :name, :location, :date, :start_time, :end_time, :url def self.service_id_for_url(url) return nil if url.nil? return nil if url.blank? if url.start_with?("https://www.meetup.com/") || url.start_with?("https://meetup.com/") return url.split("/").last end if url.start_with?("https://lu.ma/") return url.split("/").last end url end def initialize(object:, group:) @object = object @group = group end def tz group.tz || TZInfo::Timezone.get(object.timezone) end def event_title title = event_name Array(group.remove || "").each do |remove| title = title.gsub(remove, "") end title = title.gsub(group.name, "").squeeze(" ").strip duplicate_names = group.upcoming_events.map { |event| event.event_name }.tally.select { |key, value| value >= 2 } if duplicate_names.any? title += " #{event_start_time.strftime("%B %Y")}" if duplicate_names.keys.include?(event_name) end title = "Meetup #{event_start_time.strftime("%B %Y")}" if title.blank? "#{group.name} - #{title}".gsub(/^-+|-+$/, "").gsub("- -", "-").gsub("- :", "-").squeeze(" ").strip end def meetup_file_entry @meetup_file_entry ||= MeetupsFileEntry.new( name: event_title, location: event_location, date: event_date.iso8601, start_time: [event_start_time.strftime("%H:%M:%S"), tz.now.strftime("%Z")].join(" "), end_time: [event_end_time.strftime("%H:%M:%S"), tz.now.strftime("%Z")].join(" "), url: event_url.gsub(/\/$/, ""), group: group, status: event_status ) end def service_id self.class.service_id_for_url(event_url) end def event_date event_start_time.to_date end def event_status if event_name.downcase.include?("cancelled") || event_name.downcase.include?("canceled") return "cancelled" end if event_name.downcase.include?("postponed") return "postponed" end nil end def event_name raise "Must implement event_name" end def event_start_time raise "Must implement event_start_time" end def event_end_time raise "Must implement event_end_time" end def event_location raise "Must implement event_location" end def event_url raise "Must implement event_url" end end ================================================ FILE: src/events/ical_event.rb ================================================ require_relative "./abstract_event" class IcalEvent < AbstractEvent def event_location location = object.location.to_s return "Online" if location.start_with?("https://") || location == "Online" || location == "Virtual" || event_name.include?("Virtual") || event_name.include?("Zoom") return group.default_location if group.default_location location end def service_id event_url || object.uid end def event_name object.summary.force_encoding("utf-8") end def event_start_time tz.to_local(object.dtstart) end def event_end_time tz.to_local(object.dtend) end def event_url object.url.to_s end end ================================================ FILE: src/events/luma_event.rb ================================================ require_relative "./abstract_event" class LumaEvent < AbstractEvent def event_location location = object.location.to_s if location.start_with?("https://") location = "Online" elsif location.include?("Singapore") location = "Singapore" else location_parts = location.split(",").map(&:strip) location_parts.delete("USA") if (match = location_parts.last.match(/([A-Z]{2}) (\d{4,5})/)) location_parts.delete(location_parts.last) location_parts << match[1] end location = location_parts.last(2).join(", ").strip end location.force_encoding("utf-8") end def event_name object.summary.force_encoding("utf-8") end def event_start_time tz.to_local(object.dtstart) end def event_end_time tz.to_local(object.dtend) end def event_url object.description.scan(/https:\/\/lu.ma\/.+/).first || object.description.scan(/https:\/\/luma\.com\/.+/).first end end ================================================ FILE: src/events/meetup_event.rb ================================================ require "countries" require_relative "./abstract_event" class MeetupEvent < AbstractEvent def event_name object.title end def event_start_time DateTime.parse(object.dateTime) end def event_end_time DateTime.parse(object.endTime) end def event_url object.eventUrl end def event_status return nil if object.status&.downcase == "published" return nil if object.status&.downcase == "past" object.status end def event_location city = object.dig("venue", "city") || object.dig("group", "city") state = object.dig("venue", "state") || object.dig("group", "state") country_raw = object.dig("venue", "country") || object.dig("group", "country") country = ISO3166::Country.new(country_raw) if object.isOnline || event_name.include?("Virtual") || event_name.include?("Zoom") "Online" elsif country.alpha2 == "US" "#{city}, #{state.upcase}" elsif country.alpha2 == "GB" "#{city}, UK" elsif country.alpha2 == "TW" "#{city}, Taiwan" elsif country.alpha2 == "DK" "#{city == "1606" ? "Copenhagen" : city}, #{country&.iso_short_name}" elsif country "#{city}, #{country&.iso_short_name}" elsif city "#{city}, #{state}, #{country_raw.upcase}" else "Unknown" end end end ================================================ FILE: src/meetup_client.rb ================================================ require "pathname" require "graphql/client" require "graphql/client/http" module MeetupClient BASE = "https://api.meetup.com/gql".freeze HTTP = GraphQL::Client::HTTP.new(BASE) do def headers(context) { Authorization: "Bearer #{ENV["MEETUP_API_TOKEN"]}", "Content-Type": "application/json", } end end Schema = GraphQL::Client.load_schema("./src/meetup_graphql_schema.json") Client = GraphQL::Client.new(schema: Schema, execute: HTTP) end ================================================ FILE: src/meetup_graphql_schema.json ================================================ { "data": { "__schema": { "queryType": { "name": "Query" }, "types": [ { "kind": "OBJECT", "name": "Query", "fields": [ { "name": "groupByUrlname", "type": { "kind": "OBJECT", "name": "Group" }, "args": [ { "name": "urlname", "type": { "kind": "NON_NULL", "ofType": { "kind": "SCALAR", "name": "String" } } } ] } ] }, { "kind": "OBJECT", "name": "Group", "fields": [ { "name": "id", "type": { "kind": "SCALAR", "name": "ID" }, "args": [] }, { "name": "logo", "type": { "kind": "OBJECT", "name": "Logo" }, "args": [] }, { "name": "name", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "country", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "state", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "city", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "pastEvents", "type": { "kind": "OBJECT", "name": "PastEventConnection" }, "args": [ { "name": "sortOrder", "type": { "kind": "ENUM", "name": "SortOrder" } }, { "name": "input", "type": { "kind": "INPUT_OBJECT", "name": "ConnectionInput" } }, { "name": "filter", "type": { "kind": "INPUT_OBJECT", "name": "GroupUpcomingEventsFilter" } } ] }, { "name": "upcomingEvents", "type": { "kind": "OBJECT", "name": "EventConnection" }, "args": [ { "name": "sortOrder", "type": { "kind": "ENUM", "name": "SortOrder" } }, { "name": "input", "type": { "kind": "INPUT_OBJECT", "name": "ConnectionInput" } }, { "name": "filter", "type": { "kind": "INPUT_OBJECT", "name": "GroupUpcomingEventsFilter" } } ] } ] }, { "kind": "OBJECT", "name": "Logo", "fields": [ { "name": "id", "type": { "kind": "SCALAR", "name": "ID" }, "args": [] }, { "name": "baseUrl", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "preview", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "source", "type": { "kind": "SCALAR", "name": "String" }, "args": [] } ] }, { "kind": "OBJECT", "name": "PastEventConnection", "fields": [ { "name": "count", "type": { "kind": "SCALAR", "name": "Int" }, "args": [] }, { "name": "edges", "type": { "kind": "LIST", "ofType": { "kind": "OBJECT", "name": "PastEventEdge" } }, "args": [] } ] }, { "kind": "OBJECT", "name": "EventConnection", "fields": [ { "name": "count", "type": { "kind": "SCALAR", "name": "Int" }, "args": [] }, { "name": "edges", "type": { "kind": "LIST", "ofType": { "kind": "OBJECT", "name": "EventEdge" } }, "args": [] } ] }, { "kind": "INPUT_OBJECT", "name": "GroupUpcomingEventsFilter", "inputFields": [ { "name": "includeCancelled", "type": { "kind": "SCALAR", "name": "Boolean" }, "args": [] } ] }, { "kind": "INPUT_OBJECT", "name": "ConnectionInput", "inputFields": [ { "name": "first", "type": { "kind": "SCALAR", "name": "Int" }, "args": [] } ] }, { "kind": "OBJECT", "name": "PastEventEdge", "fields": [ { "name": "cursor", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "node", "type": { "kind": "OBJECT", "name": "Event" }, "args": [] } ] }, { "kind": "OBJECT", "name": "EventEdge", "fields": [ { "name": "cursor", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "node", "type": { "kind": "OBJECT", "name": "Event" }, "args": [] } ] }, { "kind": "OBJECT", "name": "Event", "fields": [ { "name": "id", "type": { "kind": "SCALAR", "name": "ID" }, "args": [] }, { "name": "title", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "eventUrl", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "shortDescription", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "description", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "onlineVenue", "type": { "kind": "OBJECT", "name": "OnlineVenue" }, "args": [] }, { "name": "venue", "type": { "kind": "OBJECT", "name": "Venue" }, "args": [] }, { "name": "host", "type": { "kind": "OBJECT", "name": "Host" }, "args": [] }, { "name": "status", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "dateTime", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "endTime", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "duration", "type": { "kind": "SCALAR", "name": "Int" }, "args": [] }, { "name": "timezone", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "createdAt", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "eventType", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "isOnline", "type": { "kind": "SCALAR", "name": "Boolean" }, "args": [] }, { "name": "group", "type": { "kind": "OBJECT", "name": "Group" }, "args": [] } ] }, { "kind": "OBJECT", "name": "OnlineVenue", "fields": [ { "name": "type", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "url", "type": { "kind": "SCALAR", "name": "String" }, "args": [] } ] }, { "kind": "OBJECT", "name": "Venue", "fields": [ { "name": "address", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "city", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "state", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "country", "type": { "kind": "SCALAR", "name": "String" }, "args": [] } ] }, { "kind": "OBJECT", "name": "Host", "fields": [ { "name": "id", "type": { "kind": "SCALAR", "name": "ID" }, "args": [] }, { "name": "name", "type": { "kind": "SCALAR", "name": "String" }, "args": [] }, { "name": "email", "type": { "kind": "SCALAR", "name": "String" }, "args": [] } ] }, { "kind": "ENUM", "name": "SortOrder", "enumValues": [ { "name": "ASC" }, { "name": "DESC" } ] } ] } } } ================================================ FILE: src/meetups_file.rb ================================================ require "date" require "yaml" require "pathname" require_relative "./meetups_file_entry" require_relative "./static/meetup_group" class MeetupsFile PATH = Pathname.new("./_data/meetups.yml") def self.read new(content: PATH.read) end def initialize(content:) yaml = YAML.load(content, permitted_classes: [Date]) @events = yaml.map { |entry| MeetupsFileEntry.from_yaml_item(entry) } @new_events = [] @updated_events = [] @removed_events = [] @cancelled_events = [] end def find_by(service_id: nil, url: nil) if service_id @events.find { |event| event.service_id == service_id } elsif url @events.find { |event| event.service_id == url.split("/").last } else raise "Please provide a service_id or url" end end def fetch_group!(group, past: false) puts "Fetching #{group.service} Group: #{group.id}" group.new_events.map { |event| event.meetup_file_entry }.each do |event| @new_events << event @events << event puts "New Meetup: #{event.name} - #{event.date}" end if past group.new_past_events.map { |event| event.meetup_file_entry }.each do |event| @new_events << event @events << event puts "New Past Meetup: #{event.name} - #{event.date}" end end group.cancelled_events.map { |event| event.meetup_file_entry }.each do |event| event_entry = find_by(url: event.url) if event_entry && event != event_entry @cancelled_events << event @events[@events.index(event_entry)] = event puts "Cancelled Meetup: #{event.name} - #{event.date}" end end group.upcoming_events.map { |event| event.meetup_file_entry }.each do |event| event_entry = find_by(service_id: event.service_id) if event_entry && event != event_entry @updated_events << event @events[@events.index(event_entry)] = event puts "Changed Meetup: #{event.name} - #{event.date}" end end group.missing_events.map { |event| MeetupsFileEntry.from_yaml_item(event) }.each do |event| @removed_events << event @events.delete(event) puts "Removed Meetup: #{event.name} - #{event.date}" end puts end def fetch!(id = nil, past: false) groups = MeetupGroup.all groups = groups.where(id: id) if id groups.each { |group| fetch_group!(group, past: past) } puts "New Events: #{@new_events.count}" puts "Updated Events: #{@updated_events.count}" write_pull_request_title! write_pull_request_body! end def write_pull_request_title! if (@new_events.one? && @updated_events.none?) || (@new_events.none? && @updated_events.one?) if @new_events.one? event = @new_events.first verb = "Add" else event = @updated_events.first verb = "Update" end pull_request_title = "#{verb} #{event.group.name} #{event.date.strftime("%B %Y")} Meetup" elsif (@new_events.any? && @updated_events.none?) || (@new_events.none? && @updated_events.any?) if @new_events.any? groups = @new_events.map(&:group).map(&:name).uniq.sort verb = "Add" else groups = @updated_events.map(&:group).map(&:name).uniq.sort verb = "Update" end *first, last = groups if first.count > 5 last = "more" first = first.first(5) end pull_request_title = "#{verb} #{first.join(", ")} and #{last} Meetups" elsif @new_events.any? && @updated_events.any? *first, last = groups = (@new_events + @updated_events).map(&:group).map(&:name).uniq.sort if first.count > 5 last = "more" first = first.first(5) end pull_request_title = "Meetup Updates from #{first.join(", ")} and #{last}" else pull_request_title = "Meetup Updates on #{Date.today.strftime("%B %d, %Y")}" end puts "Pull Request Title: #{pull_request_title}" File.write("./pull_request_title.txt", pull_request_title) end def write_pull_request_body! new_meetups = @new_events.any? ? <<~MD : "" #### New Meetups | Title | Date | | ----- | ---- | #{@new_events.sort_by { |event| [event.date, event.name] }.map(&:to_md).join} MD updated_meetups = @updated_events.any? ? <<~MD : "" #### Updated Meetups | Title | Date | | ----- | ---- | #{@updated_events.sort_by { |event| [event.date, event.name] }.map(&:to_md).join} MD removed_meetups = @removed_events.any? ? <<~MD : "" #### Removed Meetups | Title | Date | | ----- | ---- | #{@removed_events.sort_by { |event| [event.date, event.name] }.map(&:to_md).join} MD cancelled_meetups = @cancelled_events.any? ? <<~MD : "" #### Cancelled Meetups | Title | Date | | ----- | ---- | #{@cancelled_events.sort_by { |event| [event.date, event.name] }.map(&:to_md).join} MD File.write("./pull_request_body.md", <<~MD) ### Meetups Update from #{Date.today.strftime("%B %d, %Y")} #{new_meetups} #{updated_meetups} #{removed_meetups} #{cancelled_meetups} MD end def write! PATH.write(@events.uniq.sort_by { |event| [event.date, event.name] }.map(&:to_hash).to_yaml.gsub("- name:", "\n- name:")) end end ================================================ FILE: src/meetups_file_entry.rb ================================================ MeetupsFileEntry = Data.define(:name, :location, :date, :start_time, :end_time, :url, :status, :service) do attr_reader :group def initialize(name:, location:, date:, start_time:, end_time:, url:, status: nil, service: nil, group: nil) date = date.is_a?(Date) ? date : Date.parse(date) @group = group service ||= detect_service(url) super(name:, location:, date:, start_time:, end_time:, url:, status:, service:) end def self.from_yaml_item(hash) new( name: hash["name"], location: hash["location"], date: hash["date"], start_time: hash["start_time"], end_time: hash["end_time"], url: hash["url"], group: hash["group"], status: hash["status"], service: hash["service"] ) end def service_id AbstractEvent.service_id_for_url(url) end def detect_service(url) return nil unless url case url when /meetup\.com/ "meetup" when /lu\.ma/, /luma\.com/ "luma" else nil end end def to_hash hash = { "name" => name, "location" => location, "date" => date, "start_time" => start_time, "end_time" => end_time, "url" => url, } hash["status"] = status if status.present? hash["service"] = service if service.present? hash end def to_md <<~MD | [#{name}](#{url}) | #{date.strftime("%b %d, %Y")} | MD end def to_yaml(options = {}) to_hash.to_yaml(options) end end ================================================ FILE: src/queries/events_query.rb ================================================ require_relative "../meetup_client" eventConnection = <<-GRAPHQL count edges { cursor node { id title eventUrl shortDescription description onlineVenue { type url } venue { address city state country } host { id name email } status dateTime endTime duration timezone createdAt eventType isOnline group { id name country state city } } } GRAPHQL EventsQuery = MeetupClient::Client.parse(<<-GRAPHQL query ($groupId: String!) { groupByUrlname(urlname: $groupId) { id logo { id baseUrl preview source } name country state city upcomingEvents(input: { first: 50 }, filter: { includeCancelled: true }, sortOrder: ASC) { #{eventConnection} } } } GRAPHQL ) PastEventsQuery = MeetupClient::Client.parse(<<-GRAPHQL query ($groupId: String!) { groupByUrlname(urlname: $groupId) { id logo { id baseUrl preview source } name country state city pastEvents(input: { first: 1000 }, sortOrder: ASC){ #{eventConnection} } } } GRAPHQL ) ================================================ FILE: src/static/conference.rb ================================================ require_relative "../static" class Conference < FrozenRecord::Base end ================================================ FILE: src/static/meetup.rb ================================================ require_relative "../static" class Meetup < FrozenRecord::Base def self.for_group(group) if group.meetupdotcom? Meetup.all.select { |meetup| meetup.url.include?(group.id) } elsif group.luma? Meetup.all.select { |meetup| meetup.name.include?(group.name) } elsif group.ical? Meetup.all.select { |meetup| meetup.name.include?(group.name) } else raise "Unsupported service: #{group.service}" end end def service_id AbstractEvent.service_id_for_url(url) end end ================================================ FILE: src/static/meetup_group.rb ================================================ require "ostruct" require "tzinfo" require "icalendar" require_relative "./meetup" require_relative "../static" require_relative "../meetup_client" require_relative "../events/luma_event" require_relative "../events/meetup_event" require_relative "../events/ical_event" require_relative "../queries/events_query" class MeetupGroup < FrozenRecord::Base scope :meetupdotcom, -> { where(service: "meetupdotcom" ) } scope :luma, -> { where(service: "luma" ) } def upcoming_events @upcoming_events ||= fetch_events.tap do |events| events.select! { |event| event.event_date.between?(Date.today - 1, Date.today + 120) } events.select! { |event| event.event_name.include?(filter) } if filter.present? events.reject! { |event| Array(exclude).any? { |e| event.event_name.include?(e) } } if exclude.present? events.sort_by { |event| [event.event_date, event.event_name] } end end def cancelled_events if meetupdotcom? upcoming_events.select { |event| event.object.status == "cancelled" } else [] end end def new_events existing_ids = upcomping_existing_events.map(&:service_id) upcoming_events.select { |event| !existing_ids.include?(event.service_id) } end def new_past_events existing_ids = past_existing_events.map(&:service_id) past_events.select { |event| !existing_ids.include?(event.service_id) } end def past_events @past_events ||= fetch_past_events.tap do |events| events.select! { |event| event.event_name.include?(filter) } if filter.present? events.reject! { |event| Array(exclude).any? { |e| event.event_name.include?(e) } } if exclude.present? events.sort_by { |event| [event.event_date, event.event_name] } end end def missing_events upcoming_ids = upcoming_events.map(&:service_id) upcomping_existing_events.reject { |event| upcoming_ids.include?(event.service_id) } end def upcomping_existing_events existing_events.select { |event| event["date"].between?(Date.today - 1, Date.today + 120) } end def past_existing_events existing_events.select { |event| event["date"] < Date.today } end def existing_events Meetup.for_group(self) end def meetupdotcom? service == "meetupdotcom" end def luma? service == "luma" end def ical? service == "ical" end def tz @tz ||= timezone && TZInfo::Timezone.get(timezone) end private def fetch_past_events case service when "meetupdotcom" fetch_past_meetup_events when "luma" fetch_luma_events.select { |event| event.date < Date.today } when "ical" fetch_ical_events.select { |event| event.date < Date.today } else raise "Unsupported service: #{service}" end end def fetch_events case service when "meetupdotcom" fetch_meetup_events when "luma" fetch_luma_events when "ical" fetch_ical_events else raise "Unsupported service: #{service}" end end def fetch_past_meetup_events result = MeetupClient::Client.query(PastEventsQuery, variables: { groupId: id }) events = Array(result.original_hash.dig("data", "groupByUrlname", "pastEvents", "edges")) events.map { |event| MeetupEvent.new(object: OpenStruct.new(event["node"]), group: self) } end def fetch_meetup_events result = MeetupClient::Client.query(EventsQuery, variables: { groupId: id }) events = Array(result.original_hash.dig("data", "groupByUrlname", "upcomingEvents", "edges")) events.map { |event| MeetupEvent.new(object: OpenStruct.new(event["node"]), group: self) } end def fetch_luma_events ical_content = Net::HTTP.get(URI(ical_url)) calendars = Icalendar::Calendar.parse(ical_content) calendars.first.events.map { |event| LumaEvent.new(object: event, group: self) } end def fetch_ical_events ical_content = Net::HTTP.get(URI(ical_url)) calendars = Icalendar::Calendar.parse(ical_content) calendars.first.events.map { |event| IcalEvent.new(object: event, group: self) } end end ================================================ FILE: src/static.rb ================================================ module Static end require "frozen_record" FrozenRecord::Base.auto_reloading = true FrozenRecord::Base.base_path = "./_data" require_relative "./static/conference" require_relative "./static/meetup" require_relative "./static/meetup_group"