diff --git a/.Rbuildignore b/.Rbuildignore index 8f988bed..0ae8f8cb 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -16,3 +16,4 @@ ^~/\.local/share/meetupr/meetupr-token\.rds$ ^codecov\.yml$ ^LICENSE\.md$ +^~/Library/Application Support/meetupr/meetupr-token\.rds$ diff --git a/.gitignore b/.gitignore index dffd7e3f..4d3b29a4 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ vignettes/*.html docs tests/testthat/.meetup_token.rds ~/.local/share/meetupr/meetupr-token.rds +~/Library/Application Support/meetupr/meetupr-token.rds diff --git a/DESCRIPTION b/DESCRIPTION index 7ca3f6c8..459d96c4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -29,7 +29,6 @@ Imports: purrr, gh, progress, - tibble, rlang, rappdirs, glue, diff --git a/NAMESPACE b/NAMESPACE index 94303b27..8fb95af7 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,12 +1,13 @@ # Generated by roxygen2: do not edit by hand export(find_groups) -export(get_boards) export(get_event_attendees) export(get_event_comments) export(get_event_rsvps) export(get_events) export(get_members) +export(get_pro_events) +export(get_pro_groups) export(meetup_auth) export(meetup_deauth) export(meetup_query) diff --git a/R/find_groups.R b/R/find_groups.R index dd1d6a5d..f5e7a453 100644 --- a/R/find_groups.R +++ b/R/find_groups.R @@ -6,8 +6,9 @@ #' @param lat Latitude. An integer #' @param lon Longitutde. An integer #' @param radius Radius. An integer -#' @param extra_graphql A graphql object. Extra objects to return -#' @param token Meetup token +#' @param ... Should be empty. Used for parameter expansion +#' @template extra_graphql +#' @template token #' @importFrom anytime anytime #' @export find_groups <- function( diff --git a/R/get_boards.R b/R/get_boards.R index 8e6bf419..b7c1c028 100644 --- a/R/get_boards.R +++ b/R/get_boards.R @@ -1,41 +1,41 @@ -#' Get the discussion boards from a meetup group -#' -#' @template urlname -#' @template verbose -#' @return A tibble with the following columns: -#' * id -#' * name -#' * description -#' * created -#' * updated -#' * post_count -#' * discussion_count -#' * latest_reply_created -#' * latest_reply_member_name -#' * resource -#' -#' @references -#' \url{https://www.meetup.com/meetup_api/docs/:urlname/boards/} -#'@examples -#' \dontrun{ -#' urlname <- "rladies-nashville" -#' meetup_boards <- get_boards(urlname = urlname) -#'} -#' @export -get_boards <- function(urlname, - verbose = meetupr_verbose()) { - api_path <- paste0(urlname, "/boards") - res <- .fetch_results(api_path = api_path, verbose = verbose) - tibble::tibble( - id = purrr::map_int(res, "id"), - name = purrr::map_chr(res, "name"), - description = purrr::map_chr(res, "description"), - created = .date_helper(purrr::map_dbl(res, "created")), - updated = .date_helper(purrr::map_dbl(res, "updated")), - post_count = purrr::map_int(res, "post_count", .default = NA), - discussion_count = purrr::map_int(res, "discussion_count", .default = NA), - latest_reply_created = .date_helper(purrr::map_dbl(res, c("latest_reply", "created"), .default = NA)), - latest_reply_member_name = purrr::map_chr(res, c("latest_reply", "member", "name"), .default = NA), - resource = res - ) -} +#' #' Get the discussion boards from a meetup group +#' #' +#' #' @template urlname +#' #' @template verbose +#' #' @return A tibble with the following columns: +#' #' * id +#' #' * name +#' #' * description +#' #' * created +#' #' * updated +#' #' * post_count +#' #' * discussion_count +#' #' * latest_reply_created +#' #' * latest_reply_member_name +#' #' * resource +#' #' +#' #' @references +#' #' \url{https://www.meetup.com/meetup_api/docs/:urlname/boards/} +#' #'@examples +#' #' \dontrun{ +#' #' urlname <- "rladies-nashville" +#' #' meetup_boards <- get_boards(urlname = urlname) +#' #'} +#' #' @export +#' get_boards <- function(urlname, +#' verbose = meetupr_verbose()) { +#' api_path <- paste0(urlname, "/boards") +#' res <- .fetch_results(api_path = api_path, verbose = verbose) +#' tibble::tibble( +#' id = purrr::map_int(res, "id"), +#' name = purrr::map_chr(res, "name"), +#' description = purrr::map_chr(res, "description"), +#' created = .date_helper(purrr::map_dbl(res, "created")), +#' updated = .date_helper(purrr::map_dbl(res, "updated")), +#' post_count = purrr::map_int(res, "post_count", .default = NA), +#' discussion_count = purrr::map_int(res, "discussion_count", .default = NA), +#' latest_reply_created = .date_helper(purrr::map_dbl(res, c("latest_reply", "created"), .default = NA)), +#' latest_reply_member_name = purrr::map_chr(res, c("latest_reply", "member", "name"), .default = NA), +#' resource = res +#' ) +#' } diff --git a/R/get_event_attendees.R b/R/get_event_attendees.R index 8b8648f7..f1cb0dbf 100644 --- a/R/get_event_attendees.R +++ b/R/get_event_attendees.R @@ -2,8 +2,8 @@ #' #' @param id Required event ID #' @param ... Should be empty. Used for parameter expansion -#' @param extra_graphql A graphql object. Extra objects to return -#' @param token Meetup token +#' @template extra_graphql +#' @template token #' @return A tibble with the following columns: #' * id #' * name diff --git a/R/get_event_comments.R b/R/get_event_comments.R index e51e66c9..df06564d 100644 --- a/R/get_event_comments.R +++ b/R/get_event_comments.R @@ -1,9 +1,9 @@ #' Get the comments for a specified event #' -#' @param id Required event ID +#' @template id #' @param ... Should be empty. Used for parameter expansion -#' @param extra_graphql A graphql object. Extra objects to return -#' @param token Meetup token +#' @template extra_graphql +#' @template token #' @return A tibble with the following columns: #' * id #' * comment diff --git a/R/get_events.R b/R/get_events.R index 93afebec..35f40fbc 100644 --- a/R/get_events.R +++ b/R/get_events.R @@ -1,9 +1,9 @@ #' Get the events from a meetup group #' -#' @param urlname Required urlname of the Meetup group +#' @template urlname #' @param ... Should be empty. Used for parameter expansion -#' @param extra_graphql A graphql object. Extra objects to return -#' @param token Meetup token +#' @template extra_graphql +#' @template token #' @export get_events <- function( urlname, diff --git a/R/get_members.R b/R/get_members.R index a818e297..9dabc88b 100644 --- a/R/get_members.R +++ b/R/get_members.R @@ -1,9 +1,9 @@ #' Get the current meetup members from a meetup group #' -#' @param urlname Required urlname of the Meetup group +#' @template urlname #' @param ... Should be empty. Used for parameter expansion -#' @param extra_graphql A graphql object. Extra objects to return -#' @param token Meetup token +#' @template extra_graphql +#' @template token #' @return A tibble with the following columns: #' * id #' * name diff --git a/R/get_pro.R b/R/get_pro.R index b87a3687..45d9ff9f 100644 --- a/R/get_pro.R +++ b/R/get_pro.R @@ -1,81 +1,96 @@ -#' #' Meetup pro functions -#' #' -#' #' The pro functions only work if the querying users -#' #' had a meetup pro account. -#' #' -#' #' \describe{ -#' #' \item{get_pro_groups}{Get the current meetup members from a pro meetup group} -#' #' \item{get_pro_events}{Get pro group events for the enxt 30 days} -#' #' } -#' #' -#' #' @template urlname -#' #' @template verbose -#' #' -#' #' @references -#' #' \url{https://www.meetup.com/meetup_api/docs/pro/:urlname/groups/} -#' #' \url{https://www.meetup.com/meetup_api/docs/:urlname/events/#list} -#' #' -#' #' @examples -#' #' \dontrun{ -#' #' urlname <- "rladies" -#' #' members <- get_pro_groups(urlname) -#' #' -#' #' past_events <- get_events(urlname = urlname, -#' #' event_status = "past") -#' #' upcoming_events <- get_events(urlname = urlname, -#' #' event_status = "upcoming") -#' #'} -#' #' -#' #' @return A tibble with meetup information +#' Meetup pro functions #' +#' The pro functions only work if the querying users +#' had a meetup pro account. #' -#' #' @rdname meetup_pro -#' #' @export -#' #' @importFrom purrr map_int map_chr map_dbl -#' #' @importFrom tibble tibble -#' get_pro_groups <- function( -#' urlname, -#' ..., -#' extra_graphql = NULL, -#' token = meetup_token() -#' ) { -#' ellipsis::check_dots_empty() +#' @template urlname +#' @param ... Should be empty. Used for parameter expansion +#' @template extra_graphql +#' @template token +#' @param status Which status the events should have. #' -#' dt <- gql_events( -#' urlname = urlname, -#' .extra_graphql = extra_graphql, -#' .token = token -#' ) +#' @references +#' \url{https://www.meetup.com/api/schema/#ProNetwork} #' -#' tibble( -#' group_sorter(res), -#' created = .date_helper(map_dbl(res, "founded_date")), -#' members = map_chr(res, "member_count"), -#' upcoming_events = map_int(res, "upcoming_events"), -#' past_events = map_int(res, "past_events"), -#' res = res -#' ) -#' } -#' -#' -#' #' @rdname meetup_pro -#' #' @importFrom tibble tibble -#' #' @export -#' get_pro_events <- function(urlname, -#' verbose = meetupr_verbose() -#' ){ -#' -#' api_path <- sprintf("pro/%s/events", urlname) -#' res <- .fetch_results(api_path = api_path, verbose = verbose) -#' -#' group <- lapply(res, function(x) x[["chapter"]]) -#' group <- tibble(group_sorter(group), res = group) -#' names(group) <- paste0("group_", names(group)) -#' -#' events <- lapply(res, function(x) x[[1]]) +#' @examples +#' \dontrun{ +#' urlname <- "rladies" +#' members <- get_pro_groups(urlname) #' -#' tibble( -#' event_sorter(events), -#' group -#' ) +#' past_events <- get_pro_events(urlname = urlname, +#' status = "PAST") +#' upcoming_events <- get_pro_events(urlname = urlname, +#' status = "UPCOMING") +#' all_events <- get_pro_events(urlname = urlname) #' } +#' @name meetup_pro +#' @return A tibble with meetup pro information +NULL + +#' Get pro groups information +#' @export +#' @describeIn meetup_pro retrieve groups in a pro network +get_pro_groups <- function( + urlname, + ..., + extra_graphql = NULL, + token = meetup_token() +) { + ellipsis::check_dots_empty() + + dt <- gql_get_pro_groups( + urlname = urlname, + .extra_graphql = extra_graphql, + .token = token + ) + dt <- rename(dt, + created = foundedDate, + members = memberships.count, + join_mode = joinMode, + category_id = category.id, + category_name = category.name, + country = country_name, + past_events_count = pastEvents.count, + upcoming_events_count = upcomingEvents.count, + membership_status = membershipMetadata.status, + is_private = isPrivate + + ) + + dt$created <- anytime::anytime(dt$created) + dt +} + +#' Get pro events information +#' @export +#' @describeIn meetup_pro retrieve events from a pro network +get_pro_events <- function( + urlname, + status = NULL, + ..., + extra_graphql = NULL, + token = meetup_token() +) { + ellipsis::check_dots_empty() + + dt <- gql_get_pro_events( + urlname = urlname, + status = status, + .extra_graphql = extra_graphql, + .token = token + ) + if(nrow(dt) == 0) return(NULL) + + # replace dot with underscore + names(dt) <- gsub("\\.", "_", names(dt)) + + dt <- rename(dt, + link = eventUrl, + event_type = eventType, + venue_zip = venue_postalCode + ) + dt$time <- anytime::anytime(dt$dateTime) + + remove(dt, + dateTime) +} diff --git a/R/graphql.R b/R/graphql.R index 11fa6ef3..cc1d3427 100644 --- a/R/graphql.R +++ b/R/graphql.R @@ -390,6 +390,54 @@ gql_get_event_comments <- graphql_query_generator( pb_format = "- :current/?? :elapsed :spin" ) + +gql_get_pro_groups <- graphql_query_generator( + "find_pro_groups", + cursor_fn = function(x) { + pageInfo <- x$data$proNetworkByUrlname$groupsSearch$pageInfo + if (pageInfo$hasNextPage) { + list(cursor = pageInfo$endCursor) + } else { + NULL + } + }, + total_fn = function(x) { + x$data$proNetworkByUrlname$groupsSearch$count + Inf + }, + extract_fn = function(x) { + groups <- lapply(x$data$proNetworkByUrlname$groupsSearch$edges, function(item) { + item$node + }) + groups + }, + pb_format = "- :current/?? :elapsed :spin" +) + +gql_get_pro_events <- graphql_query_generator( + "find_pro_events", + cursor_fn = function(x) { + pageInfo <- x$data$proNetworkByUrlname$eventsSearch$pageInfo + if (pageInfo$hasNextPage) { + list(cursor = pageInfo$endCursor) + } else { + NULL + } + }, + total_fn = function(x) { + x$data$proNetworkByUrlname$eventsSearch$count + Inf + }, + extract_fn = function(x) { + events <- lapply(x$data$proNetworkByUrlname$eventsSearch$edges, function(item) { + item$node + }) + events + }, + pb_format = "- :current/?? :elapsed :spin" +) + + # Cache the country code to name conversion as the conversion is consistent country_code_mem <- local({ cache <- list() @@ -457,6 +505,12 @@ if (FALSE) { } ') + x <- get_pro_groups("rladies"); utils::str(x) + + x <- get_pro_events("rladies"); utils::str(x) + + x <- get_pro_events("rladies", status = "UPCOMING"); utils::str(x) + x <- graphql_file("location", lat = 10.54, lon = -66.93); utils::str(x) x <- find_groups(topic_category_id = 546, query = "R-Ladies"); utils::str(x) diff --git a/R/meetup_query.R b/R/meetup_query.R index eedca13f..eaaaf8b6 100644 --- a/R/meetup_query.R +++ b/R/meetup_query.R @@ -3,7 +3,7 @@ #' Create your own query to the Meetup API #' @param query Required query text. Test queries at: https://www.meetup.com/api/playground #' @param ... Should be empty. Used for parameter expansion -#' @param token Meetup token +#' @template token #' @return raw list results from the query, not tidied #' @export #' diff --git a/R/zzz.R b/R/zzz.R index 695149f1..ac761038 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -54,6 +54,11 @@ utils::globalVariables( "metadata.mostRecentVisitDate", "group_sorter", "event_sorter", - "res" + "res", + "eventType", + "pastEvents.count", + "upcomingEvents.count", + "membershipMetadata.status", + "isPrivate" ) ) diff --git a/inst/graphql/find_pro_events.graphql b/inst/graphql/find_pro_events.graphql new file mode 100644 index 00000000..b48c8db6 --- /dev/null +++ b/inst/graphql/find_pro_events.graphql @@ -0,0 +1,46 @@ +query proEvents( + $urlname: String!, + $status: ProNetworkEventStatus, + $first: Int = 1000, + $cursor: String + ) { + proNetworkByUrlname(urlname: $urlname) { + eventsSearch(filter: { status: $status }, input: {after: $cursor, first: $first}) { + count + pageInfo { + hasNextPage + endCursor + } + edges { + node { + id + title + eventUrl + createdAt + status + dateTime + duration + going + waiting + description + eventType + venue { + lat + lon: lng + name + address + city + state + postalCode + country + } + group { + name + urlname + } + << extra_graphql >> + } + } + } + } +} diff --git a/inst/graphql/find_pro_groups.graphql b/inst/graphql/find_pro_groups.graphql new file mode 100644 index 00000000..c7c4b635 --- /dev/null +++ b/inst/graphql/find_pro_groups.graphql @@ -0,0 +1,47 @@ +query proGroups( + $urlname: String!, + $first: Int = 1000, + $cursor: String + ) { + proNetworkByUrlname(urlname: $urlname) { + groupsSearch(input: {after: $cursor, first: $first}) { + count + pageInfo { + hasNextPage + endCursor + } + edges { + node { + id + name + urlname + description + latitude + longitude + city + state + country + membershipMetadata { + status + } + memberships { + count + } + pastEvents (input: {first: 1}) { + count + } + upcomingEvents (input: {first: 1}) { + count + } + foundedDate + proJoinDate + timezone + joinMode + who: customMemberLabel + isPrivate + << extra_graphql >> + } + } + } + } +} diff --git a/man-roxygen/extra_graphql.R b/man-roxygen/extra_graphql.R new file mode 100644 index 00000000..342c6b44 --- /dev/null +++ b/man-roxygen/extra_graphql.R @@ -0,0 +1,2 @@ +#' @param extra_graphql A graphql object. Extra objects to return +#' diff --git a/man-roxygen/id.R b/man-roxygen/id.R new file mode 100644 index 00000000..1de9a8b9 --- /dev/null +++ b/man-roxygen/id.R @@ -0,0 +1 @@ +#' @param id Required event ID diff --git a/man-roxygen/token.R b/man-roxygen/token.R new file mode 100644 index 00000000..a68ffc07 --- /dev/null +++ b/man-roxygen/token.R @@ -0,0 +1,2 @@ +#' @param token Meetup token +#' diff --git a/man/get_boards.Rd b/man/get_boards.Rd deleted file mode 100644 index 444e06a8..00000000 --- a/man/get_boards.Rd +++ /dev/null @@ -1,42 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/get_boards.R -\name{get_boards} -\alias{get_boards} -\title{Get the discussion boards from a meetup group} -\usage{ -get_boards(urlname, verbose = meetupr_verbose()) -} -\arguments{ -\item{urlname}{Character. The name of the group as indicated in the -\url{https://meetup.com} url.} - -\item{verbose}{logical; do you want informative messages? \code{TRUE} by default in -interactive sessions. Can be toggled by the \code{meetupr.verbose} option.} -} -\value{ -A tibble with the following columns: -\itemize{ -\item id -\item name -\item description -\item created -\item updated -\item post_count -\item discussion_count -\item latest_reply_created -\item latest_reply_member_name -\item resource -} -} -\description{ -Get the discussion boards from a meetup group -} -\examples{ -\dontrun{ -urlname <- "rladies-nashville" -meetup_boards <- get_boards(urlname = urlname) -} -} -\references{ -\url{https://www.meetup.com/meetup_api/docs/:urlname/boards/} -} diff --git a/man/get_events.Rd b/man/get_events.Rd index 85dd6aee..1038ee83 100644 --- a/man/get_events.Rd +++ b/man/get_events.Rd @@ -7,7 +7,8 @@ get_events(urlname, ..., extra_graphql = NULL, token = meetup_token()) } \arguments{ -\item{urlname}{Required urlname of the Meetup group} +\item{urlname}{Character. The name of the group as indicated in the +\url{https://meetup.com} url.} \item{...}{Should be empty. Used for parameter expansion} diff --git a/man/get_members.Rd b/man/get_members.Rd index 51c211e4..92ad2d15 100644 --- a/man/get_members.Rd +++ b/man/get_members.Rd @@ -7,7 +7,8 @@ get_members(urlname, ..., extra_graphql = NULL, token = meetup_token()) } \arguments{ -\item{urlname}{Required urlname of the Meetup group} +\item{urlname}{Character. The name of the group as indicated in the +\url{https://meetup.com} url.} \item{...}{Should be empty. Used for parameter expansion} diff --git a/man/meetup_pro.Rd b/man/meetup_pro.Rd new file mode 100644 index 00000000..b14bcfab --- /dev/null +++ b/man/meetup_pro.Rd @@ -0,0 +1,59 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_pro.R +\name{meetup_pro} +\alias{meetup_pro} +\alias{get_pro_groups} +\alias{get_pro_events} +\title{Meetup pro functions} +\usage{ +get_pro_groups(urlname, ..., extra_graphql = NULL, token = meetup_token()) + +get_pro_events( + urlname, + status = NULL, + ..., + extra_graphql = NULL, + token = meetup_token() +) +} +\arguments{ +\item{urlname}{Character. The name of the group as indicated in the +\url{https://meetup.com} url.} + +\item{...}{Should be empty. Used for parameter expansion} + +\item{extra_graphql}{A graphql object. Extra objects to return} + +\item{token}{Meetup token} + +\item{status}{Which status the events should have.} +} +\value{ +A tibble with meetup pro information +} +\description{ +The pro functions only work if the querying users +had a meetup pro account. +} +\section{Functions}{ +\itemize{ +\item \code{get_pro_groups}: retrieve groups in a pro network + +\item \code{get_pro_events}: retrieve events from a pro network +}} + +\examples{ +\dontrun{ +urlname <- "rladies" +members <- get_pro_groups(urlname) + +past_events <- get_pro_events(urlname = urlname, + status = "PAST") +upcoming_events <- get_pro_events(urlname = urlname, + status = "UPCOMING") +all_events <- get_pro_events(urlname = urlname) +} +} +\references{ +\url{https://www.meetup.com/api/schema/#ProNetwork} +} diff --git a/tests/fixtures/find_groups.yml b/tests/fixtures/find_groups.yml index ace1be1c..ecf5f0a3 100644 --- a/tests/fixtures/find_groups.yml +++ b/tests/fixtures/find_groups.yml @@ -4,19 +4,18 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query keywordSearch(\r\n # $topicCategoryId: Int! = 546\r\n $topicCategoryId: - Int = null\r\n $searchSources: [SearchSources!]! = [GROUPS]\r\n # $query: - String! = \"R-Ladies\"\r\n $query: String!\r\n $lat: Float = 0\r\n $lon: - Float = 0\r\n $radius: Int = 100000000\r\n $first: Int = 1000\r\n $cursor: - String\r\n) {\r\n keywordSearch(\r\n input: { first: $first, after: $cursor - }\r\n filter: {\r\n query: $query\r\n lat: $lat\r\n lon: - $lon\r\n radius: $radius\r\n topicCategoryId: $topicCategoryId\r\n source: - $searchSources\r\n }\r\n ) {\r\n pageInfo {\r\n hasNextPage\r\n endCursor\r\n }\r\n count\r\n edges - {\r\n # cursor\r\n node {\r\n # id\r\n result {\r\n ... - on Group {\r\n id\r\n name\r\n urlname\r\n latitude\r\n longitude\r\n city\r\n state\r\n country\r\n membershipMetadata - {\r\n status\r\n }\r\n memberships {\r\n count\r\n }\r\n foundedDate\r\n timezone\r\n joinMode\r\n who: - customMemberLabel\r\n isPrivate\r\n category: topicCategory - {\r\n id\r\n name\r\n }\r\n \r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r","variables":{"query":"R-Ladies","lat":0,"lon":0,"radius":100000000}}' + string: '{"query":"query keywordSearch(\n # $topicCategoryId: Int! = 546\n $topicCategoryId: + Int = null\n $searchSources: [SearchSources!]! = [GROUPS]\n # $query: String! + = \"R-Ladies\"\n $query: String!\n $lat: Float = 0\n $lon: Float = 0\n $radius: + Int = 100000000\n $first: Int = 1000\n $cursor: String\n) {\n keywordSearch(\n input: + { first: $first, after: $cursor }\n filter: {\n query: $query\n lat: + $lat\n lon: $lon\n radius: $radius\n topicCategoryId: $topicCategoryId\n source: + $searchSources\n }\n ) {\n pageInfo {\n hasNextPage\n endCursor\n }\n count\n edges + {\n # cursor\n node {\n # id\n result {\n ... + on Group {\n id\n name\n urlname\n latitude\n longitude\n city\n state\n country\n membershipMetadata + {\n status\n }\n memberships {\n count\n }\n foundedDate\n timezone\n joinMode\n who: + customMemberLabel\n isPrivate\n category: topicCategory + {\n id\n name\n }\n \n }\n }\n }\n }\n }\n}","variables":{"query":"R-Ladies","lat":0,"lon":0,"radius":100000000}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -29,22 +28,17 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '10827' content-type: application/json - x-amzn-requestid: e2746c39-f013-4bbb-ae67-9e37882ada42 content-encoding: gzip - x-amzn-remapped-content-length: '75311' - x-amz-apigw-id: Q0NX0GaWoAMFvZQ= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-625e5c31-753f3672261d085843ab9139;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Tue, 19 Apr 2022 06:52:34 GMT + date: Thu, 29 Sep 2022 18:31:33 GMT + content-length: '11227' body: encoding: UTF-8 file: no string: | - {"data":{"keywordSearch":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":189,"edges":[{"node":{"result":{"id":"20443056","name":"R-Ladies Paris","urlname":"rladies-paris","latitude":48.86,"longitude":2.34,"city":"Paris","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":610},"foundedDate":"2016-09-19T11:39:51+02:00","timezone":"Europe/Paris","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21760043","name":"R-Ladies Buenos Aires","urlname":"rladies-buenos-aires","latitude":-34.61,"longitude":-58.37,"city":"Buenos Aires","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":1551},"foundedDate":"2017-01-03T17:20:58-03:00","timezone":"America/Argentina/Buenos_Aires","joinMode":"APPROVAL","who":"R Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22664282","name":"R-Ladies Rio de Janeiro","urlname":"rladies-rio","latitude":-22.91,"longitude":-43.2,"city":"Rio de Janeiro","state":"","country":"br","membershipMetadata":null,"memberships":{"count":643},"foundedDate":"2017-02-27T10:20:40-03:00","timezone":"America/Sao_Paulo","joinMode":"APPROVAL","who":"R-Ladies+","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24506595","name":"R-Ladies San Diego","urlname":"rladies-san-diego","latitude":32.75,"longitude":-117.17,"city":"San Diego","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":645},"foundedDate":"2017-06-16T17:42:38-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"San Diegan R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24752511","name":"R-Ladies Milan","urlname":"rladies-milan","latitude":45.46,"longitude":9.19,"city":"Milano","state":"MI","country":"it","membershipMetadata":null,"memberships":{"count":1145},"foundedDate":"2017-06-29T18:16:07+02:00","timezone":"Europe/Rome","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25039212","name":"R-Ladies Quito","urlname":"rladies-quito","latitude":-0.19,"longitude":-78.5,"city":"Quito","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":850},"foundedDate":"2017-07-18T16:32:39-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25057217","name":"R-Ladies PDX","urlname":"rladies-pdx","latitude":45.5,"longitude":-122.69,"city":"Portland","state":"OR","country":"us","membershipMetadata":null,"memberships":{"count":254},"foundedDate":"2017-07-20T02:33:38-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26203679","name":"R-Ladies San Jose","urlname":"rladies-san-jose","latitude":9.93,"longitude":-84.08,"city":"San Jose","state":"","country":"cr","membershipMetadata":null,"memberships":{"count":650},"foundedDate":"2017-10-09T02:37:04-06:00","timezone":"America/Costa_Rica","joinMode":"OPEN","who":"Participantes","isPrivate":false,"category":{"id":"652","name":"Social Activities"}}}},{"node":{"result":{"id":"26537030","name":"R-Ladies Seattle","urlname":"rladies-seattle","latitude":47.61,"longitude":-122.33,"city":"Seattle","state":"WA","country":"us","membershipMetadata":null,"memberships":{"count":1131},"foundedDate":"2017-11-08T12:15:05-08:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26871250","name":"R-Ladies Atlanta","urlname":"rladies-atlanta","latitude":33.86,"longitude":-84.4,"city":"Atlanta","state":"GA","country":"us","membershipMetadata":null,"memberships":{"count":300},"foundedDate":"2017-12-14T12:18:47-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27269070","name":"R-Ladies Lima","urlname":"rladies-lima","latitude":-12.07,"longitude":-77.05,"city":"Lima","state":"","country":"pe","membershipMetadata":null,"memberships":{"count":1810},"foundedDate":"2018-01-25T00:04:49-05:00","timezone":"America/Lima","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27283931","name":"R-Ladies Santa Barbara","urlname":"rladies-santa-barbara","latitude":34.42,"longitude":-119.71,"city":"Santa Barbara","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":560},"foundedDate":"2018-01-26T13:13:04-08:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651413","name":"R-Ladies Baltimore","urlname":"rladies-baltimore","latitude":39.29,"longitude":-76.62,"city":"Baltimore","state":"MD","country":"us","membershipMetadata":null,"memberships":{"count":1140},"foundedDate":"2018-02-26T00:38:14-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651457","name":"R-Ladies Oslo","urlname":"rladies-oslo","latitude":59.91,"longitude":10.75,"city":"Oslo","state":"","country":"no","membershipMetadata":null,"memberships":{"count":562},"foundedDate":"2018-02-26T00:47:06+01:00","timezone":"Europe/Oslo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27797804","name":"R-Ladies Tampa","urlname":"rladies-tampa","latitude":27.98,"longitude":-82.34,"city":"Tampa","state":"FL","country":"us","membershipMetadata":null,"memberships":{"count":317},"foundedDate":"2018-03-11T14:16:50-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28062692","name":"R-Ladies Guayaquil","urlname":"rladies-guayaquil","latitude":-2.21,"longitude":-79.9,"city":"Guayaquil","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":766},"foundedDate":"2018-04-05T18:48:47-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28226484","name":"R-Ladies Belo Horizonte","urlname":"rladies-belo-horizonte","latitude":-19.92,"longitude":-43.94,"city":"Belo Horizonte","state":"","country":"br","membershipMetadata":null,"memberships":{"count":897},"foundedDate":"2018-04-20T14:04:05-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28424845","name":"R-Ladies Santa Fe","urlname":"rladies-santa-fe","latitude":-31.6,"longitude":-60.69,"city":"Santa Fe","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":214},"foundedDate":"2018-05-08T11:43:12-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28448818","name":"R-Ladies Brisbane","urlname":"rladies-brisbane","latitude":-27.46,"longitude":153.02,"city":"Brisbane","state":"","country":"au","membershipMetadata":null,"memberships":{"count":769},"foundedDate":"2018-05-10T16:33:22+10:00","timezone":"Australia/Brisbane","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28706674","name":"R-Ladies Niterói","urlname":"rladies-niteroi","latitude":-22.9,"longitude":-43.13,"city":"Niterói","state":"","country":"br","membershipMetadata":null,"memberships":{"count":760},"foundedDate":"2018-06-04T19:31:17-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28789217","name":"R-Ladies Boulder","urlname":"rladies-boulder","latitude":40.05,"longitude":-105.21,"city":"Boulder","state":"CO","country":"us","membershipMetadata":null,"memberships":{"count":259},"foundedDate":"2018-06-11T18:01:59-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29397372","name":"R-Ladies Xalapa","urlname":"rladies-xalapa","latitude":19.53,"longitude":-96.92,"city":"Xalapa","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":508},"foundedDate":"2018-07-30T17:03:42-05:00","timezone":"America/Mexico_City","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29865126","name":"R-Ladies Iowa City","urlname":"rladies-iowa-city","latitude":41.66,"longitude":-91.53,"city":"Iowa City","state":"IA","country":"us","membershipMetadata":null,"memberships":{"count":121},"foundedDate":"2018-09-18T17:54:54-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30375244","name":"R-Ladies La Paz","urlname":"rladies-la-paz","latitude":-16.5,"longitude":-68.15,"city":"La Paz","state":"","country":"bo","membershipMetadata":null,"memberships":{"count":343},"foundedDate":"2018-10-22T23:43:35-04:00","timezone":"America/La_Paz","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30375344","name":"R-Ladies Perth","urlname":"rladies-perth","latitude":-31.96,"longitude":115.84,"city":"Perth","state":"","country":"au","membershipMetadata":null,"memberships":{"count":266},"foundedDate":"2018-10-23T00:04:06+08:00","timezone":"Australia/Perth","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30421186","name":"R-Ladies Lyon","urlname":"rladies-lyon","latitude":45.76,"longitude":4.83,"city":"Lyon","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":81},"foundedDate":"2018-10-29T18:18:34+01:00","timezone":"Europe/Paris","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30666379","name":"R-Ladies Houston","urlname":"rladies-houston","latitude":29.72,"longitude":-95.22,"city":"Houston","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":109},"foundedDate":"2018-12-07T13:07:28-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264590","name":"R-Ladies Newcastle","urlname":"rladies-newcastle","latitude":55,"longitude":-1.6,"city":"Newcastle Upon Tyne","state":"41","country":"gb","membershipMetadata":null,"memberships":{"count":265},"foundedDate":"2019-02-27T00:20:50Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31457077","name":"R-Ladies Den Bosch","urlname":"rladies-den-bosch","latitude":51.7,"longitude":5.3,"city":"Den Bosch","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":114},"foundedDate":"2019-03-23T04:04:19+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31514006","name":"R-Ladies Queretaro","urlname":"rladies-queretaro","latitude":20.59,"longitude":-100.4,"city":"Querétaro","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":797},"foundedDate":"2019-03-30T04:33:59-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31807417","name":"R-Ladies Christchurch","urlname":"rladies-christchurch","latitude":-43.53,"longitude":172.64,"city":"Christchurch","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":91},"foundedDate":"2019-05-04T01:29:15+12:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31829495","name":"R-Ladies Goiânia","urlname":"rladies-goiania","latitude":-16.72,"longitude":-49.26,"city":"Goiania","state":"","country":"br","membershipMetadata":null,"memberships":{"count":429},"foundedDate":"2019-05-06T12:59:50-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31858594","name":"R-Ladies Highland Park","urlname":"rladies-highland-park","latitude":40.5,"longitude":-74.43,"city":"Highland Park","state":"NJ","country":"us","membershipMetadata":null,"memberships":{"count":74},"foundedDate":"2019-05-09T13:48:51-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31859491","name":"R-Ladies Bucharest","urlname":"rladies-bucharest","latitude":44.44,"longitude":26.1,"city":"Bucharest","state":"","country":"ro","membershipMetadata":null,"memberships":{"count":282},"foundedDate":"2019-05-09T15:42:17+03:00","timezone":"Europe/Bucharest","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32012873","name":"R-Ladies Novi Sad","urlname":"rladies-novi-sad","latitude":45.25,"longitude":19.85,"city":"Novi Sad","state":"","country":"rs","membershipMetadata":null,"memberships":{"count":145},"foundedDate":"2019-05-24T11:14:08+02:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32426227","name":"R-Ladies Kansas City","urlname":"rladies-kansas-city","latitude":39.1,"longitude":-94.6,"city":"Kansas City","state":"MO","country":"us","membershipMetadata":null,"memberships":{"count":66},"foundedDate":"2019-07-18T22:53:22-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32702266","name":"R-Ladies Athens","urlname":"rladies-athens-ga","latitude":33.97,"longitude":-83.36,"city":"Athens","state":"GA","country":"us","membershipMetadata":null,"memberships":{"count":77},"foundedDate":"2019-08-31T09:55:13-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32763890","name":"R-Ladies Calgary","urlname":"rladies-calgary","latitude":51.04,"longitude":-114.06,"city":"Calgary","state":"AB","country":"ca","membershipMetadata":null,"memberships":{"count":202},"foundedDate":"2019-09-14T03:15:36-06:00","timezone":"America/Edmonton","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32767673","name":"R-Ladies Pachuca","urlname":"rladies-pachuca","latitude":20.12,"longitude":-98.76,"city":"Pachuca","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":23},"foundedDate":"2019-09-15T05:15:37-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32826541","name":"R-Ladies Pune","urlname":"rladies-pune","latitude":18.53,"longitude":73.84,"city":"Pune","state":"","country":"in","membershipMetadata":null,"memberships":{"count":167},"foundedDate":"2019-09-29T10:35:01+05:30","timezone":"Asia/Kolkata","joinMode":"APPROVAL","who":"R-Users","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33007355","name":"R-Ladies Beijing","urlname":"rladies-beijing","latitude":39.93,"longitude":116.4,"city":"Beijing","state":"","country":"cn","membershipMetadata":null,"memberships":{"count":56},"foundedDate":"2019-11-13T03:58:16+08:00","timezone":"Asia/Shanghai","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041271","name":"R-Ladies Oxford Ohio","urlname":"rladies-oxford-ohio","latitude":39.49,"longitude":-84.74,"city":"Oxford","state":"OH","country":"us","membershipMetadata":null,"memberships":{"count":59},"foundedDate":"2019-11-23T13:39:59-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041322","name":"R-Ladies Göteborg","urlname":"rladies-goteborg","latitude":57.72,"longitude":12.01,"city":"Göteborg","state":"","country":"se","membershipMetadata":null,"memberships":{"count":165},"foundedDate":"2019-11-23T14:02:15+01:00","timezone":"Europe/Stockholm","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33291403","name":"R-Ladies Abuja","urlname":"rladies-abuja","latitude":9.18,"longitude":7.17,"city":"Abuja","state":"","country":"ng","membershipMetadata":null,"memberships":{"count":632},"foundedDate":"2020-02-04T08:18:40+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409736","name":"R-Ladies Aguascalientes","urlname":"rladies-aguascalientes","latitude":21.88,"longitude":-102.3,"city":"Aguascalientes","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":341},"foundedDate":"2020-02-22T13:02:22-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33504173","name":"RLadies Ribeirão Preto","urlname":"rladies-ribeirao-preto","latitude":-21.17,"longitude":-47.8,"city":"Ribeirão Preto","state":"","country":"br","membershipMetadata":null,"memberships":{"count":332},"foundedDate":"2020-03-06T03:20:09-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"RLadies Ribeirão Preto","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33554403","name":"R-Ladies General Pico","urlname":"rladies-general-pico","latitude":-35.66,"longitude":-63.77,"city":"General Pico","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":62},"foundedDate":"2020-03-14T12:06:14-03:00","timezone":"America/Argentina/Cordoba","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33717527","name":"R-Ladies Cordoba","urlname":"rladies-cordoba","latitude":-31.4,"longitude":-64.19,"city":"Córdoba","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":32},"foundedDate":"2020-05-14T03:08:53-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33825315","name":"R-Ladies Cochabamba","urlname":"rladies-cochabamba","latitude":-17.38,"longitude":-66.17,"city":"Cochabamba","state":"","country":"bo","membershipMetadata":null,"memberships":{"count":17},"foundedDate":"2020-06-12T12:38:16-04:00","timezone":"America/La_Paz","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33880224","name":"R-Ladies Banda Aceh","urlname":"rladies-banda-aceh","latitude":5.55,"longitude":95.32,"city":"Banda Aceh","state":"","country":"id","membershipMetadata":null,"memberships":{"count":81},"foundedDate":"2020-06-24T02:20:08+07:00","timezone":"Asia/Jakarta","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33917673","name":"R-Ladies Waltham","urlname":"rladies-waltham","latitude":42.4,"longitude":-71.26,"city":"Waltham","state":"MA","country":"us","membershipMetadata":null,"memberships":{"count":28},"foundedDate":"2020-07-02T23:43:16-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34142165","name":"R-Ladies Tijuana","urlname":"rladies-tijuana","latitude":32.53,"longitude":-117.02,"city":"Tijuana","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":51},"foundedDate":"2020-08-23T22:11:06-07:00","timezone":"America/Tijuana","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35058835","name":"R-Ladies Milagro","urlname":"rladies-milagro","latitude":-2.18,"longitude":-79.6,"city":"Milagro","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":309},"foundedDate":"2021-04-16T00:14:04-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931648","name":"R-Ladies Brasília","urlname":"rladies-brasilia","latitude":-15.78,"longitude":-47.91,"city":"Brasília","state":"","country":"br","membershipMetadata":null,"memberships":{"count":65},"foundedDate":"2021-03-21T13:04:23-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34955861","name":"R-Ladies Göttingen","urlname":"rladies-gottingen","latitude":51.53,"longitude":9.92,"city":"Göttingen","state":"","country":"de","membershipMetadata":null,"memberships":{"count":40},"foundedDate":"2021-03-27T00:08:25+01:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34955933","name":"R-Ladies Comitán","urlname":"rladies-comitan","latitude":16.25,"longitude":-92.13,"city":"Comitan","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":173},"foundedDate":"2021-03-27T00:31-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35447775","name":"R-Ladies Caracas","urlname":"rladies-caracas","latitude":10.54,"longitude":-66.93,"city":"Caracas","state":"","country":"ve","membershipMetadata":null,"memberships":{"count":14},"foundedDate":"2021-06-21T10:59:21-04:00","timezone":"America/Caracas","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516206","name":"R-Ladies Saudi Arabia (Dammam)","urlname":"rladies-dammam","latitude":26.42,"longitude":50.09,"city":"Dammam","state":"","country":"sa","membershipMetadata":null,"memberships":{"count":365},"foundedDate":"2020-11-19T22:01:05+03:00","timezone":"Asia/Riyadh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36155475","name":"R-Ladies Morelia","urlname":"rladies-morelia","latitude":19.72,"longitude":-101.18,"city":"Morelia","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":88},"foundedDate":"2022-02-12T05:05:03-06:00","timezone":"America/Mexico_City","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897702","name":"R-Ladies Jeddah","urlname":"RLadiesJeddah","latitude":21.5,"longitude":39.17,"city":"Jeddah","state":"","country":"sa","membershipMetadata":null,"memberships":{"count":154},"foundedDate":"2021-09-25T10:53:43+03:00","timezone":"Asia/Riyadh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897727","name":"R-Ladies Urmia","urlname":"rladies-Urmia","latitude":37.53,"longitude":45,"city":"Orumiyeh","state":"","country":"ir","membershipMetadata":null,"memberships":{"count":213},"foundedDate":"2021-09-25T11:01:25+03:30","timezone":"Asia/Tehran","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36221061","name":"R-Ladies Rabat","urlname":"rladies-rabat-ma","latitude":34.02,"longitude":-6.83,"city":"Rabat","state":"","country":"ma","membershipMetadata":null,"memberships":{"count":36},"foundedDate":"2022-03-19T06:08:09+01:00","timezone":"Africa/Casablanca","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36221103","name":"R-Ladies Honolulu","urlname":"rladies-honolulu","latitude":21.33,"longitude":-157.83,"city":"Honolulu","state":"HI","country":"us","membershipMetadata":null,"memberships":{"count":7},"foundedDate":"2022-03-19T06:43:51-10:00","timezone":"Pacific/Honolulu","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25925303","name":"R-Ladies Montreal","urlname":"rladies-montreal","latitude":45.53,"longitude":-73.6,"city":"Montréal","state":"QC","country":"ca","membershipMetadata":null,"memberships":{"count":570},"foundedDate":"2017-09-14T14:56:21-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30994180","name":"R-Ladies Freiburg","urlname":"rladies-freiburg","latitude":47.99,"longitude":7.85,"city":"Freiburg","state":"","country":"de","membershipMetadata":null,"memberships":{"count":878},"foundedDate":"2019-01-23T11:33:05+01:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies Freiburg member","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26829576","name":"R-Ladies East Lansing","urlname":"rladies-east-lansing","latitude":42.65,"longitude":-84.49,"city":"East Lansing","state":"MI","country":"us","membershipMetadata":null,"memberships":{"count":857},"foundedDate":"2017-12-09T17:17:24-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651490","name":"R-Ladies Johannesburg","urlname":"rladies-johannesburg","latitude":-26.19,"longitude":28.04,"city":"Johannesburg","state":"","country":"za","membershipMetadata":null,"memberships":{"count":1036},"foundedDate":"2018-02-26T00:53:40+02:00","timezone":"Africa/Johannesburg","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33827845","name":"R-Ladies Nairobi","urlname":"rladies-nairobi","latitude":-1.29,"longitude":36.82,"city":"Nairobi","state":"","country":"ke","membershipMetadata":null,"memberships":{"count":1202},"foundedDate":"2020-06-13T01:50:37+03:00","timezone":"Africa/Nairobi","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27443387","name":"R-Ladies Amsterdam","urlname":"rladies-amsterdam","latitude":52.37,"longitude":4.89,"city":"Amsterdam","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":1192},"foundedDate":"2018-02-09T22:22:17+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"5190472","name":"R-Ladies San Francisco","urlname":"rladies-san-francisco","latitude":37.79,"longitude":-122.4,"city":"San Francisco","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":1702},"foundedDate":"2012-10-01T12:28:21-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32964072","name":"R-Ladies Masqat","urlname":"rladies-masqat","latitude":23.61,"longitude":58.54,"city":"Muscat","state":"","country":"om","membershipMetadata":null,"memberships":{"count":189},"foundedDate":"2019-10-31T15:37:46+04:00","timezone":"Asia/Dubai","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33007398","name":"R-Ladies Eskisehir","urlname":"rladies-eskisehir","latitude":39.79,"longitude":30.52,"city":"Eskisehir","state":"","country":"tr","membershipMetadata":null,"memberships":{"count":227},"foundedDate":"2019-11-13T04:22:59+03:00","timezone":"Europe/Istanbul","joinMode":"APPROVAL","who":"R-Ladies Eskişehir","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041212","name":"R-Ladies Al-Khartum","urlname":"rladies-al-khartum","latitude":15.58,"longitude":32.52,"city":"al-Khartum","state":"","country":"sd","membershipMetadata":null,"memberships":{"count":64},"foundedDate":"2019-11-23T13:15:46+02:00","timezone":"Africa/Khartoum","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33061717","name":"R-Ladies New Orleans","urlname":"rladies-new-orleans","latitude":29.96,"longitude":-90.08,"city":"New Orleans","state":"LA","country":"us","membershipMetadata":null,"memberships":{"count":81},"foundedDate":"2019-11-30T11:55:10-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36128390","name":"R-Ladies Oxford MS","urlname":"rladies-oxford-ms","latitude":34.35,"longitude":-89.52,"city":"Oxford","state":"MS","country":"us","membershipMetadata":null,"memberships":{"count":2},"foundedDate":"2022-01-30T12:51:07-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36128420","name":"R-Ladies Rome","urlname":"rladies-rome","latitude":41.9,"longitude":12.48,"city":"Roma","state":"RM","country":"it","membershipMetadata":null,"memberships":{"count":18},"foundedDate":"2022-01-30T13:04:32+01:00","timezone":"Europe/Rome","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897302","name":"R-Ladies Reading","urlname":"rladies-reading","latitude":51.44,"longitude":-0.95,"city":"Reading","state":"03","country":"gb","membershipMetadata":null,"memberships":{"count":29},"foundedDate":"2021-09-25T05:16:50+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897482","name":"R-Ladies Zürich","urlname":"rladies-zurich","latitude":47.38,"longitude":8.54,"city":"Zürich","state":"","country":"ch","membershipMetadata":null,"memberships":{"count":120},"foundedDate":"2021-09-25T08:25:02+02:00","timezone":"Europe/Zurich","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897766","name":"R-Ladies Bordeaux","urlname":"rladies-bordeaux","latitude":44.84,"longitude":-0.58,"city":"Bordeaux","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":9},"foundedDate":"2021-09-25T11:18:14+02:00","timezone":"Europe/Paris","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897779","name":"R-Ladies Villahermosa","urlname":"rladies-villahermosa","latitude":17.98,"longitude":-92.92,"city":"Villahermosa","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":19},"foundedDate":"2021-09-25T11:24:36-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897809","name":"R-Ladies Cologne","urlname":"rladies-cologne","latitude":50.94,"longitude":6.96,"city":"Cologne","state":"","country":"de","membershipMetadata":null,"memberships":{"count":122},"foundedDate":"2021-09-25T11:37:37+02:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20317472","name":"R-Ladies RTP","urlname":"rladies-rtp","latitude":36,"longitude":-78.9,"city":"Durham","state":"NC","country":"us","membershipMetadata":null,"memberships":{"count":911},"foundedDate":"2016-08-15T10:22:56-04:00","timezone":"America/New_York","joinMode":"APPROVAL","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20381623","name":"R-Ladies Madrid","urlname":"rladies-madrid","latitude":40.42,"longitude":-3.71,"city":"Madrid","state":"","country":"es","membershipMetadata":null,"memberships":{"count":1887},"foundedDate":"2016-09-02T16:29:35+02:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20851840","name":"R-Ladies Barcelona","urlname":"rladies-barcelona","latitude":41.4,"longitude":2.17,"city":"Barcelona","state":"","country":"es","membershipMetadata":null,"memberships":{"count":701},"foundedDate":"2016-10-22T06:56:36+02:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21149852","name":"R-Ladies Dublin","urlname":"rladies-dublin","latitude":53.33,"longitude":-6.25,"city":"Dublin","state":"","country":"ie","membershipMetadata":null,"memberships":{"count":854},"foundedDate":"2016-11-12T18:20:20Z","timezone":"Europe/Dublin","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21313292","name":"R-Ladies Tbilisi","urlname":"rladies-tbilisi","latitude":41.72,"longitude":44.79,"city":"Tbilisi","state":"","country":"ge","membershipMetadata":null,"memberships":{"count":361},"foundedDate":"2016-11-29T14:52:03+04:00","timezone":"Asia/Tbilisi","joinMode":"OPEN","who":"Member","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22066895","name":"R-Ladies Budapest","urlname":"rladies-budapest","latitude":47.51,"longitude":19.08,"city":"Budapest","state":"","country":"hu","membershipMetadata":null,"memberships":{"count":855},"foundedDate":"2017-01-24T17:50:22+01:00","timezone":"Europe/Budapest","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22202405","name":"R-Ladies Adelaide","urlname":"rladies-adelaide","latitude":-34.93,"longitude":138.6,"city":"Adelaide","state":"","country":"au","membershipMetadata":null,"memberships":{"count":321},"foundedDate":"2017-02-02T07:13:33+10:30","timezone":"Australia/Adelaide","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26434176","name":"R-Ladies Porto Alegre","urlname":"rladies-porto-alegre","latitude":-30.04,"longitude":-51.22,"city":"Porto Alegre","state":"","country":"br","membershipMetadata":null,"memberships":{"count":362},"foundedDate":"2017-10-29T22:47:19-02:00","timezone":"America/Sao_Paulo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26556368","name":"R-Ladies Cambridge","urlname":"rladies-cambridge","latitude":52.2,"longitude":0.11,"city":"Cambridge","state":"C3","country":"gb","membershipMetadata":null,"memberships":{"count":294},"foundedDate":"2017-11-10T11:28:12Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies Cambridge","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26598934","name":"R-Ladies Tucson AZ","urlname":"rladies-tucson-az","latitude":32.22,"longitude":-110.97,"city":"Tucson","state":"AZ","country":"us","membershipMetadata":null,"memberships":{"count":371},"foundedDate":"2017-11-14T13:45:21-07:00","timezone":"America/Phoenix","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26653718","name":"R-Ladies Copenhagen","urlname":"rladies-copenhagen","latitude":55.68,"longitude":12.57,"city":"Copenhagen","state":"","country":"dk","membershipMetadata":null,"memberships":{"count":466},"foundedDate":"2017-11-20T11:38:11+01:00","timezone":"Europe/Copenhagen","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26653882","name":"R-Ladies Auckland","urlname":"rladies-auckland","latitude":-36.85,"longitude":174.76,"city":"Auckland","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":801},"foundedDate":"2017-11-20T12:03:10+13:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26765765","name":"R-Ladies Lausanne","urlname":"rladies-lausanne","latitude":46.52,"longitude":6.62,"city":"Lausanne","state":"","country":"ch","membershipMetadata":null,"memberships":{"count":314},"foundedDate":"2017-12-02T14:53:48+01:00","timezone":"Europe/Zurich","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27819387","name":"R-Ladies Irvine","urlname":"rladies-irvine","latitude":33.65,"longitude":-117.84,"city":"Irvine","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":607},"foundedDate":"2018-03-13T15:30:25-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27902133","name":"R-Ladies Addis Ababa","urlname":"rladies-addis-ababa","latitude":9.03,"longitude":38.74,"city":"Addis Abeba","state":"","country":"et","membershipMetadata":null,"memberships":{"count":580},"foundedDate":"2018-03-21T12:03:01+03:00","timezone":"Africa/Nairobi","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27986524","name":"R-Ladies Cotonou","urlname":"rladies-cotonou","latitude":6.36,"longitude":2.44,"city":"Cotonou","state":"","country":"bj","membershipMetadata":null,"memberships":{"count":41},"foundedDate":"2018-03-29T13:05:25+01:00","timezone":"Africa/Lagos","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28280039","name":"R-Ladies Pasadena","urlname":"rladies-pasadena","latitude":34.15,"longitude":-118.14,"city":"Pasadena","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":102},"foundedDate":"2018-04-25T11:49:47-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28393787","name":"R-Ladies Nijmegen","urlname":"rladies-nijmegen","latitude":51.84,"longitude":5.85,"city":"Nijmegen","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":347},"foundedDate":"2018-05-05T14:42:21+02:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28436046","name":"R-Ladies Sydney","urlname":"rladies-sydney","latitude":-33.87,"longitude":151.21,"city":"Sydney","state":"","country":"au","membershipMetadata":null,"memberships":{"count":914},"foundedDate":"2018-05-09T12:28:35+10:00","timezone":"Australia/Sydney","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29096058","name":"R-Ladies Gainesville","urlname":"rladies-gainesville","latitude":29.65,"longitude":-82.3,"city":"Gainesville","state":"FL","country":"us","membershipMetadata":null,"memberships":{"count":459},"foundedDate":"2018-07-04T00:28:47-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29332380","name":"R-Ladies Salvador","urlname":"rladies-salvador","latitude":-12.97,"longitude":-38.5,"city":"Salvador","state":"","country":"br","membershipMetadata":null,"memberships":{"count":261},"foundedDate":"2018-07-23T12:07:29-03:00","timezone":"America/Bahia","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29370129","name":"R-Ladies Edinburgh","urlname":"rladies-edinburgh","latitude":55.95,"longitude":-3.22,"city":"Edinburgh","state":"U8","country":"gb","membershipMetadata":null,"memberships":{"count":660},"foundedDate":"2018-07-27T13:59:59+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29540437","name":"R-Ladies Stockholm","urlname":"rladies-stockholm","latitude":59.33,"longitude":18.07,"city":"Stockholm","state":"","country":"se","membershipMetadata":null,"memberships":{"count":393},"foundedDate":"2018-08-16T11:54:53+02:00","timezone":"Europe/Stockholm","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29783351","name":"R-Ladies Lancaster","urlname":"rladies-lancaster","latitude":54.05,"longitude":-2.8,"city":"Lancaster","state":"H2","country":"gb","membershipMetadata":null,"memberships":{"count":137},"foundedDate":"2018-09-12T11:37:04+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29851462","name":"R-Ladies Vienna","urlname":"rladies-vienna","latitude":48.22,"longitude":16.37,"city":"Vienna","state":"","country":"at","membershipMetadata":null,"memberships":{"count":353},"foundedDate":"2018-09-17T13:03:40+02:00","timezone":"Europe/Vienna","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29862217","name":"R-Ladies Toronto","urlname":"rladies-toronto","latitude":43.74,"longitude":-79.36,"city":"Toronto","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":649},"foundedDate":"2018-09-18T12:24:06-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30017254","name":"R-Ladies Kathmandu","urlname":"rladies-kathmandu","latitude":27.71,"longitude":85.31,"city":"Kathmandu","state":"","country":"np","membershipMetadata":null,"memberships":{"count":85},"foundedDate":"2018-10-01T13:03:26+05:45","timezone":"Asia/Kathmandu","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30339934","name":"R-Ladies Montpellier","urlname":"rladies-montpellier","latitude":43.61,"longitude":3.87,"city":"Montpellier","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":151},"foundedDate":"2018-10-17T17:06:30+02:00","timezone":"Europe/Paris","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30655714","name":"R-Ladies Ottawa","urlname":"rladies-ottawa","latitude":45.45,"longitude":-75.69,"city":"Ottawa","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":228},"foundedDate":"2018-12-05T16:47:23-05:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30680825","name":"R-Ladies Canberra","urlname":"rladies-canberra","latitude":-35.31,"longitude":149.13,"city":"Canberra","state":"","country":"au","membershipMetadata":null,"memberships":{"count":216},"foundedDate":"2018-12-09T23:26:52+11:00","timezone":"Australia/Sydney","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264536","name":"R-Ladies Frankfurt","urlname":"rladies-frankfurt","latitude":50.12,"longitude":8.68,"city":"Frankfurt","state":"","country":"de","membershipMetadata":null,"memberships":{"count":108},"foundedDate":"2019-02-27T00:09:42+01:00","timezone":"Europe/Berlin","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31457211","name":"R-Ladies Nelson","urlname":"rladies-nelson","latitude":-41.29,"longitude":173.24,"city":"Nelson","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":24},"foundedDate":"2019-03-23T04:42:23+13:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31577107","name":"R-Ladies Bogor","urlname":"rladies-bogor","latitude":-6.58,"longitude":106.79,"city":"Bogor","state":"","country":"id","membershipMetadata":null,"memberships":{"count":304},"foundedDate":"2019-04-07T08:18:02+07:00","timezone":"Asia/Jakarta","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31653398","name":"R-Ladies Lavras","urlname":"rladies-lavras","latitude":-21.25,"longitude":-45.01,"city":"Lavras","state":"","country":"br","membershipMetadata":null,"memberships":{"count":68},"foundedDate":"2019-04-16T12:08-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31653468","name":"R-Ladies Concepción","urlname":"rladies-concepcion","latitude":-36.83,"longitude":-73.05,"city":"Concepción","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":587},"foundedDate":"2019-04-16T12:16:39-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"R-Ladies Concepción","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32144791","name":"R-Ladies Utrecht","urlname":"rladies-utrecht","latitude":52.1,"longitude":5.11,"city":"Utrecht","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":250},"foundedDate":"2019-06-10T17:29+02:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32308998","name":"R-Ladies Denver","urlname":"rladies-denver","latitude":39.7,"longitude":-105.08,"city":"Denver","state":"CO","country":"us","membershipMetadata":null,"memberships":{"count":137},"foundedDate":"2019-07-02T19:29:28-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32478325","name":"R-Ladies Fayetteville","urlname":"rladies-fayetteville","latitude":36.05,"longitude":-94.14,"city":"Fayetteville","state":"AR","country":"us","membershipMetadata":null,"memberships":{"count":140},"foundedDate":"2019-07-26T20:00:32-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32604355","name":"R-Ladies Cuernavaca","urlname":"rladies-cuernavaca","latitude":18.92,"longitude":-99.25,"city":"Cuernavaca","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":822},"foundedDate":"2019-08-15T03:19:36-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32612004","name":"R-Ladies Lagos","urlname":"rladies-lagos","latitude":6.45,"longitude":3.47,"city":"Lagos","state":"","country":"ng","membershipMetadata":null,"memberships":{"count":420},"foundedDate":"2019-08-16T09:45:21+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32705558","name":"R-Ladies New Delhi","urlname":"rladies-new-delhi","latitude":28.67,"longitude":77.21,"city":"Delhi","state":"","country":"in","membershipMetadata":null,"memberships":{"count":367},"foundedDate":"2019-09-01T04:42:42+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32713369","name":"R-Ladies Recife","urlname":"rladies-recife","latitude":-8.08,"longitude":-34.92,"city":"Recife","state":"","country":"br","membershipMetadata":null,"memberships":{"count":153},"foundedDate":"2019-09-02T16:41:01-03:00","timezone":"America/Recife","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32783356","name":"R-Ladies Podgorica","urlname":"rladies-podgorica","latitude":42.47,"longitude":19.28,"city":"Podgorica","state":"","country":"me","membershipMetadata":null,"memberships":{"count":31},"foundedDate":"2019-09-18T15:17:41+02:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931554","name":"R-Ladies Kingston","urlname":"rladies-kingston","latitude":44.22,"longitude":-76.51,"city":"Kingston","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":10},"foundedDate":"2021-03-21T12:48:10-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931629","name":"R-Ladies Thessaloníki","urlname":"rladies-thessaloniki","latitude":40.64,"longitude":22.94,"city":"Thessaloníki","state":"","country":"gr","membershipMetadata":null,"memberships":{"count":26},"foundedDate":"2021-03-21T13:00:29+02:00","timezone":"Europe/Athens","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516308","name":"R Ladies Aarhus","urlname":"rladies-aarhus","latitude":56.16,"longitude":10.2,"city":"Aarhus","state":"","country":"dk","membershipMetadata":null,"memberships":{"count":41},"foundedDate":"2020-11-19T23:03:30+01:00","timezone":"Europe/Copenhagen","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516330","name":"R-Ladies Jujuy","urlname":"rladies-jujuy","latitude":-24.19,"longitude":-65.3,"city":"Jujuy","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":140},"foundedDate":"2020-11-19T23:21:37-03:00","timezone":"America/Argentina/Jujuy","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34524973","name":"R-Ladies Kuala Lumpur","urlname":"rladies-kuala-lumpur","latitude":3.16,"longitude":101.71,"city":"Kuala Lumpur","state":"","country":"my","membershipMetadata":null,"memberships":{"count":28},"foundedDate":"2020-11-22T22:46:49+08:00","timezone":"Asia/Kuala_Lumpur","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194871","name":"R-Ladies Galapagos Islands","urlname":"rladies-galapagos-islands","latitude":-0.74,"longitude":-90.32,"city":"Puerto Ayora","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":465},"foundedDate":"2020-01-12T12:23:57-06:00","timezone":"Pacific/Galapagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194933","name":"R-Ladies Oxford","urlname":"rladies-oxford","latitude":51.76,"longitude":-1.26,"city":"Oxford","state":"K2","country":"gb","membershipMetadata":null,"memberships":{"count":38},"foundedDate":"2020-01-12T12:39:04Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194964","name":"R-Ladies Monterrey","urlname":"rladies-monterrey","latitude":25.67,"longitude":-100.32,"city":"Monterrey","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":369},"foundedDate":"2020-01-12T12:47:12-06:00","timezone":"America/Monterrey","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409584","name":"R-Ladies Niš","urlname":"rladies-nis","latitude":43.33,"longitude":21.9,"city":"Niš","state":"","country":"rs","membershipMetadata":null,"memberships":{"count":13},"foundedDate":"2020-02-22T12:39:39+01:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33683539","name":"R-Ladies Algiers","urlname":"rladies-algiers","latitude":36.77,"longitude":3.04,"city":"al-Jaza´ir","state":"","country":"dz","membershipMetadata":null,"memberships":{"count":279},"foundedDate":"2020-05-02T11:27:08+01:00","timezone":"Africa/Algiers","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33810889","name":"R-Ladies Fortaleza","urlname":"rladies-fortaleza","latitude":-3.78,"longitude":-38.59,"city":"Fortaleza","state":"","country":"br","membershipMetadata":null,"memberships":{"count":113},"foundedDate":"2020-06-09T01:22:58-03:00","timezone":"America/Fortaleza","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34086060","name":"R-Ladies Bangalore","urlname":"rladies-bangalore","latitude":12.97,"longitude":77.56,"city":"Bangalore","state":"","country":"in","membershipMetadata":null,"memberships":{"count":311},"foundedDate":"2020-08-12T00:45:48+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29734242","name":"R-Ladies Helsinki","urlname":"rladies-helsinki","latitude":60.17,"longitude":24.94,"city":"Helsinki","state":"","country":"fi","membershipMetadata":null,"memberships":{"count":412},"foundedDate":"2018-09-07T13:37:10+03:00","timezone":"Europe/Helsinki","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33683503","name":"R-Ladies Barranquilla","urlname":"rladies-barranquilla","latitude":11,"longitude":-74.82,"city":"Barranquilla","state":"","country":"co","membershipMetadata":null,"memberships":{"count":352},"foundedDate":"2020-05-02T11:07:29-05:00","timezone":"America/Bogota","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34787581","name":"R-Ladies Izmir","urlname":"rladies-izmir","latitude":38.43,"longitude":27.15,"city":"Izmir","state":"","country":"tr","membershipMetadata":null,"memberships":{"count":97},"foundedDate":"2021-02-12T11:49:48+03:00","timezone":"Europe/Istanbul","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041359","name":"R-Ladies Mumbai","urlname":"rladies-mumbai","latitude":18.96,"longitude":72.82,"city":"Mumbai","state":"","country":"in","membershipMetadata":null,"memberships":{"count":119},"foundedDate":"2019-11-23T14:14:43+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33061635","name":"R-Ladies Syracuse","urlname":"rladies-syracuse","latitude":43.04,"longitude":-76.15,"city":"Syracuse","state":"NY","country":"us","membershipMetadata":null,"memberships":{"count":14},"foundedDate":"2019-11-30T11:09:20-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651345","name":"R-Ladies Mendoza","urlname":"rladies-mendoza","latitude":-32.89,"longitude":-68.83,"city":"Mendoza","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":296},"foundedDate":"2018-02-26T00:26:29-03:00","timezone":"America/Argentina/Mendoza","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27724373","name":"R-Ladies Dallas","urlname":"rladies-dallas","latitude":32.79,"longitude":-96.8,"city":"Dallas","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":755},"foundedDate":"2018-03-04T15:35-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"19474893","name":"R-Ladies London","urlname":"rladies-london","latitude":51.52,"longitude":-0.1,"city":"London","state":"17","country":"gb","membershipMetadata":null,"memberships":{"count":1512},"foundedDate":"2016-01-31T11:36:33Z","timezone":"Europe/London","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33106550","name":"R-Ladies Colombo","urlname":"rladies-colombo","latitude":6.93,"longitude":79.85,"city":"Colombo","state":"","country":"lk","membershipMetadata":null,"memberships":{"count":340},"foundedDate":"2019-12-15T08:30:12+05:30","timezone":"Asia/Colombo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33107363","name":"R-Ladies Mid-Mo","urlname":"rladies-mid-mo","latitude":38.9,"longitude":-92.25,"city":"Columbia","state":"MO","country":"us","membershipMetadata":null,"memberships":{"count":135},"foundedDate":"2019-12-15T14:50:22-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20600376","name":"R-Ladies Columbus","urlname":"rladies-columbus","latitude":40.01,"longitude":-83.02,"city":"Columbus","state":"OH","country":"us","membershipMetadata":null,"memberships":{"count":951},"foundedDate":"2016-10-04T15:09:07-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22180445","name":"R-Ladies Austin","urlname":"rladies-austin","latitude":30.22,"longitude":-97.75,"city":"Austin","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":649},"foundedDate":"2017-01-31T11:20:17-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24820200","name":"R-Ladies CDMX","urlname":"rladies-cdmx","latitude":19.43,"longitude":-99.14,"city":"México City","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":2268},"foundedDate":"2017-07-03T23:36:23-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"Miembrxs","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24848073","name":"R-Ladies Chicago","urlname":"rladies-chicago","latitude":41.88,"longitude":-87.62,"city":"Chicago","state":"IL","country":"us","membershipMetadata":null,"memberships":{"count":1350},"foundedDate":"2017-07-05T16:30:43-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25039094","name":"R-Ladies Santiago","urlname":"rladies-scl","latitude":-33.46,"longitude":-70.64,"city":"Santiago","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":2509},"foundedDate":"2017-07-18T16:23:51-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"RLadies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26229746","name":"R-Ladies Philly","urlname":"rladies-philly","latitude":40.12,"longitude":-75.01,"city":"Philadelphia","state":"PA","country":"us","membershipMetadata":null,"memberships":{"count":1861},"foundedDate":"2017-10-11T09:36:55-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26792997","name":"R-Ladies Rotterdam","urlname":"rladies-rotterdam","latitude":51.93,"longitude":4.48,"city":"Rotterdam","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":507},"foundedDate":"2017-12-05T12:20:06+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27456719","name":"R-Ladies São Paulo","urlname":"rladies-sao-paulo","latitude":-23.53,"longitude":-46.63,"city":"São Paulo","state":"","country":"br","membershipMetadata":null,"memberships":{"count":1350},"foundedDate":"2018-02-10T16:43:06-02:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28441250","name":"R-Ladies Bariloche","urlname":"rladies-bariloche","latitude":-41.14,"longitude":-71.32,"city":"San Carlos de Bariloche","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":420},"foundedDate":"2018-05-09T22:22:15-03:00","timezone":"America/Argentina/Cordoba","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28530966","name":"R-Ladies Valparaíso","urlname":"rladies-valparaiso","latitude":-33.04,"longitude":-71.64,"city":"Valparaíso","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":430},"foundedDate":"2018-05-18T15:02:36-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28753666","name":"R-Ladies Resistencia-Corrientes","urlname":"rladies-resistencia-corrientes","latitude":-27.49,"longitude":-58.81,"city":"Corrientes","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":207},"foundedDate":"2018-06-08T19:47:11-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29929892","name":"R-Ladies Des Moines","urlname":"rladies-des-moines","latitude":41.6,"longitude":-93.63,"city":"Des Moines","state":"IA","country":"us","membershipMetadata":null,"memberships":{"count":28},"foundedDate":"2018-09-23T11:41:06-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264653","name":"R-Ladies Bilbao","urlname":"rladies-bilbao","latitude":43.25,"longitude":-2.93,"city":"Bilbao","state":"","country":"es","membershipMetadata":null,"memberships":{"count":218},"foundedDate":"2019-02-27T00:37:09+01:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31577218","name":"R-Ladies Floripa","urlname":"rladies-florianopolis","latitude":-27.6,"longitude":-48.54,"city":"Florianópolis","state":"","country":"br","membershipMetadata":null,"memberships":{"count":452},"foundedDate":"2019-04-07T08:41:18-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31679846","name":"R-Ladies El Paso","urlname":"rladies-el-paso","latitude":31.76,"longitude":-106.49,"city":"El Paso","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":66},"foundedDate":"2019-04-19T14:25:32-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32327430","name":"R-Ladies Jakarta","urlname":"rladies-jakarta","latitude":-6.18,"longitude":106.83,"city":"Jakarta","state":"","country":"id","membershipMetadata":null,"memberships":{"count":579},"foundedDate":"2019-07-05T23:01:28+07:00","timezone":"Asia/Jakarta","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32522592","name":"R-Ladies Riverside","urlname":"rladies-riverside","latitude":33.99,"longitude":-117.37,"city":"Riverside","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":487},"foundedDate":"2019-08-01T22:32:25-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32611075","name":"R-Ladies Lexington Park","urlname":"rladies-lexington-park","latitude":38.27,"longitude":-76.46,"city":"Lexington Park","state":"MD","country":"us","membershipMetadata":null,"memberships":{"count":37},"foundedDate":"2019-08-16T05:43:24-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32826513","name":"R-Ladies Vitória","urlname":"rladies-vitoria","latitude":-20.31,"longitude":-40.31,"city":"Vitória","state":"","country":"br","membershipMetadata":null,"memberships":{"count":222},"foundedDate":"2019-09-29T10:26:02-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32946570","name":"R-Ladies Bergen","urlname":"rladies-bergen","latitude":60.38,"longitude":5.34,"city":"Bergen","state":"","country":"no","membershipMetadata":null,"memberships":{"count":334},"foundedDate":"2019-10-28T13:46:46+01:00","timezone":"Europe/Oslo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33361775","name":"R-Ladies Ha Noi","urlname":"rladies-ha-noi","latitude":21.03,"longitude":105.84,"city":"Ha Noi","state":"","country":"vn","membershipMetadata":null,"memberships":{"count":67},"foundedDate":"2020-02-16T13:43:44+07:00","timezone":"Asia/Ho_Chi_Minh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409671","name":"R-Ladies Coventry","urlname":"rladies-coventry","latitude":52.42,"longitude":-1.5,"city":"Coventry","state":"43","country":"gb","membershipMetadata":null,"memberships":{"count":535},"foundedDate":"2020-02-22T12:51:34Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33704099","name":"R-Ladies Cusco","urlname":"rladies-cusco","latitude":-13.52,"longitude":-71.99,"city":"Cusco","state":"","country":"pe","membershipMetadata":null,"memberships":{"count":39},"foundedDate":"2020-05-09T14:06:11-05:00","timezone":"America/Lima","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33717562","name":"R-Ladies Talca","urlname":"rladies-talca","latitude":-35.42,"longitude":-71.66,"city":"Talca","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":182},"foundedDate":"2020-05-14T03:37:36-04:00","timezone":"America/Santiago","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33719616","name":"R-Ladies Tunis","urlname":"rladies-tunis","latitude":36.84,"longitude":10.22,"city":"Tunis","state":"","country":"tn","membershipMetadata":null,"memberships":{"count":1074},"foundedDate":"2020-05-14T20:30:41+01:00","timezone":"Africa/Tunis","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33725126","name":"R-Ladies Ushuaia","urlname":"rladies-ushuaia","latitude":-54.79,"longitude":-68.31,"city":"Ushuaia","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":30},"foundedDate":"2020-05-16T17:12:37-03:00","timezone":"America/Argentina/Buenos_Aires","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33801315","name":"R-Ladies Natal","urlname":"rladies-natal","latitude":-5.8,"longitude":-35.22,"city":"Natal","state":"","country":"br","membershipMetadata":null,"memberships":{"count":458},"foundedDate":"2020-06-06T23:24:46-03:00","timezone":"America/Fortaleza","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33825235","name":"R-Ladies Curitiba","urlname":"rladies-curitiba","latitude":-25.42,"longitude":-49.29,"city":"Curitiba","state":"","country":"br","membershipMetadata":null,"memberships":{"count":68},"foundedDate":"2020-06-12T12:14:56-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33880125","name":"R-Ladies Glasgow","urlname":"rladies-glasgow","latitude":55.86,"longitude":-4.24,"city":"Glasgow","state":"V2","country":"gb","membershipMetadata":null,"memberships":{"count":70},"foundedDate":"2020-06-24T01:49:21+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33917745","name":"R-Ladies Asunción","urlname":"rladies-asuncion","latitude":-25.3,"longitude":-57.63,"city":"Asunción","state":"","country":"py","membershipMetadata":null,"memberships":{"count":82},"foundedDate":"2020-07-03T00:12:17-04:00","timezone":"America/Asuncion","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34099620","name":"R-Ladies Guadalajara","urlname":"rladies-guadalajara","latitude":20.67,"longitude":-103.35,"city":"Guadalajara","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":1270},"foundedDate":"2020-08-14T22:10:44-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897540","name":"R-Ladies Santo Domingo","urlname":"rladies-santo-domingo","latitude":18.48,"longitude":-69.91,"city":"Santo Domingo","state":"","country":"do","membershipMetadata":null,"memberships":{"count":31},"foundedDate":"2021-09-25T09:08:52-04:00","timezone":"America/Santo_Domingo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897790","name":"R-Ladies West Lafayette","urlname":"rladies-west-lafayette","latitude":40.5,"longitude":-86.97,"city":"West Lafayette","state":"IN","country":"us","membershipMetadata":null,"memberships":{"count":6},"foundedDate":"2021-09-25T11:30:59-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931513","name":"R-Ladies São Mateus","urlname":"rladies-sao-mateus","latitude":-18.73,"longitude":-39.86,"city":"São Mateus","state":"","country":"br","membershipMetadata":null,"memberships":{"count":11},"foundedDate":"2021-03-21T12:37:14-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931654","name":"R-Ladies Darwin","urlname":"rladies-darwin","latitude":-12.46,"longitude":130.84,"city":"Darwin","state":"","country":"au","membershipMetadata":null,"memberships":{"count":24},"foundedDate":"2021-03-21T13:07:41+09:30","timezone":"Australia/Darwin","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36155463","name":"R-Ladies Ciudad Obregón","urlname":"rladies-ciudad-obregon","latitude":27.49,"longitude":-109.94,"city":"Ciudad Obregón","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":2},"foundedDate":"2022-02-12T04:50:18-07:00","timezone":"America/Hermosillo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26276685","name":"R-Ladies Chennai","urlname":"rladies-chennai","latitude":13.09,"longitude":80.27,"city":"Chennai","state":"","country":"in","membershipMetadata":null,"memberships":{"count":517},"foundedDate":"2017-10-15T17:28:14+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32823667","name":"R-Ladies Medellín","urlname":"rladies-medellin","latitude":6.25,"longitude":-75.59,"city":"Medellín","state":"","country":"co","membershipMetadata":null,"memberships":{"count":808},"foundedDate":"2019-09-28T13:21:45-05:00","timezone":"America/Bogota","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897820","name":"R-Ladies Gaborone","urlname":"rladies-gaborone","latitude":-24.65,"longitude":25.91,"city":"Gaborone","state":"","country":"bw","membershipMetadata":null,"memberships":{"count":391},"foundedDate":"2021-09-25T11:42:27+02:00","timezone":"Africa/Maputo","joinMode":"OPEN","who":"R-Ladies Gaborone","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32426344","name":"R-Ladies Puebla","urlname":"rladies-puebla","latitude":19.05,"longitude":-98.22,"city":"Puebla","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":2365},"foundedDate":"2019-07-18T23:14:05-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20346526","name":"R-Ladies New York","urlname":"rladies-newyork","latitude":40.75,"longitude":-73.99,"city":"New York","state":"NY","country":"us","membershipMetadata":null,"memberships":{"count":2408},"foundedDate":"2016-08-23T17:01-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"Rladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33166554","name":"R-Ladies Yaoundé","urlname":"rladies-yaounde","latitude":3.87,"longitude":11.52,"city":"Yaoundé","state":"","country":"cm","membershipMetadata":null,"memberships":{"count":70},"foundedDate":"2020-01-05T04:34:37+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21965959","name":"R-Ladies London, Ontario","urlname":"rladies-ldnont","latitude":43.01,"longitude":-81.18,"city":"London","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":463},"foundedDate":"2017-01-17T08:04:19-05:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}}]}}} - recorded_at: 2022-04-19 06:52:39 GMT + {"data":{"keywordSearch":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":197,"edges":[{"node":{"result":{"id":"34931648","name":"R-Ladies Brasília","urlname":"rladies-brasilia","latitude":-15.78,"longitude":-47.91,"city":"Brasília","state":"","country":"br","membershipMetadata":null,"memberships":{"count":68},"foundedDate":"2021-03-21T13:04:23-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34955861","name":"R-Ladies Göttingen","urlname":"rladies-gottingen","latitude":51.53,"longitude":9.92,"city":"Göttingen","state":"","country":"de","membershipMetadata":null,"memberships":{"count":48},"foundedDate":"2021-03-27T00:08:25+01:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34955933","name":"R-Ladies Comitán","urlname":"rladies-comitan","latitude":16.25,"longitude":-92.13,"city":"Comitan","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":176},"foundedDate":"2021-03-27T00:31-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897702","name":"R-Ladies Jeddah","urlname":"RLadiesJeddah","latitude":21.5,"longitude":39.17,"city":"Jeddah","state":"","country":"sa","membershipMetadata":null,"memberships":{"count":216},"foundedDate":"2021-09-25T10:53:43+03:00","timezone":"Asia/Riyadh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897727","name":"R-Ladies Urmia","urlname":"rladies-urmia","latitude":37.53,"longitude":45,"city":"Orumiyeh","state":"","country":"ir","membershipMetadata":null,"memberships":{"count":303},"foundedDate":"2021-09-25T11:01:25+03:30","timezone":"Asia/Tehran","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35447775","name":"R-Ladies Caracas","urlname":"rladies-caracas","latitude":10.54,"longitude":-66.93,"city":"Caracas","state":"","country":"ve","membershipMetadata":null,"memberships":{"count":17},"foundedDate":"2021-06-21T10:59:21-04:00","timezone":"America/Caracas","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35058835","name":"R-Ladies Milagro","urlname":"rladies-milagro","latitude":-2.18,"longitude":-79.6,"city":"Milagro","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":313},"foundedDate":"2021-04-16T00:14:04-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21760043","name":"R-Ladies Buenos Aires","urlname":"rladies-buenos-aires","latitude":-34.61,"longitude":-58.37,"city":"Buenos Aires","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":1558},"foundedDate":"2017-01-03T17:20:58-03:00","timezone":"America/Argentina/Buenos_Aires","joinMode":"APPROVAL","who":"R Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22664282","name":"R-Ladies Rio de Janeiro","urlname":"rladies-rio","latitude":-22.91,"longitude":-43.2,"city":"Rio de Janeiro","state":"","country":"br","membershipMetadata":null,"memberships":{"count":640},"foundedDate":"2017-02-27T10:20:40-03:00","timezone":"America/Sao_Paulo","joinMode":"APPROVAL","who":"R-Ladies+","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24506595","name":"R-Ladies San Diego","urlname":"rladies-san-diego","latitude":32.75,"longitude":-117.17,"city":"San Diego","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":664},"foundedDate":"2017-06-16T17:42:38-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"San Diegan R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24752511","name":"R-Ladies Milan","urlname":"rladies-milan","latitude":45.46,"longitude":9.19,"city":"Milano","state":"MI","country":"it","membershipMetadata":null,"memberships":{"count":1161},"foundedDate":"2017-06-29T18:16:07+02:00","timezone":"Europe/Rome","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25039212","name":"R-Ladies Quito","urlname":"rladies-quito","latitude":-0.19,"longitude":-78.5,"city":"Quito","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":860},"foundedDate":"2017-07-18T16:32:39-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25057217","name":"R-Ladies PDX","urlname":"rladies-pdx","latitude":45.5,"longitude":-122.69,"city":"Portland","state":"OR","country":"us","membershipMetadata":null,"memberships":{"count":259},"foundedDate":"2017-07-20T02:33:38-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25925303","name":"R-Ladies Montreal","urlname":"rladies-montreal","latitude":45.53,"longitude":-73.6,"city":"Montréal","state":"QC","country":"ca","membershipMetadata":null,"memberships":{"count":598},"foundedDate":"2017-09-14T14:56:21-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26203679","name":"R-Ladies San Jose","urlname":"rladies-san-jose","latitude":9.93,"longitude":-84.08,"city":"San Jose","state":"","country":"cr","membershipMetadata":null,"memberships":{"count":657},"foundedDate":"2017-10-09T02:37:04-06:00","timezone":"America/Costa_Rica","joinMode":"OPEN","who":"Participantes","isPrivate":false,"category":{"id":"652","name":"Social Activities"}}}},{"node":{"result":{"id":"26537030","name":"R-Ladies Seattle","urlname":"rladies-seattle","latitude":47.61,"longitude":-122.33,"city":"Seattle","state":"WA","country":"us","membershipMetadata":null,"memberships":{"count":1157},"foundedDate":"2017-11-08T12:15:05-08:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26829576","name":"R-Ladies East Lansing","urlname":"rladies-east-lansing","latitude":42.65,"longitude":-84.49,"city":"East Lansing","state":"MI","country":"us","membershipMetadata":null,"memberships":{"count":864},"foundedDate":"2017-12-09T17:17:24-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26871250","name":"R-Ladies Atlanta","urlname":"rladies-atlanta","latitude":33.86,"longitude":-84.4,"city":"Atlanta","state":"GA","country":"us","membershipMetadata":null,"memberships":{"count":305},"foundedDate":"2017-12-14T12:18:47-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27269070","name":"R-Ladies Lima","urlname":"rladies-lima","latitude":-12.07,"longitude":-77.05,"city":"Lima","state":"","country":"pe","membershipMetadata":null,"memberships":{"count":1940},"foundedDate":"2018-01-25T00:04:49-05:00","timezone":"America/Lima","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27283931","name":"R-Ladies Santa Barbara","urlname":"rladies-santa-barbara","latitude":34.42,"longitude":-119.71,"city":"Santa Barbara","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":578},"foundedDate":"2018-01-26T13:13:04-08:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651413","name":"R-Ladies Baltimore","urlname":"rladies-baltimore","latitude":39.29,"longitude":-76.62,"city":"Baltimore","state":"MD","country":"us","membershipMetadata":null,"memberships":{"count":1165},"foundedDate":"2018-02-26T00:38:14-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651457","name":"R-Ladies Oslo","urlname":"rladies-oslo","latitude":59.91,"longitude":10.75,"city":"Oslo","state":"","country":"no","membershipMetadata":null,"memberships":{"count":574},"foundedDate":"2018-02-26T00:47:06+01:00","timezone":"Europe/Oslo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651490","name":"R-Ladies Johannesburg","urlname":"rladies-johannesburg","latitude":-26.19,"longitude":28.04,"city":"Johannesburg","state":"","country":"za","membershipMetadata":null,"memberships":{"count":1122},"foundedDate":"2018-02-26T00:53:40+02:00","timezone":"Africa/Johannesburg","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27797804","name":"R-Ladies Tampa","urlname":"rladies-tampa","latitude":27.98,"longitude":-82.34,"city":"Tampa","state":"FL","country":"us","membershipMetadata":null,"memberships":{"count":316},"foundedDate":"2018-03-11T14:16:50-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28062692","name":"R-Ladies Guayaquil","urlname":"rladies-guayaquil","latitude":-2.21,"longitude":-79.9,"city":"Guayaquil","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":1035},"foundedDate":"2018-04-05T18:48:47-05:00","timezone":"America/Guayaquil","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28226484","name":"R-Ladies Belo Horizonte","urlname":"rladies-belo-horizonte","latitude":-19.92,"longitude":-43.94,"city":"Belo Horizonte","state":"","country":"br","membershipMetadata":null,"memberships":{"count":897},"foundedDate":"2018-04-20T14:04:05-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28424845","name":"R-Ladies Santa Fe","urlname":"rladies-santa-fe","latitude":-31.6,"longitude":-60.69,"city":"Santa Fe","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":226},"foundedDate":"2018-05-08T11:43:12-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28448818","name":"R-Ladies Brisbane","urlname":"rladies-brisbane","latitude":-27.46,"longitude":153.02,"city":"Brisbane","state":"","country":"au","membershipMetadata":null,"memberships":{"count":870},"foundedDate":"2018-05-10T16:33:22+10:00","timezone":"Australia/Brisbane","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28706674","name":"R-Ladies Niterói","urlname":"rladies-niteroi","latitude":-22.9,"longitude":-43.13,"city":"Niterói","state":"","country":"br","membershipMetadata":null,"memberships":{"count":762},"foundedDate":"2018-06-04T19:31:17-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28789217","name":"R-Ladies Boulder","urlname":"rladies-boulder","latitude":40.05,"longitude":-105.21,"city":"Boulder","state":"CO","country":"us","membershipMetadata":null,"memberships":{"count":275},"foundedDate":"2018-06-11T18:01:59-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29397372","name":"R-Ladies Xalapa","urlname":"rladies-xalapa","latitude":19.53,"longitude":-96.92,"city":"Xalapa","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":526},"foundedDate":"2018-07-30T17:03:42-05:00","timezone":"America/Mexico_City","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29865126","name":"R-Ladies Iowa City","urlname":"rladies-iowa-city","latitude":41.66,"longitude":-91.53,"city":"Iowa City","state":"IA","country":"us","membershipMetadata":null,"memberships":{"count":127},"foundedDate":"2018-09-18T17:54:54-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30375244","name":"R-Ladies La Paz","urlname":"rladies-la-paz","latitude":-16.5,"longitude":-68.15,"city":"La Paz","state":"","country":"bo","membershipMetadata":null,"memberships":{"count":345},"foundedDate":"2018-10-22T23:43:35-04:00","timezone":"America/La_Paz","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30375344","name":"R-Ladies Perth","urlname":"rladies-perth","latitude":-31.96,"longitude":115.84,"city":"Perth","state":"","country":"au","membershipMetadata":null,"memberships":{"count":266},"foundedDate":"2018-10-23T00:04:06+08:00","timezone":"Australia/Perth","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30421186","name":"R-Ladies Lyon","urlname":"rladies-lyon","latitude":45.76,"longitude":4.83,"city":"Lyon","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":83},"foundedDate":"2018-10-29T18:18:34+01:00","timezone":"Europe/Paris","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30666379","name":"R-Ladies Houston","urlname":"rladies-houston","latitude":29.72,"longitude":-95.22,"city":"Houston","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":118},"foundedDate":"2018-12-07T13:07:28-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30994180","name":"R-Ladies Freiburg","urlname":"rladies-freiburg","latitude":47.99,"longitude":7.85,"city":"Freiburg","state":"","country":"de","membershipMetadata":null,"memberships":{"count":950},"foundedDate":"2019-01-23T11:33:05+01:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies Freiburg member","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264590","name":"R-Ladies Newcastle","urlname":"rladies-newcastle","latitude":55,"longitude":-1.6,"city":"Newcastle Upon Tyne","state":"41","country":"gb","membershipMetadata":null,"memberships":{"count":265},"foundedDate":"2019-02-27T00:20:50Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31457077","name":"R-Ladies Den Bosch","urlname":"rladies-den-bosch","latitude":51.7,"longitude":5.3,"city":"Den Bosch","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":142},"foundedDate":"2019-03-23T04:04:19+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31514006","name":"R-Ladies Queretaro","urlname":"rladies-queretaro","latitude":20.59,"longitude":-100.4,"city":"Querétaro","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":908},"foundedDate":"2019-03-30T04:33:59-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31807417","name":"R-Ladies Christchurch","urlname":"rladies-christchurch","latitude":-43.53,"longitude":172.64,"city":"Christchurch","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":93},"foundedDate":"2019-05-04T01:29:15+12:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31829495","name":"R-Ladies Goiânia","urlname":"rladies-goiania","latitude":-16.72,"longitude":-49.26,"city":"Goiania","state":"","country":"br","membershipMetadata":null,"memberships":{"count":444},"foundedDate":"2019-05-06T12:59:50-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31858594","name":"R-Ladies Highland Park","urlname":"rladies-highland-park","latitude":40.5,"longitude":-74.43,"city":"Highland Park","state":"NJ","country":"us","membershipMetadata":null,"memberships":{"count":78},"foundedDate":"2019-05-09T13:48:51-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31859491","name":"R-Ladies Bucharest","urlname":"rladies-bucharest","latitude":44.44,"longitude":26.1,"city":"Bucharest","state":"","country":"ro","membershipMetadata":null,"memberships":{"count":280},"foundedDate":"2019-05-09T15:42:17+03:00","timezone":"Europe/Bucharest","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32012873","name":"R-Ladies Novi Sad","urlname":"rladies-novi-sad","latitude":45.25,"longitude":19.85,"city":"Novi Sad","state":"","country":"rs","membershipMetadata":null,"memberships":{"count":145},"foundedDate":"2019-05-24T11:14:08+02:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32426227","name":"R-Ladies Kansas City","urlname":"rladies-kansas-city","latitude":39.1,"longitude":-94.6,"city":"Kansas City","state":"MO","country":"us","membershipMetadata":null,"memberships":{"count":66},"foundedDate":"2019-07-18T22:53:22-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32702266","name":"R-Ladies Athens","urlname":"rladies-athens-ga","latitude":33.97,"longitude":-83.36,"city":"Athens","state":"GA","country":"us","membershipMetadata":null,"memberships":{"count":83},"foundedDate":"2019-08-31T09:55:13-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32763890","name":"R-Ladies Calgary","urlname":"rladies-calgary","latitude":51.04,"longitude":-114.06,"city":"Calgary","state":"AB","country":"ca","membershipMetadata":null,"memberships":{"count":205},"foundedDate":"2019-09-14T03:15:36-06:00","timezone":"America/Edmonton","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32767673","name":"R-Ladies Pachuca","urlname":"rladies-pachuca","latitude":20.12,"longitude":-98.76,"city":"Pachuca","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":23},"foundedDate":"2019-09-15T05:15:37-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32826541","name":"R-Ladies Pune","urlname":"rladies-pune","latitude":18.53,"longitude":73.84,"city":"Pune","state":"","country":"in","membershipMetadata":null,"memberships":{"count":164},"foundedDate":"2019-09-29T10:35:01+05:30","timezone":"Asia/Kolkata","joinMode":"APPROVAL","who":"R-Users","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33007355","name":"R-Ladies Beijing","urlname":"rladies-beijing","latitude":39.93,"longitude":116.4,"city":"Beijing","state":"","country":"cn","membershipMetadata":null,"memberships":{"count":54},"foundedDate":"2019-11-13T03:58:16+08:00","timezone":"Asia/Shanghai","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041271","name":"R-Ladies Oxford Ohio","urlname":"rladies-oxford-ohio","latitude":39.49,"longitude":-84.74,"city":"Oxford","state":"OH","country":"us","membershipMetadata":null,"memberships":{"count":61},"foundedDate":"2019-11-23T13:39:59-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041322","name":"R-Ladies Göteborg","urlname":"rladies-goteborg","latitude":57.72,"longitude":12.01,"city":"Göteborg","state":"","country":"se","membershipMetadata":null,"memberships":{"count":166},"foundedDate":"2019-11-23T14:02:15+01:00","timezone":"Europe/Stockholm","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33291403","name":"R-Ladies Abuja","urlname":"rladies-abuja","latitude":9.18,"longitude":7.17,"city":"Abuja","state":"","country":"ng","membershipMetadata":null,"memberships":{"count":801},"foundedDate":"2020-02-04T08:18:40+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409736","name":"R-Ladies Aguascalientes","urlname":"rladies-aguascalientes","latitude":21.88,"longitude":-102.3,"city":"Aguascalientes","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":343},"foundedDate":"2020-02-22T13:02:22-06:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33504173","name":"RLadies Ribeirão Preto","urlname":"rladies-ribeirao-preto","latitude":-21.17,"longitude":-47.8,"city":"Ribeirão Preto","state":"","country":"br","membershipMetadata":null,"memberships":{"count":465},"foundedDate":"2020-03-06T03:20:09-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"RLadies Ribeirão Preto","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33554403","name":"R-Ladies General Pico","urlname":"rladies-general-pico","latitude":-35.66,"longitude":-63.77,"city":"General Pico","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":63},"foundedDate":"2020-03-14T12:06:14-03:00","timezone":"America/Argentina/Cordoba","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33717527","name":"R-Ladies Cordoba","urlname":"rladies-cordoba","latitude":-31.4,"longitude":-64.19,"city":"Córdoba","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":32},"foundedDate":"2020-05-14T03:08:53-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33825315","name":"R-Ladies Cochabamba","urlname":"rladies-cochabamba","latitude":-17.38,"longitude":-66.17,"city":"Cochabamba","state":"","country":"bo","membershipMetadata":null,"memberships":{"count":17},"foundedDate":"2020-06-12T12:38:16-04:00","timezone":"America/La_Paz","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33827845","name":"R-Ladies Nairobi","urlname":"rladies-nairobi","latitude":-1.29,"longitude":36.82,"city":"Nairobi","state":"","country":"ke","membershipMetadata":null,"memberships":{"count":1331},"foundedDate":"2020-06-13T01:50:37+03:00","timezone":"Africa/Nairobi","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33880224","name":"R-Ladies Banda Aceh","urlname":"rladies-banda-aceh","latitude":5.55,"longitude":95.32,"city":"Banda Aceh","state":"","country":"id","membershipMetadata":null,"memberships":{"count":83},"foundedDate":"2020-06-24T02:20:08+07:00","timezone":"Asia/Jakarta","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33917673","name":"R-Ladies Waltham","urlname":"rladies-waltham","latitude":42.4,"longitude":-71.26,"city":"Waltham","state":"MA","country":"us","membershipMetadata":null,"memberships":{"count":28},"foundedDate":"2020-07-02T23:43:16-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34142165","name":"R-Ladies Tijuana","urlname":"rladies-tijuana","latitude":32.53,"longitude":-117.02,"city":"Tijuana","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":55},"foundedDate":"2020-08-23T22:11:06-07:00","timezone":"America/Tijuana","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516206","name":"R-Ladies Saudi Arabia (Dammam)","urlname":"rladies-dammam","latitude":26.42,"longitude":50.09,"city":"Dammam","state":"","country":"sa","membershipMetadata":null,"memberships":{"count":474},"foundedDate":"2020-11-19T22:01:05+03:00","timezone":"Asia/Riyadh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36155475","name":"R-Ladies Morelia","urlname":"rladies-morelia","latitude":19.72,"longitude":-101.18,"city":"Morelia","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":105},"foundedDate":"2022-02-12T05:05:03-06:00","timezone":"America/Mexico_City","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36221061","name":"R-Ladies Rabat","urlname":"rladies-rabat-ma","latitude":34.02,"longitude":-6.83,"city":"Rabat","state":"","country":"ma","membershipMetadata":null,"memberships":{"count":168},"foundedDate":"2022-03-19T06:08:09+01:00","timezone":"Africa/Casablanca","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36221103","name":"R-Ladies Honolulu","urlname":"rladies-honolulu","latitude":21.33,"longitude":-157.83,"city":"Honolulu","state":"HI","country":"us","membershipMetadata":null,"memberships":{"count":11},"foundedDate":"2022-03-19T06:43:51-10:00","timezone":"Pacific/Honolulu","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506185","name":"R-Ladies Stillwater","urlname":"rladies-stillwater","latitude":36.11,"longitude":-97.08,"city":"Stillwater","state":"OK","country":"us","membershipMetadata":null,"memberships":{"count":27},"foundedDate":"2022-08-05T13:02:59-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506375","name":"R-Ladies Halifax","urlname":"rladies-halifax","latitude":44.64,"longitude":-63.57,"city":"Halifax","state":"NS","country":"ca","membershipMetadata":null,"memberships":{"count":17},"foundedDate":"2022-08-05T14:52:53-03:00","timezone":"America/Halifax","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506465","name":"R-Ladies Wellington","urlname":"rladies-wellington","latitude":-41.28,"longitude":174.78,"city":"Wellington","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":13},"foundedDate":"2022-08-05T15:50:19+12:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897302","name":"R-Ladies Reading","urlname":"rladies-reading","latitude":51.44,"longitude":-0.95,"city":"Reading","state":"03","country":"gb","membershipMetadata":null,"memberships":{"count":31},"foundedDate":"2021-09-25T05:16:50+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897482","name":"R-Ladies Zürich","urlname":"rladies-zurich","latitude":47.38,"longitude":8.54,"city":"Zürich","state":"","country":"ch","membershipMetadata":null,"memberships":{"count":170},"foundedDate":"2021-09-25T08:25:02+02:00","timezone":"Europe/Zurich","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897766","name":"R-Ladies Bordeaux","urlname":"rladies-bordeaux","latitude":44.84,"longitude":-0.58,"city":"Bordeaux","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":12},"foundedDate":"2021-09-25T11:18:14+02:00","timezone":"Europe/Paris","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897779","name":"R-Ladies Villahermosa","urlname":"rladies-villahermosa","latitude":17.98,"longitude":-92.92,"city":"Villahermosa","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":118},"foundedDate":"2021-09-25T11:24:36-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897809","name":"R-Ladies Cologne","urlname":"rladies-cologne","latitude":50.94,"longitude":6.96,"city":"Cologne","state":"","country":"de","membershipMetadata":null,"memberships":{"count":207},"foundedDate":"2021-09-25T11:37:37+02:00","timezone":"Europe/Berlin","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931554","name":"R-Ladies Kingston","urlname":"rladies-kingston","latitude":44.22,"longitude":-76.51,"city":"Kingston","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":17},"foundedDate":"2021-03-21T12:48:10-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931629","name":"R-Ladies Thessaloníki","urlname":"rladies-thessaloniki","latitude":40.64,"longitude":22.94,"city":"Thessaloníki","state":"","country":"gr","membershipMetadata":null,"memberships":{"count":30},"foundedDate":"2021-03-21T13:00:29+02:00","timezone":"Europe/Athens","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34787581","name":"R-Ladies Izmir","urlname":"rladies-izmir","latitude":38.43,"longitude":27.15,"city":"Izmir","state":"","country":"tr","membershipMetadata":null,"memberships":{"count":128},"foundedDate":"2021-02-12T11:49:48+03:00","timezone":"Europe/Istanbul","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"5190472","name":"R-Ladies San Francisco","urlname":"rladies-san-francisco","latitude":37.79,"longitude":-122.4,"city":"San Francisco","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":1708},"foundedDate":"2012-10-01T12:28:21-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20317472","name":"R-Ladies RTP","urlname":"rladies-rtp","latitude":36,"longitude":-78.9,"city":"Durham","state":"NC","country":"us","membershipMetadata":null,"memberships":{"count":968},"foundedDate":"2016-08-15T10:22:56-04:00","timezone":"America/New_York","joinMode":"APPROVAL","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20381623","name":"R-Ladies Madrid","urlname":"rladies-madrid","latitude":40.42,"longitude":-3.71,"city":"Madrid","state":"","country":"es","membershipMetadata":null,"memberships":{"count":1891},"foundedDate":"2016-09-02T16:29:35+02:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20851840","name":"R-Ladies Barcelona","urlname":"rladies-barcelona","latitude":41.4,"longitude":2.17,"city":"Barcelona","state":"","country":"es","membershipMetadata":null,"memberships":{"count":703},"foundedDate":"2016-10-22T06:56:36+02:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21149852","name":"R-Ladies Dublin","urlname":"rladies-dublin","latitude":53.33,"longitude":-6.25,"city":"Dublin","state":"","country":"ie","membershipMetadata":null,"memberships":{"count":853},"foundedDate":"2016-11-12T18:20:20Z","timezone":"Europe/Dublin","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21313292","name":"R-Ladies Tbilisi","urlname":"rladies-tbilisi","latitude":41.72,"longitude":44.79,"city":"Tbilisi","state":"","country":"ge","membershipMetadata":null,"memberships":{"count":375},"foundedDate":"2016-11-29T14:52:03+04:00","timezone":"Asia/Tbilisi","joinMode":"OPEN","who":"Member","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22066895","name":"R-Ladies Budapest","urlname":"rladies-budapest","latitude":47.51,"longitude":19.08,"city":"Budapest","state":"","country":"hu","membershipMetadata":null,"memberships":{"count":857},"foundedDate":"2017-01-24T17:50:22+01:00","timezone":"Europe/Budapest","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22202405","name":"R-Ladies Adelaide","urlname":"rladies-adelaide","latitude":-34.93,"longitude":138.6,"city":"Adelaide","state":"","country":"au","membershipMetadata":null,"memberships":{"count":324},"foundedDate":"2017-02-02T07:13:33+10:30","timezone":"Australia/Adelaide","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26434176","name":"R-Ladies Porto Alegre","urlname":"rladies-porto-alegre","latitude":-30.04,"longitude":-51.22,"city":"Porto Alegre","state":"","country":"br","membershipMetadata":null,"memberships":{"count":370},"foundedDate":"2017-10-29T22:47:19-02:00","timezone":"America/Sao_Paulo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26556368","name":"R-Ladies Cambridge","urlname":"rladies-cambridge","latitude":52.2,"longitude":0.11,"city":"Cambridge","state":"C3","country":"gb","membershipMetadata":null,"memberships":{"count":292},"foundedDate":"2017-11-10T11:28:12Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies Cambridge","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26598934","name":"R-Ladies Tucson AZ","urlname":"rladies-tucson-az","latitude":32.22,"longitude":-110.97,"city":"Tucson","state":"AZ","country":"us","membershipMetadata":null,"memberships":{"count":368},"foundedDate":"2017-11-14T13:45:21-07:00","timezone":"America/Phoenix","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26653718","name":"R-Ladies Copenhagen","urlname":"rladies-copenhagen","latitude":55.68,"longitude":12.57,"city":"Copenhagen","state":"","country":"dk","membershipMetadata":null,"memberships":{"count":465},"foundedDate":"2017-11-20T11:38:11+01:00","timezone":"Europe/Copenhagen","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26653882","name":"R-Ladies Auckland","urlname":"rladies-auckland","latitude":-36.85,"longitude":174.76,"city":"Auckland","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":802},"foundedDate":"2017-11-20T12:03:10+13:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26765765","name":"R-Ladies Lausanne","urlname":"rladies-lausanne","latitude":46.52,"longitude":6.62,"city":"Lausanne","state":"","country":"ch","membershipMetadata":null,"memberships":{"count":314},"foundedDate":"2017-12-02T14:53:48+01:00","timezone":"Europe/Zurich","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27443387","name":"R-Ladies Amsterdam","urlname":"rladies-amsterdam","latitude":52.37,"longitude":4.89,"city":"Amsterdam","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":1189},"foundedDate":"2018-02-09T22:22:17+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27819387","name":"R-Ladies Irvine","urlname":"rladies-irvine","latitude":33.65,"longitude":-117.84,"city":"Irvine","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":635},"foundedDate":"2018-03-13T15:30:25-07:00","timezone":"America/Los_Angeles","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27902133","name":"R-Ladies Addis Ababa","urlname":"rladies-addis-ababa","latitude":9.03,"longitude":38.74,"city":"Addis Abeba","state":"","country":"et","membershipMetadata":null,"memberships":{"count":591},"foundedDate":"2018-03-21T12:03:01+03:00","timezone":"Africa/Nairobi","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27986524","name":"R-Ladies Cotonou","urlname":"rladies-cotonou","latitude":6.36,"longitude":2.44,"city":"Cotonou","state":"","country":"bj","membershipMetadata":null,"memberships":{"count":41},"foundedDate":"2018-03-29T13:05:25+01:00","timezone":"Africa/Lagos","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28280039","name":"R-Ladies Pasadena","urlname":"rladies-pasadena","latitude":34.15,"longitude":-118.14,"city":"Pasadena","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":104},"foundedDate":"2018-04-25T11:49:47-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28393787","name":"R-Ladies Nijmegen","urlname":"rladies-nijmegen","latitude":51.84,"longitude":5.85,"city":"Nijmegen","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":347},"foundedDate":"2018-05-05T14:42:21+02:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28436046","name":"R-Ladies Sydney","urlname":"rladies-sydney","latitude":-33.87,"longitude":151.21,"city":"Sydney","state":"","country":"au","membershipMetadata":null,"memberships":{"count":919},"foundedDate":"2018-05-09T12:28:35+10:00","timezone":"Australia/Sydney","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29096058","name":"R-Ladies Gainesville","urlname":"rladies-gainesville","latitude":29.65,"longitude":-82.3,"city":"Gainesville","state":"FL","country":"us","membershipMetadata":null,"memberships":{"count":496},"foundedDate":"2018-07-04T00:28:47-04:00","timezone":"America/New_York","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29332380","name":"R-Ladies Salvador","urlname":"rladies-salvador","latitude":-12.97,"longitude":-38.5,"city":"Salvador","state":"","country":"br","membershipMetadata":null,"memberships":{"count":266},"foundedDate":"2018-07-23T12:07:29-03:00","timezone":"America/Bahia","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29370129","name":"R-Ladies Edinburgh","urlname":"rladies-edinburgh","latitude":55.95,"longitude":-3.22,"city":"Edinburgh","state":"U8","country":"gb","membershipMetadata":null,"memberships":{"count":663},"foundedDate":"2018-07-27T13:59:59+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29540437","name":"R-Ladies Stockholm","urlname":"rladies-stockholm","latitude":59.33,"longitude":18.07,"city":"Stockholm","state":"","country":"se","membershipMetadata":null,"memberships":{"count":394},"foundedDate":"2018-08-16T11:54:53+02:00","timezone":"Europe/Stockholm","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29734242","name":"R-Ladies Helsinki","urlname":"rladies-helsinki","latitude":60.17,"longitude":24.94,"city":"Helsinki","state":"","country":"fi","membershipMetadata":null,"memberships":{"count":414},"foundedDate":"2018-09-07T13:37:10+03:00","timezone":"Europe/Helsinki","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29783351","name":"R-Ladies Lancaster","urlname":"rladies-lancaster","latitude":54.05,"longitude":-2.8,"city":"Lancaster","state":"H2","country":"gb","membershipMetadata":null,"memberships":{"count":138},"foundedDate":"2018-09-12T11:37:04+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29851462","name":"R-Ladies Vienna","urlname":"rladies-vienna","latitude":48.22,"longitude":16.37,"city":"Vienna","state":"","country":"at","membershipMetadata":null,"memberships":{"count":373},"foundedDate":"2018-09-17T13:03:40+02:00","timezone":"Europe/Vienna","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29862217","name":"R-Ladies Toronto","urlname":"rladies-toronto","latitude":43.74,"longitude":-79.36,"city":"Toronto","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":659},"foundedDate":"2018-09-18T12:24:06-04:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30017254","name":"R-Ladies Kathmandu","urlname":"rladies-kathmandu","latitude":27.71,"longitude":85.31,"city":"Kathmandu","state":"","country":"np","membershipMetadata":null,"memberships":{"count":85},"foundedDate":"2018-10-01T13:03:26+05:45","timezone":"Asia/Kathmandu","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30339934","name":"R-Ladies Montpellier","urlname":"rladies-montpellier","latitude":43.61,"longitude":3.87,"city":"Montpellier","state":"","country":"fr","membershipMetadata":null,"memberships":{"count":149},"foundedDate":"2018-10-17T17:06:30+02:00","timezone":"Europe/Paris","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30655714","name":"R-Ladies Ottawa","urlname":"rladies-ottawa","latitude":45.45,"longitude":-75.69,"city":"Ottawa","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":227},"foundedDate":"2018-12-05T16:47:23-05:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"30680825","name":"R-Ladies Canberra","urlname":"rladies-canberra","latitude":-35.31,"longitude":149.13,"city":"Canberra","state":"","country":"au","membershipMetadata":null,"memberships":{"count":225},"foundedDate":"2018-12-09T23:26:52+11:00","timezone":"Australia/Sydney","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264536","name":"R-Ladies Frankfurt","urlname":"rladies-frankfurt","latitude":50.12,"longitude":8.68,"city":"Frankfurt","state":"","country":"de","membershipMetadata":null,"memberships":{"count":108},"foundedDate":"2019-02-27T00:09:42+01:00","timezone":"Europe/Berlin","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31457211","name":"R-Ladies Nelson","urlname":"rladies-nelson","latitude":-41.29,"longitude":173.24,"city":"Nelson","state":"","country":"nz","membershipMetadata":null,"memberships":{"count":23},"foundedDate":"2019-03-23T04:42:23+13:00","timezone":"Pacific/Auckland","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31577107","name":"R-Ladies Bogor","urlname":"rladies-bogor","latitude":-6.58,"longitude":106.79,"city":"Bogor","state":"","country":"id","membershipMetadata":null,"memberships":{"count":315},"foundedDate":"2019-04-07T08:18:02+07:00","timezone":"Asia/Jakarta","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31653398","name":"R-Ladies Lavras","urlname":"rladies-lavras","latitude":-21.25,"longitude":-45.01,"city":"Lavras","state":"","country":"br","membershipMetadata":null,"memberships":{"count":69},"foundedDate":"2019-04-16T12:08-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31653468","name":"R-Ladies Concepción","urlname":"rladies-concepcion","latitude":-36.83,"longitude":-73.05,"city":"Concepción","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":597},"foundedDate":"2019-04-16T12:16:39-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"R-Ladies Concepción","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32144791","name":"R-Ladies Utrecht","urlname":"rladies-utrecht","latitude":52.1,"longitude":5.11,"city":"Utrecht","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":282},"foundedDate":"2019-06-10T17:29+02:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32308998","name":"R-Ladies Denver","urlname":"rladies-denver","latitude":39.7,"longitude":-105.08,"city":"Denver","state":"CO","country":"us","membershipMetadata":null,"memberships":{"count":139},"foundedDate":"2019-07-02T19:29:28-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32478325","name":"R-Ladies Fayetteville","urlname":"rladies-fayetteville","latitude":36.05,"longitude":-94.14,"city":"Fayetteville","state":"AR","country":"us","membershipMetadata":null,"memberships":{"count":147},"foundedDate":"2019-07-26T20:00:32-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32604355","name":"R-Ladies Cuernavaca","urlname":"rladies-cuernavaca","latitude":18.92,"longitude":-99.25,"city":"Cuernavaca","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":912},"foundedDate":"2019-08-15T03:19:36-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32612004","name":"R-Ladies Lagos","urlname":"rladies-lagos","latitude":6.45,"longitude":3.47,"city":"Lagos","state":"","country":"ng","membershipMetadata":null,"memberships":{"count":518},"foundedDate":"2019-08-16T09:45:21+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32705558","name":"R-Ladies New Delhi","urlname":"rladies-new-delhi","latitude":28.67,"longitude":77.21,"city":"Delhi","state":"","country":"in","membershipMetadata":null,"memberships":{"count":371},"foundedDate":"2019-09-01T04:42:42+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32713369","name":"R-Ladies Recife","urlname":"rladies-recife","latitude":-8.08,"longitude":-34.92,"city":"Recife","state":"","country":"br","membershipMetadata":null,"memberships":{"count":152},"foundedDate":"2019-09-02T16:41:01-03:00","timezone":"America/Recife","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32783356","name":"R-Ladies Podgorica","urlname":"rladies-podgorica","latitude":42.47,"longitude":19.28,"city":"Podgorica","state":"","country":"me","membershipMetadata":null,"memberships":{"count":34},"foundedDate":"2019-09-18T15:17:41+02:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32964072","name":"R-Ladies Masqat","urlname":"rladies-masqat","latitude":23.61,"longitude":58.54,"city":"Muscat","state":"","country":"om","membershipMetadata":null,"memberships":{"count":209},"foundedDate":"2019-10-31T15:37:46+04:00","timezone":"Asia/Dubai","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33007398","name":"R-Ladies Eskisehir","urlname":"rladies-eskisehir","latitude":39.79,"longitude":30.52,"city":"Eskisehir","state":"","country":"tr","membershipMetadata":null,"memberships":{"count":228},"foundedDate":"2019-11-13T04:22:59+03:00","timezone":"Europe/Istanbul","joinMode":"APPROVAL","who":"R-Ladies Eskişehir","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041212","name":"R-Ladies Al-Khartum","urlname":"rladies-al-khartum","latitude":15.58,"longitude":32.52,"city":"al-Khartum","state":"","country":"sd","membershipMetadata":null,"memberships":{"count":67},"foundedDate":"2019-11-23T13:15:46+02:00","timezone":"Africa/Khartoum","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33061717","name":"R-Ladies New Orleans","urlname":"rladies-new-orleans","latitude":29.96,"longitude":-90.08,"city":"New Orleans","state":"LA","country":"us","membershipMetadata":null,"memberships":{"count":85},"foundedDate":"2019-11-30T11:55:10-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194871","name":"R-Ladies Galapagos Islands","urlname":"rladies-galapagos-islands","latitude":-0.74,"longitude":-90.32,"city":"Puerto Ayora","state":"","country":"ec","membershipMetadata":null,"memberships":{"count":470},"foundedDate":"2020-01-12T12:23:57-06:00","timezone":"Pacific/Galapagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194933","name":"R-Ladies Oxford","urlname":"rladies-oxford","latitude":51.76,"longitude":-1.26,"city":"Oxford","state":"K2","country":"gb","membershipMetadata":null,"memberships":{"count":39},"foundedDate":"2020-01-12T12:39:04Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33194964","name":"R-Ladies Monterrey","urlname":"rladies-monterrey","latitude":25.67,"longitude":-100.32,"city":"Monterrey","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":376},"foundedDate":"2020-01-12T12:47:12-06:00","timezone":"America/Monterrey","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409584","name":"R-Ladies Niš","urlname":"rladies-nis","latitude":43.33,"longitude":21.9,"city":"Niš","state":"","country":"rs","membershipMetadata":null,"memberships":{"count":13},"foundedDate":"2020-02-22T12:39:39+01:00","timezone":"Europe/Belgrade","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33683503","name":"R-Ladies Barranquilla","urlname":"rladies-barranquilla","latitude":11,"longitude":-74.82,"city":"Barranquilla","state":"","country":"co","membershipMetadata":null,"memberships":{"count":382},"foundedDate":"2020-05-02T11:07:29-05:00","timezone":"America/Bogota","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33683539","name":"R-Ladies Algiers","urlname":"rladies-algiers","latitude":36.77,"longitude":3.04,"city":"al-Jaza´ir","state":"","country":"dz","membershipMetadata":null,"memberships":{"count":308},"foundedDate":"2020-05-02T11:27:08+01:00","timezone":"Africa/Algiers","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33810889","name":"R-Ladies Fortaleza","urlname":"rladies-fortaleza","latitude":-3.78,"longitude":-38.59,"city":"Fortaleza","state":"","country":"br","membershipMetadata":null,"memberships":{"count":112},"foundedDate":"2020-06-09T01:22:58-03:00","timezone":"America/Fortaleza","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34086060","name":"R-Ladies Bangalore","urlname":"rladies-bangalore","latitude":12.97,"longitude":77.56,"city":"Bangalore","state":"","country":"in","membershipMetadata":null,"memberships":{"count":363},"foundedDate":"2020-08-12T00:45:48+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516308","name":"R Ladies Aarhus","urlname":"rladies-aarhus","latitude":56.16,"longitude":10.2,"city":"Aarhus","state":"","country":"dk","membershipMetadata":null,"memberships":{"count":46},"foundedDate":"2020-11-19T23:03:30+01:00","timezone":"Europe/Copenhagen","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34516330","name":"R-Ladies Jujuy","urlname":"rladies-jujuy","latitude":-24.19,"longitude":-65.3,"city":"Jujuy","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":154},"foundedDate":"2020-11-19T23:21:37-03:00","timezone":"America/Argentina/Jujuy","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34524973","name":"R-Ladies Kuala Lumpur","urlname":"rladies-kuala-lumpur","latitude":3.16,"longitude":101.71,"city":"Kuala Lumpur","state":"","country":"my","membershipMetadata":null,"memberships":{"count":33},"foundedDate":"2020-11-22T22:46:49+08:00","timezone":"Asia/Kuala_Lumpur","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36128390","name":"R-Ladies Oxford MS","urlname":"rladies-oxford-ms","latitude":34.35,"longitude":-89.52,"city":"Oxford","state":"MS","country":"us","membershipMetadata":null,"memberships":{"count":3},"foundedDate":"2022-01-30T12:51:07-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36128420","name":"R-Ladies Rome","urlname":"rladies-rome","latitude":41.9,"longitude":12.48,"city":"Roma","state":"RM","country":"it","membershipMetadata":null,"memberships":{"count":30},"foundedDate":"2022-01-30T13:04:32+01:00","timezone":"Europe/Rome","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506636","name":"R-Ladies San Cristóbal de las Casas","urlname":"rladies-sancristobal","latitude":16.75,"longitude":-92.63,"city":"San Cristóbal de las Casas","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":9},"foundedDate":"2022-08-05T17:44:25-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506652","name":"R-Ladies Louisville","urlname":"rladies-louisville-ky","latitude":38.25,"longitude":-85.78,"city":"Louisville","state":"KY","country":"us","membershipMetadata":null,"memberships":{"count":9},"foundedDate":"2022-08-05T17:55:33-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931513","name":"R-Ladies São Mateus","urlname":"rladies-sao-mateus","latitude":-18.73,"longitude":-39.86,"city":"São Mateus","state":"","country":"br","membershipMetadata":null,"memberships":{"count":12},"foundedDate":"2021-03-21T12:37:14-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34931654","name":"R-Ladies Darwin","urlname":"rladies-darwin","latitude":-12.46,"longitude":130.84,"city":"Darwin","state":"","country":"au","membershipMetadata":null,"memberships":{"count":24},"foundedDate":"2021-03-21T13:07:41+09:30","timezone":"Australia/Darwin","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897540","name":"R-Ladies Santo Domingo","urlname":"rladies-santo-domingo","latitude":18.48,"longitude":-69.91,"city":"Santo Domingo","state":"","country":"do","membershipMetadata":null,"memberships":{"count":46},"foundedDate":"2021-09-25T09:08:52-04:00","timezone":"America/Santo_Domingo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897790","name":"R-Ladies West Lafayette","urlname":"rladies-west-lafayette","latitude":40.5,"longitude":-86.97,"city":"West Lafayette","state":"IN","country":"us","membershipMetadata":null,"memberships":{"count":10},"foundedDate":"2021-09-25T11:30:59-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36155463","name":"R-Ladies Ciudad Obregón","urlname":"rladies-ciudad-obregon","latitude":27.49,"longitude":-109.94,"city":"Ciudad Obregón","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":4},"foundedDate":"2022-02-12T04:50:18-07:00","timezone":"America/Hermosillo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"19474893","name":"R-Ladies London","urlname":"rladies-london","latitude":51.52,"longitude":-0.1,"city":"London","state":"17","country":"gb","membershipMetadata":null,"memberships":{"count":1585},"foundedDate":"2016-01-31T11:36:33Z","timezone":"Europe/London","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20600376","name":"R-Ladies Columbus","urlname":"rladies-columbus","latitude":40.01,"longitude":-83.02,"city":"Columbus","state":"OH","country":"us","membershipMetadata":null,"memberships":{"count":952},"foundedDate":"2016-10-04T15:09:07-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21965959","name":"R-Ladies London, Ontario","urlname":"rladies-ldnont","latitude":43.01,"longitude":-81.18,"city":"London","state":"ON","country":"ca","membershipMetadata":null,"memberships":{"count":465},"foundedDate":"2017-01-17T08:04:19-05:00","timezone":"America/Toronto","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"22180445","name":"R-Ladies Austin","urlname":"rladies-austin","latitude":30.22,"longitude":-97.75,"city":"Austin","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":653},"foundedDate":"2017-01-31T11:20:17-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24820200","name":"R-Ladies CDMX","urlname":"rladies-cdmx","latitude":19.43,"longitude":-99.14,"city":"México City","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":2283},"foundedDate":"2017-07-03T23:36:23-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"Miembrxs","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"24848073","name":"R-Ladies Chicago","urlname":"rladies-chicago","latitude":41.88,"longitude":-87.62,"city":"Chicago","state":"IL","country":"us","membershipMetadata":null,"memberships":{"count":1350},"foundedDate":"2017-07-05T16:30:43-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"25039094","name":"R-Ladies Santiago","urlname":"rladies-scl","latitude":-33.46,"longitude":-70.64,"city":"Santiago","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":2503},"foundedDate":"2017-07-18T16:23:51-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"RLadies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26792997","name":"R-Ladies Rotterdam","urlname":"rladies-rotterdam","latitude":51.93,"longitude":4.48,"city":"Rotterdam","state":"","country":"nl","membershipMetadata":null,"memberships":{"count":503},"foundedDate":"2017-12-05T12:20:06+01:00","timezone":"Europe/Amsterdam","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27456719","name":"R-Ladies São Paulo","urlname":"rladies-sao-paulo","latitude":-23.53,"longitude":-46.63,"city":"São Paulo","state":"","country":"br","membershipMetadata":null,"memberships":{"count":1352},"foundedDate":"2018-02-10T16:43:06-02:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27651345","name":"R-Ladies Mendoza","urlname":"rladies-mendoza","latitude":-32.89,"longitude":-68.83,"city":"Mendoza","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":321},"foundedDate":"2018-02-26T00:26:29-03:00","timezone":"America/Argentina/Mendoza","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"27724373","name":"R-Ladies Dallas","urlname":"rladies-dallas","latitude":32.79,"longitude":-96.8,"city":"Dallas","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":757},"foundedDate":"2018-03-04T15:35-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28441250","name":"R-Ladies Bariloche","urlname":"rladies-bariloche","latitude":-41.14,"longitude":-71.32,"city":"San Carlos de Bariloche","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":478},"foundedDate":"2018-05-09T22:22:15-03:00","timezone":"America/Argentina/Cordoba","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28530966","name":"R-Ladies Valparaíso","urlname":"rladies-valparaiso","latitude":-33.04,"longitude":-71.64,"city":"Valparaíso","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":433},"foundedDate":"2018-05-18T15:02:36-04:00","timezone":"America/Santiago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"28753666","name":"R-Ladies Resistencia-Corrientes","urlname":"rladies-resistencia-corrientes","latitude":-27.49,"longitude":-58.81,"city":"Corrientes","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":206},"foundedDate":"2018-06-08T19:47:11-03:00","timezone":"America/Argentina/Cordoba","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":true,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"29929892","name":"R-Ladies Des Moines","urlname":"rladies-des-moines","latitude":41.6,"longitude":-93.63,"city":"Des Moines","state":"IA","country":"us","membershipMetadata":null,"memberships":{"count":28},"foundedDate":"2018-09-23T11:41:06-05:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31264653","name":"R-Ladies Bilbao","urlname":"rladies-bilbao","latitude":43.25,"longitude":-2.93,"city":"Bilbao","state":"","country":"es","membershipMetadata":null,"memberships":{"count":221},"foundedDate":"2019-02-27T00:37:09+01:00","timezone":"Europe/Madrid","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31577218","name":"R-Ladies Floripa","urlname":"rladies-florianopolis","latitude":-27.6,"longitude":-48.54,"city":"Florianópolis","state":"","country":"br","membershipMetadata":null,"memberships":{"count":455},"foundedDate":"2019-04-07T08:41:18-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"31679846","name":"R-Ladies El Paso","urlname":"rladies-el-paso","latitude":31.76,"longitude":-106.49,"city":"El Paso","state":"TX","country":"us","membershipMetadata":null,"memberships":{"count":72},"foundedDate":"2019-04-19T14:25:32-06:00","timezone":"America/Denver","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32327430","name":"R-Ladies Jakarta","urlname":"rladies-jakarta","latitude":-6.18,"longitude":106.83,"city":"Jakarta","state":"","country":"id","membershipMetadata":null,"memberships":{"count":581},"foundedDate":"2019-07-05T23:01:28+07:00","timezone":"Asia/Jakarta","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32426344","name":"R-Ladies Puebla","urlname":"rladies-puebla","latitude":19.05,"longitude":-98.22,"city":"Puebla","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":2416},"foundedDate":"2019-07-18T23:14:05-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32522592","name":"R-Ladies Riverside","urlname":"rladies-riverside","latitude":33.99,"longitude":-117.37,"city":"Riverside","state":"CA","country":"us","membershipMetadata":null,"memberships":{"count":486},"foundedDate":"2019-08-01T22:32:25-07:00","timezone":"America/Los_Angeles","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32611075","name":"R-Ladies Lexington Park","urlname":"rladies-lexington-park","latitude":38.27,"longitude":-76.46,"city":"Lexington Park","state":"MD","country":"us","membershipMetadata":null,"memberships":{"count":37},"foundedDate":"2019-08-16T05:43:24-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32823667","name":"R-Ladies Medellín","urlname":"rladies-medellin","latitude":6.25,"longitude":-75.59,"city":"Medellín","state":"","country":"co","membershipMetadata":null,"memberships":{"count":880},"foundedDate":"2019-09-28T13:21:45-05:00","timezone":"America/Bogota","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32826513","name":"R-Ladies Vitória","urlname":"rladies-vitoria","latitude":-20.31,"longitude":-40.31,"city":"Vitória","state":"","country":"br","membershipMetadata":null,"memberships":{"count":231},"foundedDate":"2019-09-29T10:26:02-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"32946570","name":"R-Ladies Bergen","urlname":"rladies-bergen","latitude":60.38,"longitude":5.34,"city":"Bergen","state":"","country":"no","membershipMetadata":null,"memberships":{"count":344},"foundedDate":"2019-10-28T13:46:46+01:00","timezone":"Europe/Oslo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33041359","name":"R-Ladies Mumbai","urlname":"rladies-mumbai","latitude":18.96,"longitude":72.82,"city":"Mumbai","state":"","country":"in","membershipMetadata":null,"memberships":{"count":124},"foundedDate":"2019-11-23T14:14:43+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33061635","name":"R-Ladies Syracuse","urlname":"rladies-syracuse","latitude":43.04,"longitude":-76.15,"city":"Syracuse","state":"NY","country":"us","membershipMetadata":null,"memberships":{"count":16},"foundedDate":"2019-11-30T11:09:20-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33106550","name":"R-Ladies Colombo","urlname":"rladies-colombo","latitude":6.93,"longitude":79.85,"city":"Colombo","state":"","country":"lk","membershipMetadata":null,"memberships":{"count":343},"foundedDate":"2019-12-15T08:30:12+05:30","timezone":"Asia/Colombo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33107363","name":"R-Ladies Mid-Mo","urlname":"rladies-mid-mo","latitude":38.9,"longitude":-92.25,"city":"Columbia","state":"MO","country":"us","membershipMetadata":null,"memberships":{"count":135},"foundedDate":"2019-12-15T14:50:22-06:00","timezone":"America/Chicago","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33166554","name":"R-Ladies Yaoundé","urlname":"rladies-yaounde","latitude":3.87,"longitude":11.52,"city":"Yaoundé","state":"","country":"cm","membershipMetadata":null,"memberships":{"count":76},"foundedDate":"2020-01-05T04:34:37+01:00","timezone":"Africa/Lagos","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33361775","name":"R-Ladies Ha Noi","urlname":"rladies-ha-noi","latitude":21.03,"longitude":105.84,"city":"Ha Noi","state":"","country":"vn","membershipMetadata":null,"memberships":{"count":73},"foundedDate":"2020-02-16T13:43:44+07:00","timezone":"Asia/Ho_Chi_Minh","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33409671","name":"R-Ladies Coventry","urlname":"rladies-coventry","latitude":52.42,"longitude":-1.5,"city":"Coventry","state":"43","country":"gb","membershipMetadata":null,"memberships":{"count":536},"foundedDate":"2020-02-22T12:51:34Z","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33704099","name":"R-Ladies Cusco","urlname":"rladies-cusco","latitude":-13.52,"longitude":-71.99,"city":"Cusco","state":"","country":"pe","membershipMetadata":null,"memberships":{"count":43},"foundedDate":"2020-05-09T14:06:11-05:00","timezone":"America/Lima","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33717562","name":"R-Ladies Talca","urlname":"rladies-talca","latitude":-35.42,"longitude":-71.66,"city":"Talca","state":"","country":"cl","membershipMetadata":null,"memberships":{"count":181},"foundedDate":"2020-05-14T03:37:36-04:00","timezone":"America/Santiago","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33719616","name":"R-Ladies Tunis","urlname":"rladies-tunis","latitude":36.84,"longitude":10.22,"city":"Tunis","state":"","country":"tn","membershipMetadata":null,"memberships":{"count":1067},"foundedDate":"2020-05-14T20:30:41+01:00","timezone":"Africa/Tunis","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33725126","name":"R-Ladies Ushuaia","urlname":"rladies-ushuaia","latitude":-54.79,"longitude":-68.31,"city":"Ushuaia","state":"","country":"ar","membershipMetadata":null,"memberships":{"count":31},"foundedDate":"2020-05-16T17:12:37-03:00","timezone":"America/Argentina/Buenos_Aires","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33801315","name":"R-Ladies Natal","urlname":"rladies-natal","latitude":-5.8,"longitude":-35.22,"city":"Natal","state":"","country":"br","membershipMetadata":null,"memberships":{"count":456},"foundedDate":"2020-06-06T23:24:46-03:00","timezone":"America/Fortaleza","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33825235","name":"R-Ladies Curitiba","urlname":"rladies-curitiba","latitude":-25.42,"longitude":-49.29,"city":"Curitiba","state":"","country":"br","membershipMetadata":null,"memberships":{"count":74},"foundedDate":"2020-06-12T12:14:56-03:00","timezone":"America/Sao_Paulo","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33880125","name":"R-Ladies Glasgow","urlname":"rladies-glasgow","latitude":55.86,"longitude":-4.24,"city":"Glasgow","state":"V2","country":"gb","membershipMetadata":null,"memberships":{"count":107},"foundedDate":"2020-06-24T01:49:21+01:00","timezone":"Europe/London","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"33917745","name":"R-Ladies Asunción","urlname":"rladies-asuncion","latitude":-25.3,"longitude":-57.63,"city":"Asunción","state":"","country":"py","membershipMetadata":null,"memberships":{"count":85},"foundedDate":"2020-07-03T00:12:17-04:00","timezone":"America/Asuncion","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"34099620","name":"R-Ladies Guadalajara","urlname":"rladies-guadalajara","latitude":20.67,"longitude":-103.35,"city":"Guadalajara","state":"","country":"mx","membershipMetadata":null,"memberships":{"count":1317},"foundedDate":"2020-08-14T22:10:44-05:00","timezone":"America/Mexico_City","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506211","name":"R-Ladies Accra","urlname":"rladies-accra","latitude":5.56,"longitude":-0.2,"city":"Accra","state":"","country":"gh","membershipMetadata":null,"memberships":{"count":26},"foundedDate":"2022-08-05T13:22:35Z","timezone":"Africa/Accra","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506244","name":"R-Ladies Cairo","urlname":"rladies-cairo","latitude":30.06,"longitude":31.25,"city":"Cairo","state":"","country":"eg","membershipMetadata":null,"memberships":{"count":7},"foundedDate":"2022-08-05T13:39:47+02:00","timezone":"Africa/Cairo","joinMode":"APPROVAL","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"36506535","name":"R-Ladies Fort Pierce","urlname":"rladies-fort-pierce","latitude":27.42,"longitude":-80.45,"city":"Fort Pierce","state":"FL","country":"us","membershipMetadata":null,"memberships":{"count":5},"foundedDate":"2022-08-05T16:35:54-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26276685","name":"R-Ladies Chennai","urlname":"rladies-chennai","latitude":13.09,"longitude":80.27,"city":"Chennai","state":"","country":"in","membershipMetadata":null,"memberships":{"count":617},"foundedDate":"2017-10-15T17:28:14+05:30","timezone":"Asia/Kolkata","joinMode":"OPEN","who":"Members","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"20346526","name":"R-Ladies New York","urlname":"rladies-newyork","latitude":40.75,"longitude":-73.99,"city":"New York","state":"NY","country":"us","membershipMetadata":null,"memberships":{"count":2828},"foundedDate":"2016-08-23T17:01-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"Rladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"21510971","name":"R-Ladies Washington D.C.","urlname":"rladies-dc","latitude":38.91,"longitude":-77.02,"city":"Washington","state":"DC","country":"us","membershipMetadata":null,"memberships":{"count":2623},"foundedDate":"2016-12-07T14:48:29-05:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"26229746","name":"R-Ladies Philly","urlname":"rladies-philly","latitude":40.12,"longitude":-75.01,"city":"Philadelphia","state":"PA","country":"us","membershipMetadata":null,"memberships":{"count":1994},"foundedDate":"2017-10-11T09:36:55-04:00","timezone":"America/New_York","joinMode":"OPEN","who":"R-Ladies","isPrivate":false,"category":{"id":"546","name":"Technology"}}}},{"node":{"result":{"id":"35897820","name":"R-Ladies Gaborone","urlname":"rladies-gaborone","latitude":-24.65,"longitude":25.91,"city":"Gaborone","state":"","country":"bw","membershipMetadata":null,"memberships":{"count":535},"foundedDate":"2021-09-25T11:42:27+02:00","timezone":"Africa/Maputo","joinMode":"OPEN","who":"R-Ladies Gaborone","isPrivate":false,"category":{"id":"546","name":"Technology"}}}}]}}} + recorded_at: 2022-09-29 18:31:34 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_event_attendees.yml b/tests/fixtures/get_event_attendees.yml index c6c92ff6..b8377b3d 100644 --- a/tests/fixtures/get_event_attendees.yml +++ b/tests/fixtures/get_event_attendees.yml @@ -4,11 +4,11 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query eventAttendee(\r\n $id: ID!,\r\n $first: Int = 1000,\r\n $cursor: - String\r\n ) {\r\n event(id: $id) {\r\n id\r\n title\r\n dateTime\r\n going\r\n tickets(input:{after: - $cursor, first: $first}) {\r\n pageInfo {\r\n hasNextPage\r\n endCursor\r\n }\r\n count\r\n edges - {\r\n # cursor\r\n node {\r\n user {\r\n id\r\n name\r\n bio\r\n memberUrl\r\n memberPhoto - {\r\n baseUrl\r\n }\r\n joinTime\r\n timezone\r\n organizedGroupCount\r\n \r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r","variables":{"id":"103349942"}}' + string: '{"query":"query eventAttendee(\n $id: ID!,\n $first: Int = 1000,\n $cursor: + String\n ) {\n event(id: $id) {\n id\n title\n dateTime\n going\n tickets(input:{after: + $cursor, first: $first}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n count\n edges + {\n # cursor\n node {\n user {\n id\n name\n bio\n memberUrl\n memberPhoto + {\n baseUrl\n }\n joinTime\n timezone\n organizedGroupCount\n \n }\n }\n }\n }\n }\n}","variables":{"id":"103349942"}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -21,22 +21,17 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '1772' content-type: application/json - x-amzn-requestid: 21593984-7c98-4531-b4ae-0db6116f76c1 content-encoding: gzip - x-amzn-remapped-content-length: '19327' - x-amz-apigw-id: QfDXaGwWoAMF6zA= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-6255e5c8-0e248cd1016aff4204ceb1e8;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Tue, 12 Apr 2022 20:49:13 GMT + date: Thu, 29 Sep 2022 18:31:36 GMT + content-length: '1840' body: encoding: UTF-8 file: no string: | - {"data":{"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","dateTime":"2013-02-18T18:30-05:00","going":97,"tickets":{"pageInfo":{"hasNextPage":false,"endCursor":"ODA4OTgzMTI="},"count":97,"edges":[{"node":{"user":{"id":"3445733!chp","name":"M Daniel A","bio":null,"memberUrl":"https://www.meetup.com/members/3445733","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"4048866!chp","name":"Anuj Agrawal","bio":null,"memberUrl":"https://www.meetup.com/members/4048866","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"5905096!chp","name":"nahumg","bio":null,"memberUrl":"https://www.meetup.com/members/5905096","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"6382386!chp","name":"Harnam Rai","bio":null,"memberUrl":"https://www.meetup.com/members/6382386","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"6844070!chp","name":"Sean Murphy","bio":null,"memberUrl":"https://www.meetup.com/members/6844070","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8232396!chp","name":"Jacqueline Judge","bio":null,"memberUrl":"https://www.meetup.com/members/8232396","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8769455!chp","name":"Peter Zhou","bio":null,"memberUrl":"https://www.meetup.com/members/8769455","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8783792!chp","name":"Aaron M","bio":null,"memberUrl":"https://www.meetup.com/members/8783792","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"9331310!chp","name":"Alex Marshall","bio":null,"memberUrl":"https://www.meetup.com/members/9331310","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"9815292!chp","name":"Zach wilson","bio":null,"memberUrl":"https://www.meetup.com/members/9815292","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"10632562!chp","name":"Erin Simpler Kellett","bio":null,"memberUrl":"https://www.meetup.com/members/10632562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"10948775!chp","name":"Sam","bio":null,"memberUrl":"https://www.meetup.com/members/10948775","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11314588!chp","name":"Charlie","bio":null,"memberUrl":"https://www.meetup.com/members/11314588","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11377032!chp","name":"David Anderson","bio":null,"memberUrl":"https://www.meetup.com/members/11377032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11902118!chp","name":"Bill Eger","bio":null,"memberUrl":"https://www.meetup.com/members/11902118","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12102297!chp","name":"Noah Lerman","bio":null,"memberUrl":"https://www.meetup.com/members/12102297","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12251810!chp","name":"Sean Moore Gonzalez","bio":null,"memberUrl":"https://www.meetup.com/members/12251810","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12330114!chp","name":"Steven","bio":null,"memberUrl":"https://www.meetup.com/members/12330114","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12467650!chp","name":"Crystal","bio":null,"memberUrl":"https://www.meetup.com/members/12467650","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13110017!chp","name":"Danish","bio":null,"memberUrl":"https://www.meetup.com/members/13110017","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13171628!chp","name":"Lauren Amos","bio":null,"memberUrl":"https://www.meetup.com/members/13171628","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13253387!chp","name":"Ben Sweezy","bio":null,"memberUrl":"https://www.meetup.com/members/13253387","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13342084!chp","name":"Krishna Adusumilli","bio":null,"memberUrl":"https://www.meetup.com/members/13342084","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13608555!chp","name":"Ben Scheich","bio":null,"memberUrl":"https://www.meetup.com/members/13608555","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13636931!chp","name":"sriram","bio":null,"memberUrl":"https://www.meetup.com/members/13636931","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13662335!chp","name":"Tony Ojeda","bio":null,"memberUrl":"https://www.meetup.com/members/13662335","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13761738!chp","name":"Justin Grimes","bio":null,"memberUrl":"https://www.meetup.com/members/13761738","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14234153!chp","name":"Regina Nuzzo","bio":null,"memberUrl":"https://www.meetup.com/members/14234153","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14239206!chp","name":"David James","bio":null,"memberUrl":"https://www.meetup.com/members/14239206","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14333157!chp","name":"Nick","bio":null,"memberUrl":"https://www.meetup.com/members/14333157","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14597193!chp","name":"Geoff Moes","bio":null,"memberUrl":"https://www.meetup.com/members/14597193","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"15756671!chp","name":"Cat Robinson","bio":null,"memberUrl":"https://www.meetup.com/members/15756671","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"16400601!chp","name":"Amine Rounak","bio":null,"memberUrl":"https://www.meetup.com/members/16400601","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"20422111!chp","name":"Margaret Rockwell","bio":null,"memberUrl":"https://www.meetup.com/members/20422111","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"21598201!chp","name":"Steve Touw","bio":null,"memberUrl":"https://www.meetup.com/members/21598201","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"21831441!chp","name":"Rob Shell","bio":null,"memberUrl":"https://www.meetup.com/members/21831441","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"23050501!chp","name":"Tony","bio":null,"memberUrl":"https://www.meetup.com/members/23050501","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"31965562!chp","name":"Venka Ashtakala","bio":null,"memberUrl":"https://www.meetup.com/members/31965562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"32713762!chp","name":"kenny","bio":null,"memberUrl":"https://www.meetup.com/members/32713762","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"33029962!chp","name":"Jess Smith","bio":null,"memberUrl":"https://www.meetup.com/members/33029962","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"35070132!chp","name":"Jim Dougan","bio":null,"memberUrl":"https://www.meetup.com/members/35070132","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"40314062!chp","name":"Rodney Cobb","bio":null,"memberUrl":"https://www.meetup.com/members/40314062","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"44279782!chp","name":"Matthew Mulbrandon","bio":null,"memberUrl":"https://www.meetup.com/members/44279782","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"46746352!chp","name":"Matthew Eierman","bio":null,"memberUrl":"https://www.meetup.com/members/46746352","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"49729562!chp","name":"Tore Opsahl","bio":null,"memberUrl":"https://www.meetup.com/members/49729562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"50019022!chp","name":"Maggie","bio":null,"memberUrl":"https://www.meetup.com/members/50019022","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"51351032!chp","name":"Sumeet Vij","bio":null,"memberUrl":"https://www.meetup.com/members/51351032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"52577392!chp","name":"biao yang","bio":null,"memberUrl":"https://www.meetup.com/members/52577392","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"55843142!chp","name":"Sid Mansur","bio":null,"memberUrl":"https://www.meetup.com/members/55843142","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"56082852!chp","name":"Mindy Kay Bricker","bio":null,"memberUrl":"https://www.meetup.com/members/56082852","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"61513472!chp","name":"Daniel Hudson","bio":null,"memberUrl":"https://www.meetup.com/members/61513472","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"62242162!chp","name":"David Asch","bio":null,"memberUrl":"https://www.meetup.com/members/62242162","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"64569972!chp","name":"James","bio":null,"memberUrl":"https://www.meetup.com/members/64569972","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65283632!chp","name":"Ramesh Chandra","bio":null,"memberUrl":"https://www.meetup.com/members/65283632","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65378112!chp","name":"Jonathan Taylor","bio":null,"memberUrl":"https://www.meetup.com/members/65378112","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65723282!chp","name":"Sidney Ainkorn","bio":null,"memberUrl":"https://www.meetup.com/members/65723282","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"69497032!chp","name":"Josh Hurd","bio":null,"memberUrl":"https://www.meetup.com/members/69497032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"70202782!chp","name":"GLE","bio":null,"memberUrl":"https://www.meetup.com/members/70202782","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"70383262!chp","name":"Dario Rivera","bio":null,"memberUrl":"https://www.meetup.com/members/70383262","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"71729902!chp","name":"Eric Aldrich","bio":null,"memberUrl":"https://www.meetup.com/members/71729902","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"72368142!chp","name":"ANJAN PURKAYASTHA","bio":null,"memberUrl":"https://www.meetup.com/members/72368142","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"74796082!chp","name":"Janalyn Carroll","bio":null,"memberUrl":"https://www.meetup.com/members/74796082","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"75215652!chp","name":"Alena Lagunina","bio":null,"memberUrl":"https://www.meetup.com/members/75215652","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"75695472!chp","name":"osama farrag","bio":null,"memberUrl":"https://www.meetup.com/members/75695472","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"77312912!chp","name":"Majid Al-Dosari","bio":null,"memberUrl":"https://www.meetup.com/members/77312912","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"77690722!chp","name":"Jeffrey Nuckols","bio":null,"memberUrl":"https://www.meetup.com/members/77690722","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"79419702!chp","name":"Kathleen Perez-Lopez","bio":null,"memberUrl":"https://www.meetup.com/members/79419702","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"79652172!chp","name":"M K","bio":null,"memberUrl":"https://www.meetup.com/members/79652172","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"80629862!chp","name":"Christian Rahn","bio":null,"memberUrl":"https://www.meetup.com/members/80629862","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"80898312!chp","name":"Maria Jividen","bio":null,"memberUrl":"https://www.meetup.com/members/80898312","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}}]}}}} - recorded_at: 2022-04-12 20:49:13 GMT + {"data":{"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","dateTime":"2013-02-18T18:30-05:00","going":97,"tickets":{"pageInfo":{"hasNextPage":false,"endCursor":"Njk1NzE1MDAyfDY0NTY5OTcyfC0="},"count":97,"edges":[{"node":{"user":{"id":"12251810","name":"Sean Moore Gonzalez","bio":null,"memberUrl":"https://www.meetup.com/members/12251810","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"6382386","name":"Harnam Rai","bio":null,"memberUrl":"https://www.meetup.com/members/6382386","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"70383262","name":"Dario Rivera","bio":null,"memberUrl":"https://www.meetup.com/members/70383262","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8783792","name":"Aaron M","bio":null,"memberUrl":"https://www.meetup.com/members/8783792","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"10948775","name":"Sam","bio":null,"memberUrl":"https://www.meetup.com/members/10948775","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"9331310","name":"Alex Marshall","bio":null,"memberUrl":"https://www.meetup.com/members/9331310","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13171628","name":"Lauren Amos","bio":null,"memberUrl":"https://www.meetup.com/members/13171628","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14333157","name":"Nick","bio":null,"memberUrl":"https://www.meetup.com/members/14333157","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"79419702","name":"Kathleen Perez-Lopez","bio":null,"memberUrl":"https://www.meetup.com/members/79419702","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"55843142","name":"Sid Mansur","bio":null,"memberUrl":"https://www.meetup.com/members/55843142","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14597193","name":"Geoff Moes","bio":null,"memberUrl":"https://www.meetup.com/members/14597193","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13662335","name":"Tony Ojeda","bio":null,"memberUrl":"https://www.meetup.com/members/13662335","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"9815292","name":"Zach wilson","bio":null,"memberUrl":"https://www.meetup.com/members/9815292","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"62242162","name":"David Asch","bio":null,"memberUrl":"https://www.meetup.com/members/62242162","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13110017","name":"Danish","bio":null,"memberUrl":"https://www.meetup.com/members/13110017","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"77312912","name":"Majid Al-Dosari","bio":null,"memberUrl":"https://www.meetup.com/members/77312912","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13342084","name":"Krishna Adusumilli","bio":null,"memberUrl":"https://www.meetup.com/members/13342084","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"20422111","name":"Margaret Rockwell","bio":null,"memberUrl":"https://www.meetup.com/members/20422111","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14234153","name":"Regina Nuzzo","bio":null,"memberUrl":"https://www.meetup.com/members/14234153","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13636931","name":"sriram","bio":null,"memberUrl":"https://www.meetup.com/members/13636931","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"61513472","name":"Daniel Hudson","bio":null,"memberUrl":"https://www.meetup.com/members/61513472","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"69497032","name":"Josh Hurd","bio":null,"memberUrl":"https://www.meetup.com/members/69497032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11314588","name":"Charlie","bio":null,"memberUrl":"https://www.meetup.com/members/11314588","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"46746352","name":"Matthew Eierman","bio":null,"memberUrl":"https://www.meetup.com/members/46746352","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8232396","name":"Jacqueline Judge","bio":null,"memberUrl":"https://www.meetup.com/members/8232396","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"21831441","name":"Rob Shell","bio":null,"memberUrl":"https://www.meetup.com/members/21831441","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"5905096","name":"nahumg","bio":null,"memberUrl":"https://www.meetup.com/members/5905096","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"35070132","name":"Jim Dougan","bio":null,"memberUrl":"https://www.meetup.com/members/35070132","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65378112","name":"Jonathan Taylor","bio":null,"memberUrl":"https://www.meetup.com/members/65378112","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"4048866","name":"Anuj Agrawal","bio":null,"memberUrl":"https://www.meetup.com/members/4048866","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13253387","name":"Ben Sweezy","bio":null,"memberUrl":"https://www.meetup.com/members/13253387","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12330114","name":"Steven","bio":null,"memberUrl":"https://www.meetup.com/members/12330114","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"21598201","name":"Steve Touw","bio":null,"memberUrl":"https://www.meetup.com/members/21598201","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"32713762","name":"kenny","bio":null,"memberUrl":"https://www.meetup.com/members/32713762","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"75215652","name":"Alena Lagunina","bio":null,"memberUrl":"https://www.meetup.com/members/75215652","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"77690722","name":"Jeffrey Nuckols","bio":null,"memberUrl":"https://www.meetup.com/members/77690722","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"74796082","name":"Janalyn Carroll","bio":null,"memberUrl":"https://www.meetup.com/members/74796082","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"6844070","name":"Sean Murphy","bio":null,"memberUrl":"https://www.meetup.com/members/6844070","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"44279782","name":"Matthew Mulbrandon","bio":null,"memberUrl":"https://www.meetup.com/members/44279782","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"8769455","name":"Peter Zhou","bio":null,"memberUrl":"https://www.meetup.com/members/8769455","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"50019022","name":"Maggie","bio":null,"memberUrl":"https://www.meetup.com/members/50019022","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"75695472","name":"osama farrag","bio":null,"memberUrl":"https://www.meetup.com/members/75695472","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13608555","name":"Ben Scheich","bio":null,"memberUrl":"https://www.meetup.com/members/13608555","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"10632562","name":"Erin Simpler Kellett","bio":null,"memberUrl":"https://www.meetup.com/members/10632562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"70202782","name":"GLE","bio":null,"memberUrl":"https://www.meetup.com/members/70202782","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"51351032","name":"Sumeet Vij","bio":null,"memberUrl":"https://www.meetup.com/members/51351032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"52577392","name":"biao yang","bio":null,"memberUrl":"https://www.meetup.com/members/52577392","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11377032","name":"David Anderson","bio":null,"memberUrl":"https://www.meetup.com/members/11377032","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"16400601","name":"Amine Rounak","bio":null,"memberUrl":"https://www.meetup.com/members/16400601","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"72368142","name":"ANJAN PURKAYASTHA","bio":null,"memberUrl":"https://www.meetup.com/members/72368142","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"14239206","name":"David James","bio":null,"memberUrl":"https://www.meetup.com/members/14239206","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"23050501","name":"Tony","bio":null,"memberUrl":"https://www.meetup.com/members/23050501","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"3445733","name":"M Daniel A","bio":null,"memberUrl":"https://www.meetup.com/members/3445733","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"79652172","name":"M K","bio":null,"memberUrl":"https://www.meetup.com/members/79652172","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"11902118","name":"Bill Eger","bio":null,"memberUrl":"https://www.meetup.com/members/11902118","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"56082852","name":"Mindy Kay Bricker","bio":null,"memberUrl":"https://www.meetup.com/members/56082852","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"31965562","name":"Venka Ashtakala","bio":null,"memberUrl":"https://www.meetup.com/members/31965562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65723282","name":"Sidney Ainkorn","bio":null,"memberUrl":"https://www.meetup.com/members/65723282","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"80629862","name":"Christian Rahn","bio":null,"memberUrl":"https://www.meetup.com/members/80629862","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"15756671","name":"Cat Robinson","bio":null,"memberUrl":"https://www.meetup.com/members/15756671","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12467650","name":"Crystal","bio":null,"memberUrl":"https://www.meetup.com/members/12467650","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"65283632","name":"Ramesh Chandra","bio":null,"memberUrl":"https://www.meetup.com/members/65283632","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"13761738","name":"Justin Grimes","bio":null,"memberUrl":"https://www.meetup.com/members/13761738","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"40314062","name":"Rodney Cobb","bio":null,"memberUrl":"https://www.meetup.com/members/40314062","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"71729902","name":"Eric Aldrich","bio":null,"memberUrl":"https://www.meetup.com/members/71729902","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"12102297","name":"Noah Lerman","bio":null,"memberUrl":"https://www.meetup.com/members/12102297","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"49729562","name":"Tore Opsahl","bio":null,"memberUrl":"https://www.meetup.com/members/49729562","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"80898312","name":"Maria Jividen","bio":null,"memberUrl":"https://www.meetup.com/members/80898312","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"33029962","name":"Jess Smith","bio":null,"memberUrl":"https://www.meetup.com/members/33029962","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}},{"node":{"user":{"id":"64569972","name":"James","bio":null,"memberUrl":"https://www.meetup.com/members/64569972","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"},"joinTime":null,"timezone":null,"organizedGroupCount":0}}}]}}}} + recorded_at: 2022-09-29 18:31:36 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_event_comments.yml b/tests/fixtures/get_event_comments.yml index 4cb2d594..fbeeb733 100644 --- a/tests/fixtures/get_event_comments.yml +++ b/tests/fixtures/get_event_comments.yml @@ -4,15 +4,13 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query eventComment(\r\n $id: ID!,\r\n #$first: Int = 1000,\r\n #$cursor: - String,\r\n $offset: Int = 0,\r\n $limit: Int = 1000\r\n ) {\r\n event(id: - $id) {\r\n # this is how comments would be paginated in the future. still - in dev\r\n #comments(input:{after: $cursor, first: $first}) {\r\n # pageInfo - {\r\n # hasNextPage\r\n # endCursor\r\n # }\r\n\r\n # offset - and limit still used for pagination here from the REST API schema\r\n comments(offset: - $offset, limit: $limit) {\r\n count\r\n edges {\r\n node - {\r\n id\r\n text\r\n created\r\n likeCount\r\n member - {\r\n id\r\n name\r\n }\r\n link\r\n \r\n }\r\n }\r\n }\r\n }\r\n}\r","variables":{"id":"103349942"}}' + string: '{"query":"query eventComment(\n $id: ID!,\n #$first: Int = 1000,\n #$cursor: + String,\n $offset: Int = 0,\n $limit: Int = 1000\n ) {\n event(id: $id) + {\n # this is how comments would be paginated in the future. still in dev\n #comments(input:{after: + $cursor, first: $first}) {\n # pageInfo {\n # hasNextPage\n # endCursor\n # }\n\n # + offset and limit still used for pagination here from the REST API schema\n comments(offset: + $offset, limit: $limit) {\n count\n edges {\n node {\n id\n text\n created\n likeCount\n member + {\n id\n name\n }\n link\n \n }\n }\n }\n }\n}","variables":{"id":"103349942"}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -25,22 +23,17 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '1604' content-type: application/json - x-amzn-requestid: f601c671-8d55-4005-ac17-37dc664f3d99 content-encoding: gzip - x-amzn-remapped-content-length: '4665' - x-amz-apigw-id: QfH1uGypoAMF_rw= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-6255ecf1-06c94cc179cad62a5608ee44;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Tue, 12 Apr 2022 21:19:45 GMT + date: Thu, 29 Sep 2022 18:31:37 GMT + content-length: '1602' body: encoding: UTF-8 file: no string: | - {"data":{"event":{"comments":{"count":13,"edges":[{"node":{"id":"26644762","text":"looking forward to it","created":"2013-02-12T21:39:21-05:00","likeCount":0,"member":{"id":"72368142","name":"ANJAN PURKAYASTHA"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/688837462/"}},{"node":{"id":"27392502","text":"Crap, I will be out of town. Next time!","created":"2013-02-14T20:57:18-05:00","likeCount":0,"member":{"id":"13672471","name":"Melinda"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/684088142/"}},{"node":{"id":"158559642","text":"can u change my status to yes, will attend?","created":"2013-02-17T18:10:26-05:00","likeCount":0,"member":{"id":"65283632","name":"Ramesh Chandra"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/158559642/"}},{"node":{"id":"158784322","text":"Ramesh, there should be a button (even when you are on the waitlist) that says \"change rsvp\" in the upper right. Once spots open up, you are allowed to click \"yes.\" Hope that helps. Looking forward to the meetup!","created":"2013-02-18T10:36:15-05:00","likeCount":0,"member":{"id":"15756671","name":"Cat Robinson"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/158784322/"}},{"node":{"id":"28633022","text":"Looking forward to it!","created":"2013-02-18T10:50:25-05:00","likeCount":0,"member":{"id":"80805462","name":"RD"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/695160132/"}},{"node":{"id":"158816612","text":"Since DC2 events have a probability of attendance, I have discarded the waitlist, however there is a maximum capacity of 85 we have to respect.\n\nLooking forward to tonight!","created":"2013-02-18T12:08:08-05:00","likeCount":0,"member":{"id":"12251810","name":"Sean Moore Gonzalez"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/158816612/"}},{"node":{"id":"28729522","text":"I'm stuck out of town and won't be able to make it tonight. Hopefully someone else can attend last minute. My apologies!","created":"2013-02-18T15:02:23-05:00","likeCount":0,"member":{"id":"70246722","name":"Stephanie"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/683192452/"}},{"node":{"id":"28769522","text":"Plus 1","created":"2013-02-18T16:40:57-05:00","likeCount":0,"member":{"id":"70202782","name":"GLE"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/688727032/"}},{"node":{"id":"159342022","text":"i would have preferred more focus on technical details such as data mgt and the tools that were used. in general, i would like all mtgs of DCDC to be more interactive since we're going to the trouble of attending. presentation-style mtgs could be done online.","created":"2013-02-19T20:28:39-05:00","likeCount":0,"member":{"id":"77312912","name":"Majid Al-Dosari"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/159342022/"}},{"node":{"id":"159396482","text":"Hello all, and thanks for making it out to the DVDC kickoff! As you know, we are having a competition for the design of a DVDC logo, so if you would like to feature you're work not only at DVDC but to all of Data Community DC, please don't hesitate to reach out.","created":"2013-02-19T23:22:09-05:00","likeCount":0,"member":{"id":"12251810","name":"Sean Moore Gonzalez"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/159396482/"}},{"node":{"id":"159481302","text":"good presenters, good group of people for networking","created":"2013-02-20T08:37:06-05:00","likeCount":1,"member":{"id":"77690722","name":"Jeffrey Nuckols"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/159481302/"}},{"node":{"id":"159488992","text":"I know some of you are requesting more tool info. I have a different request. I like to see a compendium of available data bases. Particularly Electric Grids, Tele-communication grids, Energy hubs etc. On top of it investment grids. If you put these in Map Story, you have a pwerful tool. May be we need a Breakout session on this. Are am I out of myt league here?","created":"2013-02-20T09:10:33-05:00","likeCount":0,"member":{"id":"65283632","name":"Ramesh Chandra"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/159488992/"}},{"node":{"id":"159703032","text":"Interesting topics and a great start to a new group.","created":"2013-02-20T19:43:27-05:00","likeCount":1,"member":{"id":"3004883","name":"John"},"link":"https://www.meetup.com/Data-Visualization-DC/events/103349942/comments/159703032/"}}]}}}} - recorded_at: 2022-04-12 21:19:45 GMT + {"data":{"event":{"comments":{"count":13,"edges":[{"node":{"id":"26644762","text":"looking forward to it","created":"2013-02-12T21:39:21-05:00","likeCount":0,"member":{"id":"72368142","name":"ANJAN PURKAYASTHA"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/688837462/"}},{"node":{"id":"27392502","text":"Crap, I will be out of town. Next time!","created":"2013-02-14T20:57:18-05:00","likeCount":0,"member":{"id":"13672471","name":"Melinda"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/684088142/"}},{"node":{"id":"158559642","text":"can u change my status to yes, will attend?","created":"2013-02-17T18:10:26-05:00","likeCount":0,"member":{"id":"65283632","name":"Ramesh Chandra"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/158559642/"}},{"node":{"id":"158784322","text":"Ramesh, there should be a button (even when you are on the waitlist) that says \"change rsvp\" in the upper right. Once spots open up, you are allowed to click \"yes.\" Hope that helps. Looking forward to the meetup!","created":"2013-02-18T10:36:15-05:00","likeCount":0,"member":{"id":"15756671","name":"Cat Robinson"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/158784322/"}},{"node":{"id":"28633022","text":"Looking forward to it!","created":"2013-02-18T10:50:25-05:00","likeCount":0,"member":{"id":"80805462","name":"RD"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/695160132/"}},{"node":{"id":"158816612","text":"Since DC2 events have a probability of attendance, I have discarded the waitlist, however there is a maximum capacity of 85 we have to respect.\n\nLooking forward to tonight!","created":"2013-02-18T12:08:08-05:00","likeCount":0,"member":{"id":"12251810","name":"Sean Moore Gonzalez"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/158816612/"}},{"node":{"id":"28729522","text":"I'm stuck out of town and won't be able to make it tonight. Hopefully someone else can attend last minute. My apologies!","created":"2013-02-18T15:02:23-05:00","likeCount":0,"member":{"id":"70246722","name":"Stephanie"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/683192452/"}},{"node":{"id":"28769522","text":"Plus 1","created":"2013-02-18T16:40:57-05:00","likeCount":0,"member":{"id":"70202782","name":"GLE"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/688727032/"}},{"node":{"id":"159342022","text":"i would have preferred more focus on technical details such as data mgt and the tools that were used. in general, i would like all mtgs of DCDC to be more interactive since we're going to the trouble of attending. presentation-style mtgs could be done online.","created":"2013-02-19T20:28:39-05:00","likeCount":0,"member":{"id":"77312912","name":"Majid Al-Dosari"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/159342022/"}},{"node":{"id":"159396482","text":"Hello all, and thanks for making it out to the DVDC kickoff! As you know, we are having a competition for the design of a DVDC logo, so if you would like to feature you're work not only at DVDC but to all of Data Community DC, please don't hesitate to reach out.","created":"2013-02-19T23:22:09-05:00","likeCount":0,"member":{"id":"12251810","name":"Sean Moore Gonzalez"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/159396482/"}},{"node":{"id":"159481302","text":"good presenters, good group of people for networking","created":"2013-02-20T08:37:06-05:00","likeCount":1,"member":{"id":"77690722","name":"Jeffrey Nuckols"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/159481302/"}},{"node":{"id":"159488992","text":"I know some of you are requesting more tool info. I have a different request. I like to see a compendium of available data bases. Particularly Electric Grids, Tele-communication grids, Energy hubs etc. On top of it investment grids. If you put these in Map Story, you have a pwerful tool. May be we need a Breakout session on this. Are am I out of myt league here?","created":"2013-02-20T09:10:33-05:00","likeCount":0,"member":{"id":"65283632","name":"Ramesh Chandra"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/159488992/"}},{"node":{"id":"159703032","text":"Interesting topics and a great start to a new group.","created":"2013-02-20T19:43:27-05:00","likeCount":1,"member":{"id":"3004883","name":"John"},"link":"https://www.meetup.com/data-visualization-dc/events/103349942/comments/159703032/"}}]}}}} + recorded_at: 2022-09-29 18:31:37 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_event_rspvs.yml b/tests/fixtures/get_event_rspvs.yml index a44e08b9..c67d38b4 100644 --- a/tests/fixtures/get_event_rspvs.yml +++ b/tests/fixtures/get_event_rspvs.yml @@ -4,11 +4,11 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query eventRSVPs(\r\n $id: ID!,\r\n $first: Int = 1000,\r\n $cursor: - String\r\n ) {\r\n event(id: $id) {\r\n id\r\n title\r\n dateTime\r\n going\r\n tickets(input:{after: - $cursor, first: $first}) {\r\n pageInfo {\r\n hasNextPage\r\n endCursor\r\n }\r\n count\r\n edges - {\r\n # cursor\r\n node {\r\n user {\r\n id\r\n name\r\n memberUrl\r\n }\r\n isHost\r\n status\r\n guestsCount\r\n event - {\r\n id\r\n title\r\n eventUrl\r\n }\r\n createdAt\r\n updatedAt\r\n \r\n }\r\n }\r\n }\r\n }\r\n}\r","variables":{"id":"103349942"}}' + string: '{"query":"query eventRSVPs(\n $id: ID!,\n $first: Int = 1000,\n $cursor: + String\n ) {\n event(id: $id) {\n id\n title\n dateTime\n going\n tickets(input:{after: + $cursor, first: $first}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n count\n edges + {\n # cursor\n node {\n user {\n id\n name\n memberUrl\n }\n isHost\n status\n guestsCount\n event + {\n id\n title\n eventUrl\n }\n createdAt\n updatedAt\n \n }\n }\n }\n }\n}","variables":{"id":"103349942"}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -21,22 +21,17 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '2381' content-type: application/json - x-amzn-requestid: bc7329bb-731b-455a-8e36-b60ee0f27871 content-encoding: gzip - x-amzn-remapped-content-length: '28776' - x-amz-apigw-id: QfQsmHpFoAMF8yA= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-6255fb1d-701c94c313dd1d0c4de663b9;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Tue, 12 Apr 2022 22:20:13 GMT + date: Thu, 29 Sep 2022 18:31:38 GMT + content-length: '2383' body: encoding: UTF-8 file: no string: | - {"data":{"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","dateTime":"2013-02-18T18:30-05:00","going":97,"tickets":{"pageInfo":{"hasNextPage":false,"endCursor":"ODA4OTgzMTI="},"count":97,"edges":[{"node":{"user":{"id":"3445733!chp","name":"M Daniel A","memberUrl":"https://www.meetup.com/members/3445733"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.439Z[UTC]","updatedAt":"2013-02-18T00:01:57-05:00[US/Eastern]"}},{"node":{"user":{"id":"4048866!chp","name":"Anuj Agrawal","memberUrl":"https://www.meetup.com/members/4048866"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T19:37:54-05:00[US/Eastern]"}},{"node":{"user":{"id":"5905096!chp","name":"nahumg","memberUrl":"https://www.meetup.com/members/5905096"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T17:08:58-05:00[US/Eastern]"}},{"node":{"user":{"id":"6382386!chp","name":"Harnam Rai","memberUrl":"https://www.meetup.com/members/6382386"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T08:49:00-05:00[US/Eastern]"}},{"node":{"user":{"id":"6844070!chp","name":"Sean Murphy","memberUrl":"https://www.meetup.com/members/6844070"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-10T15:07:45-05:00[US/Eastern]"}},{"node":{"user":{"id":"8232396!chp","name":"Jacqueline Judge","memberUrl":"https://www.meetup.com/members/8232396"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T16:11:28-05:00[US/Eastern]"}},{"node":{"user":{"id":"8769455!chp","name":"Peter Zhou","memberUrl":"https://www.meetup.com/members/8769455"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-11T12:41:40-05:00[US/Eastern]"}},{"node":{"user":{"id":"8783792!chp","name":"Aaron M","memberUrl":"https://www.meetup.com/members/8783792"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T08:57:14-05:00[US/Eastern]"}},{"node":{"user":{"id":"9331310!chp","name":"Alex Marshall","memberUrl":"https://www.meetup.com/members/9331310"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T09:04:59-05:00[US/Eastern]"}},{"node":{"user":{"id":"9815292!chp","name":"Zach wilson","memberUrl":"https://www.meetup.com/members/9815292"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T09:55:35-05:00[US/Eastern]"}},{"node":{"user":{"id":"10632562!chp","name":"Erin Simpler Kellett","memberUrl":"https://www.meetup.com/members/10632562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-12T11:28:18-05:00[US/Eastern]"}},{"node":{"user":{"id":"10948775!chp","name":"Sam","memberUrl":"https://www.meetup.com/members/10948775"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T08:59:19-05:00[US/Eastern]"}},{"node":{"user":{"id":"11314588!chp","name":"Charlie","memberUrl":"https://www.meetup.com/members/11314588"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T15:23:48-05:00[US/Eastern]"}},{"node":{"user":{"id":"11377032!chp","name":"David Anderson","memberUrl":"https://www.meetup.com/members/11377032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-12T20:09:51-05:00[US/Eastern]"}},{"node":{"user":{"id":"11902118!chp","name":"Bill Eger","memberUrl":"https://www.meetup.com/members/11902118"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-17T23:04:20-05:00[US/Eastern]"}},{"node":{"user":{"id":"12102297!chp","name":"Noah Lerman","memberUrl":"https://www.meetup.com/members/12102297"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-18T11:16:38-05:00[US/Eastern]"}},{"node":{"user":{"id":"12251810!chp","name":"Sean Moore Gonzalez","memberUrl":"https://www.meetup.com/members/12251810"},"isHost":true,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T08:43:13-05:00[US/Eastern]"}},{"node":{"user":{"id":"12330114!chp","name":"Steven","memberUrl":"https://www.meetup.com/members/12330114"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T21:14:50-05:00[US/Eastern]"}},{"node":{"user":{"id":"12467650!chp","name":"Crystal","memberUrl":"https://www.meetup.com/members/12467650"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-18T00:02:07-05:00[US/Eastern]"}},{"node":{"user":{"id":"13110017!chp","name":"Danish","memberUrl":"https://www.meetup.com/members/13110017"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T10:16:45-05:00[US/Eastern]"}},{"node":{"user":{"id":"13171628!chp","name":"Lauren Amos","memberUrl":"https://www.meetup.com/members/13171628"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T09:09:17-05:00[US/Eastern]"}},{"node":{"user":{"id":"13253387!chp","name":"Ben Sweezy","memberUrl":"https://www.meetup.com/members/13253387"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T20:32:30-05:00[US/Eastern]"}},{"node":{"user":{"id":"13342084!chp","name":"Krishna Adusumilli","memberUrl":"https://www.meetup.com/members/13342084"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T10:39:53-05:00[US/Eastern]"}},{"node":{"user":{"id":"13608555!chp","name":"Ben Scheich","memberUrl":"https://www.meetup.com/members/13608555"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-11T22:31:58-05:00[US/Eastern]"}},{"node":{"user":{"id":"13636931!chp","name":"sriram","memberUrl":"https://www.meetup.com/members/13636931"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T12:17:18-05:00[US/Eastern]"}},{"node":{"user":{"id":"13662335!chp","name":"Tony Ojeda","memberUrl":"https://www.meetup.com/members/13662335"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.440Z[UTC]","updatedAt":"2013-02-08T09:39:14-05:00[US/Eastern]"}},{"node":{"user":{"id":"13761738!chp","name":"Justin Grimes","memberUrl":"https://www.meetup.com/members/13761738"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:02:16-05:00[US/Eastern]"}},{"node":{"user":{"id":"14234153!chp","name":"Regina Nuzzo","memberUrl":"https://www.meetup.com/members/14234153"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T11:36:01-05:00[US/Eastern]"}},{"node":{"user":{"id":"14239206!chp","name":"David James","memberUrl":"https://www.meetup.com/members/14239206"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:01:48-05:00[US/Eastern]"}},{"node":{"user":{"id":"14333157!chp","name":"Nick","memberUrl":"https://www.meetup.com/members/14333157"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T09:10:36-05:00[US/Eastern]"}},{"node":{"user":{"id":"14597193!chp","name":"Geoff Moes","memberUrl":"https://www.meetup.com/members/14597193"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T09:33:45-05:00[US/Eastern]"}},{"node":{"user":{"id":"15756671!chp","name":"Cat Robinson","memberUrl":"https://www.meetup.com/members/15756671"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-17T16:32:06-05:00[US/Eastern]"}},{"node":{"user":{"id":"16400601!chp","name":"Amine Rounak","memberUrl":"https://www.meetup.com/members/16400601"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:01:30-05:00[US/Eastern]"}},{"node":{"user":{"id":"20422111!chp","name":"Margaret Rockwell","memberUrl":"https://www.meetup.com/members/20422111"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T11:30:54-05:00[US/Eastern]"}},{"node":{"user":{"id":"21598201!chp","name":"Steve Touw","memberUrl":"https://www.meetup.com/members/21598201"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T22:54:15-05:00[US/Eastern]"}},{"node":{"user":{"id":"21831441!chp","name":"Rob Shell","memberUrl":"https://www.meetup.com/members/21831441"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T16:14:24-05:00[US/Eastern]"}},{"node":{"user":{"id":"23050501!chp","name":"Tony","memberUrl":"https://www.meetup.com/members/23050501"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:01:56-05:00[US/Eastern]"}},{"node":{"user":{"id":"31965562!chp","name":"Venka Ashtakala","memberUrl":"https://www.meetup.com/members/31965562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:02:00-05:00[US/Eastern]"}},{"node":{"user":{"id":"32713762!chp","name":"kenny","memberUrl":"https://www.meetup.com/members/32713762"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-09T11:30:32-05:00[US/Eastern]"}},{"node":{"user":{"id":"33029962!chp","name":"Jess Smith","memberUrl":"https://www.meetup.com/members/33029962"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T15:40:54-05:00[US/Eastern]"}},{"node":{"user":{"id":"35070132!chp","name":"Jim Dougan","memberUrl":"https://www.meetup.com/members/35070132"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T18:06:13-05:00[US/Eastern]"}},{"node":{"user":{"id":"40314062!chp","name":"Rodney Cobb","memberUrl":"https://www.meetup.com/members/40314062"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T08:32:42-05:00[US/Eastern]"}},{"node":{"user":{"id":"44279782!chp","name":"Matthew Mulbrandon","memberUrl":"https://www.meetup.com/members/44279782"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-11T00:55:37-05:00[US/Eastern]"}},{"node":{"user":{"id":"46746352!chp","name":"Matthew Eierman","memberUrl":"https://www.meetup.com/members/46746352"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T15:29:07-05:00[US/Eastern]"}},{"node":{"user":{"id":"49729562!chp","name":"Tore Opsahl","memberUrl":"https://www.meetup.com/members/49729562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T12:49:31-05:00[US/Eastern]"}},{"node":{"user":{"id":"50019022!chp","name":"Maggie","memberUrl":"https://www.meetup.com/members/50019022"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-11T12:43:48-05:00[US/Eastern]"}},{"node":{"user":{"id":"51351032!chp","name":"Sumeet Vij","memberUrl":"https://www.meetup.com/members/51351032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-12T20:08:20-05:00[US/Eastern]"}},{"node":{"user":{"id":"52577392!chp","name":"biao yang","memberUrl":"https://www.meetup.com/members/52577392"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-12T20:09:46-05:00[US/Eastern]"}},{"node":{"user":{"id":"55843142!chp","name":"Sid Mansur","memberUrl":"https://www.meetup.com/members/55843142"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T09:26:38-05:00[US/Eastern]"}},{"node":{"user":{"id":"56082852!chp","name":"Mindy Kay Bricker","memberUrl":"https://www.meetup.com/members/56082852"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T00:02:17-05:00[US/Eastern]"}},{"node":{"user":{"id":"61513472!chp","name":"Daniel Hudson","memberUrl":"https://www.meetup.com/members/61513472"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T12:35:10-05:00[US/Eastern]"}},{"node":{"user":{"id":"62242162!chp","name":"David Asch","memberUrl":"https://www.meetup.com/members/62242162"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-08T10:07:06-05:00[US/Eastern]"}},{"node":{"user":{"id":"64569972!chp","name":"James","memberUrl":"https://www.meetup.com/members/64569972"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.441Z[UTC]","updatedAt":"2013-02-18T17:09:29-05:00[US/Eastern]"}},{"node":{"user":{"id":"65283632!chp","name":"Ramesh Chandra","memberUrl":"https://www.meetup.com/members/65283632"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T00:02:12-05:00[US/Eastern]"}},{"node":{"user":{"id":"65378112!chp","name":"Jonathan Taylor","memberUrl":"https://www.meetup.com/members/65378112"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-08T19:30:19-05:00[US/Eastern]"}},{"node":{"user":{"id":"65723282!chp","name":"Sidney Ainkorn","memberUrl":"https://www.meetup.com/members/65723282"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T00:02:06-05:00[US/Eastern]"}},{"node":{"user":{"id":"69497032!chp","name":"Josh Hurd","memberUrl":"https://www.meetup.com/members/69497032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-08T13:50:12-05:00[US/Eastern]"}},{"node":{"user":{"id":"70202782!chp","name":"GLE","memberUrl":"https://www.meetup.com/members/70202782"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T16:40:56-05:00[US/Eastern]"}},{"node":{"user":{"id":"70383262!chp","name":"Dario Rivera","memberUrl":"https://www.meetup.com/members/70383262"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-08T08:54:22-05:00[US/Eastern]"}},{"node":{"user":{"id":"71729902!chp","name":"Eric Aldrich","memberUrl":"https://www.meetup.com/members/71729902"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T09:50:15-05:00[US/Eastern]"}},{"node":{"user":{"id":"72368142!chp","name":"ANJAN PURKAYASTHA","memberUrl":"https://www.meetup.com/members/72368142"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T00:01:34-05:00[US/Eastern]"}},{"node":{"user":{"id":"74796082!chp","name":"Janalyn Carroll","memberUrl":"https://www.meetup.com/members/74796082"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-09T21:59:59-05:00[US/Eastern]"}},{"node":{"user":{"id":"75215652!chp","name":"Alena Lagunina","memberUrl":"https://www.meetup.com/members/75215652"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-09T16:09:47-05:00[US/Eastern]"}},{"node":{"user":{"id":"75695472!chp","name":"osama farrag","memberUrl":"https://www.meetup.com/members/75695472"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-11T13:15:10-05:00[US/Eastern]"}},{"node":{"user":{"id":"77312912!chp","name":"Majid Al-Dosari","memberUrl":"https://www.meetup.com/members/77312912"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-08T10:22:27-05:00[US/Eastern]"}},{"node":{"user":{"id":"77690722!chp","name":"Jeffrey Nuckols","memberUrl":"https://www.meetup.com/members/77690722"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-09T17:07:21-05:00[US/Eastern]"}},{"node":{"user":{"id":"79419702!chp","name":"Kathleen Perez-Lopez","memberUrl":"https://www.meetup.com/members/79419702"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-08T09:21:23-05:00[US/Eastern]"}},{"node":{"user":{"id":"79652172!chp","name":"M K","memberUrl":"https://www.meetup.com/members/79652172"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T00:01:58-05:00[US/Eastern]"}},{"node":{"user":{"id":"80629862!chp","name":"Christian Rahn","memberUrl":"https://www.meetup.com/members/80629862"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T00:02:13-05:00[US/Eastern]"}},{"node":{"user":{"id":"80898312!chp","name":"Maria Jividen","memberUrl":"https://www.meetup.com/members/80898312"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942!chp","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/Data-Visualization-DC/events/103349942"},"createdAt":"2022-04-12T22:20:13.442Z[UTC]","updatedAt":"2013-02-18T15:00:27-05:00[US/Eastern]"}}]}}}} - recorded_at: 2022-04-12 22:20:13 GMT + {"data":{"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","dateTime":"2013-02-18T18:30-05:00","going":97,"tickets":{"pageInfo":{"hasNextPage":false,"endCursor":"Njk1NzE1MDAyfDY0NTY5OTcyfC0="},"count":97,"edges":[{"node":{"user":{"id":"12251810","name":"Sean Moore Gonzalez","memberUrl":"https://www.meetup.com/members/12251810"},"isHost":true,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T08:43:13-05:00"}},{"node":{"user":{"id":"6382386","name":"Harnam Rai","memberUrl":"https://www.meetup.com/members/6382386"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T08:49:00-05:00"}},{"node":{"user":{"id":"70383262","name":"Dario Rivera","memberUrl":"https://www.meetup.com/members/70383262"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T08:54:22-05:00"}},{"node":{"user":{"id":"8783792","name":"Aaron M","memberUrl":"https://www.meetup.com/members/8783792"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T08:57:14-05:00"}},{"node":{"user":{"id":"10948775","name":"Sam","memberUrl":"https://www.meetup.com/members/10948775"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T08:59:19-05:00"}},{"node":{"user":{"id":"9331310","name":"Alex Marshall","memberUrl":"https://www.meetup.com/members/9331310"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:04:59-05:00"}},{"node":{"user":{"id":"13171628","name":"Lauren Amos","memberUrl":"https://www.meetup.com/members/13171628"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:09:17-05:00"}},{"node":{"user":{"id":"14333157","name":"Nick","memberUrl":"https://www.meetup.com/members/14333157"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:10:36-05:00"}},{"node":{"user":{"id":"79419702","name":"Kathleen Perez-Lopez","memberUrl":"https://www.meetup.com/members/79419702"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:21:23-05:00"}},{"node":{"user":{"id":"55843142","name":"Sid Mansur","memberUrl":"https://www.meetup.com/members/55843142"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:26:38-05:00"}},{"node":{"user":{"id":"14597193","name":"Geoff Moes","memberUrl":"https://www.meetup.com/members/14597193"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:33:45-05:00"}},{"node":{"user":{"id":"13662335","name":"Tony Ojeda","memberUrl":"https://www.meetup.com/members/13662335"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:39:14-05:00"}},{"node":{"user":{"id":"9815292","name":"Zach wilson","memberUrl":"https://www.meetup.com/members/9815292"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T09:55:35-05:00"}},{"node":{"user":{"id":"62242162","name":"David Asch","memberUrl":"https://www.meetup.com/members/62242162"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T10:07:06-05:00"}},{"node":{"user":{"id":"13110017","name":"Danish","memberUrl":"https://www.meetup.com/members/13110017"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T10:16:45-05:00"}},{"node":{"user":{"id":"77312912","name":"Majid Al-Dosari","memberUrl":"https://www.meetup.com/members/77312912"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T10:22:27-05:00"}},{"node":{"user":{"id":"13342084","name":"Krishna Adusumilli","memberUrl":"https://www.meetup.com/members/13342084"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T10:39:53-05:00"}},{"node":{"user":{"id":"20422111","name":"Margaret Rockwell","memberUrl":"https://www.meetup.com/members/20422111"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T11:30:54-05:00"}},{"node":{"user":{"id":"14234153","name":"Regina Nuzzo","memberUrl":"https://www.meetup.com/members/14234153"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T11:36:01-05:00"}},{"node":{"user":{"id":"13636931","name":"sriram","memberUrl":"https://www.meetup.com/members/13636931"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T12:17:18-05:00"}},{"node":{"user":{"id":"61513472","name":"Daniel Hudson","memberUrl":"https://www.meetup.com/members/61513472"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T12:35:10-05:00"}},{"node":{"user":{"id":"69497032","name":"Josh Hurd","memberUrl":"https://www.meetup.com/members/69497032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T13:50:12-05:00"}},{"node":{"user":{"id":"11314588","name":"Charlie","memberUrl":"https://www.meetup.com/members/11314588"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T15:23:48-05:00"}},{"node":{"user":{"id":"46746352","name":"Matthew Eierman","memberUrl":"https://www.meetup.com/members/46746352"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T15:29:07-05:00"}},{"node":{"user":{"id":"8232396","name":"Jacqueline Judge","memberUrl":"https://www.meetup.com/members/8232396"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.922Z[UTC]","updatedAt":"2013-02-08T16:11:28-05:00"}},{"node":{"user":{"id":"21831441","name":"Rob Shell","memberUrl":"https://www.meetup.com/members/21831441"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T16:14:24-05:00"}},{"node":{"user":{"id":"5905096","name":"nahumg","memberUrl":"https://www.meetup.com/members/5905096"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T17:08:58-05:00"}},{"node":{"user":{"id":"35070132","name":"Jim Dougan","memberUrl":"https://www.meetup.com/members/35070132"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T18:06:13-05:00"}},{"node":{"user":{"id":"65378112","name":"Jonathan Taylor","memberUrl":"https://www.meetup.com/members/65378112"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T19:30:19-05:00"}},{"node":{"user":{"id":"4048866","name":"Anuj Agrawal","memberUrl":"https://www.meetup.com/members/4048866"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T19:37:54-05:00"}},{"node":{"user":{"id":"13253387","name":"Ben Sweezy","memberUrl":"https://www.meetup.com/members/13253387"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T20:32:30-05:00"}},{"node":{"user":{"id":"12330114","name":"Steven","memberUrl":"https://www.meetup.com/members/12330114"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T21:14:50-05:00"}},{"node":{"user":{"id":"21598201","name":"Steve Touw","memberUrl":"https://www.meetup.com/members/21598201"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-08T22:54:15-05:00"}},{"node":{"user":{"id":"32713762","name":"kenny","memberUrl":"https://www.meetup.com/members/32713762"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-09T11:30:32-05:00"}},{"node":{"user":{"id":"75215652","name":"Alena Lagunina","memberUrl":"https://www.meetup.com/members/75215652"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-09T16:09:47-05:00"}},{"node":{"user":{"id":"77690722","name":"Jeffrey Nuckols","memberUrl":"https://www.meetup.com/members/77690722"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-09T17:07:21-05:00"}},{"node":{"user":{"id":"74796082","name":"Janalyn Carroll","memberUrl":"https://www.meetup.com/members/74796082"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-09T21:59:59-05:00"}},{"node":{"user":{"id":"6844070","name":"Sean Murphy","memberUrl":"https://www.meetup.com/members/6844070"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-10T15:07:45-05:00"}},{"node":{"user":{"id":"44279782","name":"Matthew Mulbrandon","memberUrl":"https://www.meetup.com/members/44279782"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-11T00:55:37-05:00"}},{"node":{"user":{"id":"8769455","name":"Peter Zhou","memberUrl":"https://www.meetup.com/members/8769455"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-11T12:41:40-05:00"}},{"node":{"user":{"id":"50019022","name":"Maggie","memberUrl":"https://www.meetup.com/members/50019022"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-11T12:43:48-05:00"}},{"node":{"user":{"id":"75695472","name":"osama farrag","memberUrl":"https://www.meetup.com/members/75695472"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-11T13:15:10-05:00"}},{"node":{"user":{"id":"13608555","name":"Ben Scheich","memberUrl":"https://www.meetup.com/members/13608555"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-11T22:31:58-05:00"}},{"node":{"user":{"id":"10632562","name":"Erin Simpler Kellett","memberUrl":"https://www.meetup.com/members/10632562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-12T11:28:18-05:00"}},{"node":{"user":{"id":"70202782","name":"GLE","memberUrl":"https://www.meetup.com/members/70202782"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-18T16:40:56-05:00"}},{"node":{"user":{"id":"51351032","name":"Sumeet Vij","memberUrl":"https://www.meetup.com/members/51351032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-12T20:08:20-05:00"}},{"node":{"user":{"id":"52577392","name":"biao yang","memberUrl":"https://www.meetup.com/members/52577392"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-12T20:09:46-05:00"}},{"node":{"user":{"id":"11377032","name":"David Anderson","memberUrl":"https://www.meetup.com/members/11377032"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-12T20:09:51-05:00"}},{"node":{"user":{"id":"16400601","name":"Amine Rounak","memberUrl":"https://www.meetup.com/members/16400601"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-18T00:01:30-05:00"}},{"node":{"user":{"id":"72368142","name":"ANJAN PURKAYASTHA","memberUrl":"https://www.meetup.com/members/72368142"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-18T00:01:34-05:00"}},{"node":{"user":{"id":"14239206","name":"David James","memberUrl":"https://www.meetup.com/members/14239206"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-18T00:01:48-05:00"}},{"node":{"user":{"id":"23050501","name":"Tony","memberUrl":"https://www.meetup.com/members/23050501"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.923Z[UTC]","updatedAt":"2013-02-18T00:01:56-05:00"}},{"node":{"user":{"id":"3445733","name":"M Daniel A","memberUrl":"https://www.meetup.com/members/3445733"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:01:57-05:00"}},{"node":{"user":{"id":"79652172","name":"M K","memberUrl":"https://www.meetup.com/members/79652172"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:01:58-05:00"}},{"node":{"user":{"id":"11902118","name":"Bill Eger","memberUrl":"https://www.meetup.com/members/11902118"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-17T23:04:20-05:00"}},{"node":{"user":{"id":"56082852","name":"Mindy Kay Bricker","memberUrl":"https://www.meetup.com/members/56082852"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:17-05:00"}},{"node":{"user":{"id":"31965562","name":"Venka Ashtakala","memberUrl":"https://www.meetup.com/members/31965562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:00-05:00"}},{"node":{"user":{"id":"65723282","name":"Sidney Ainkorn","memberUrl":"https://www.meetup.com/members/65723282"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:06-05:00"}},{"node":{"user":{"id":"80629862","name":"Christian Rahn","memberUrl":"https://www.meetup.com/members/80629862"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:13-05:00"}},{"node":{"user":{"id":"15756671","name":"Cat Robinson","memberUrl":"https://www.meetup.com/members/15756671"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-17T16:32:06-05:00"}},{"node":{"user":{"id":"12467650","name":"Crystal","memberUrl":"https://www.meetup.com/members/12467650"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:07-05:00"}},{"node":{"user":{"id":"65283632","name":"Ramesh Chandra","memberUrl":"https://www.meetup.com/members/65283632"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:12-05:00"}},{"node":{"user":{"id":"13761738","name":"Justin Grimes","memberUrl":"https://www.meetup.com/members/13761738"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T00:02:16-05:00"}},{"node":{"user":{"id":"40314062","name":"Rodney Cobb","memberUrl":"https://www.meetup.com/members/40314062"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T08:32:42-05:00"}},{"node":{"user":{"id":"71729902","name":"Eric Aldrich","memberUrl":"https://www.meetup.com/members/71729902"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T09:50:15-05:00"}},{"node":{"user":{"id":"12102297","name":"Noah Lerman","memberUrl":"https://www.meetup.com/members/12102297"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T11:16:38-05:00"}},{"node":{"user":{"id":"49729562","name":"Tore Opsahl","memberUrl":"https://www.meetup.com/members/49729562"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T12:49:31-05:00"}},{"node":{"user":{"id":"80898312","name":"Maria Jividen","memberUrl":"https://www.meetup.com/members/80898312"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T15:00:27-05:00"}},{"node":{"user":{"id":"33029962","name":"Jess Smith","memberUrl":"https://www.meetup.com/members/33029962"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T15:40:54-05:00"}},{"node":{"user":{"id":"64569972","name":"James","memberUrl":"https://www.meetup.com/members/64569972"},"isHost":false,"status":"YES","guestsCount":0,"event":{"id":"103349942","title":"Ecosystem GIS & Community Building","eventUrl":"https://www.meetup.com/data-visualization-dc/events/103349942"},"createdAt":"2022-09-29T18:31:37.924Z[UTC]","updatedAt":"2013-02-18T17:09:29-05:00"}}]}}}} + recorded_at: 2022-09-29 18:31:38 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_events.yml b/tests/fixtures/get_events.yml index e1496544..37f3d60b 100644 --- a/tests/fixtures/get_events.yml +++ b/tests/fixtures/get_events.yml @@ -4,28 +4,27 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query singleEvent(\r\n # $urlname: String! = \"Data-Visualization-DC\"\r\n $urlname: - String!\r\n $cursorUnified: String\r\n $cursorUpcoming: String\r\n $cursorPast: - String\r\n $cursorDraft: String\r\n $queryUnified: Boolean = true\r\n $queryUpcoming: - Boolean = true\r\n $queryPast: Boolean = true\r\n $queryDraft: Boolean = - true\r\n $firstUnified: Int = 10000\r\n $firstUpcoming: Int = 10000\r\n $firstPast: - Int = 10000\r\n $firstDraft: Int = 10000\r\n) {\r\n groupByUrlname(urlname: - $urlname) {\r\n id\r\n unifiedEvents(input: { first: $firstUnified, - after: $cursorUnified })\r\n @include(if: $queryUnified) {\r\n pageInfo - {\r\n ...pageInfos\r\n }\r\n count\r\n edges {\r\n cursor\r\n node - {\r\n ...eventFields\r\n }\r\n }\r\n }\r\n upcomingEvents(input: - { first: $firstUpcoming, after: $cursorUpcoming })\r\n @include(if: $queryUpcoming) - {\r\n pageInfo {\r\n ...pageInfos\r\n }\r\n count\r\n edges - {\r\n cursor\r\n node {\r\n ...eventFields\r\n }\r\n }\r\n }\r\n pastEvents(input: - { first: $firstPast, after: $cursorPast })\r\n @include(if: $queryPast) - {\r\n pageInfo {\r\n ...pageInfos\r\n }\r\n count\r\n edges - {\r\n cursor\r\n node {\r\n ...eventFields\r\n }\r\n }\r\n }\r\n draftEvents(input: - { first: $firstDraft, after: $cursorDraft })\r\n @include(if: $queryDraft) - {\r\n pageInfo {\r\n ...pageInfos\r\n }\r\n count\r\n edges - {\r\n cursor\r\n node {\r\n ...eventFields\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\nfragment - pageInfos on PageInfo {\r\n hasNextPage\r\n # hasPreviousPage\r\n # startCursor\r\n endCursor\r\n}\r\nfragment - eventFields on Event {\r\n id\r\n title\r\n eventUrl\r\n createdAt\r\n status\r\n dateTime\r\n duration\r\n going\r\n waiting\r\n description\r\n eventUrl\r\n venue - {\r\n id\r\n lat\r\n lon: lng\r\n name\r\n address\r\n city\r\n state\r\n postalCode\r\n country\r\n }\r\n \r\n}\r","variables":{"urlname":"rladies-lagos"}}' + string: '{"query":"query singleEvent(\n # $urlname: String! = \"Data-Visualization-DC\"\n $urlname: + String!\n $cursorUnified: String\n $cursorUpcoming: String\n $cursorPast: + String\n $cursorDraft: String\n $queryUnified: Boolean = true\n $queryUpcoming: + Boolean = true\n $queryPast: Boolean = true\n $queryDraft: Boolean = true\n $firstUnified: + Int = 10000\n $firstUpcoming: Int = 10000\n $firstPast: Int = 10000\n $firstDraft: + Int = 10000\n) {\n groupByUrlname(urlname: $urlname) {\n id\n unifiedEvents(input: + { first: $firstUnified, after: $cursorUnified })\n @include(if: $queryUnified) + {\n pageInfo {\n ...pageInfos\n }\n count\n edges + {\n cursor\n node {\n ...eventFields\n }\n }\n }\n upcomingEvents(input: + { first: $firstUpcoming, after: $cursorUpcoming })\n @include(if: $queryUpcoming) + {\n pageInfo {\n ...pageInfos\n }\n count\n edges + {\n cursor\n node {\n ...eventFields\n }\n }\n }\n pastEvents(input: + { first: $firstPast, after: $cursorPast })\n @include(if: $queryPast) + {\n pageInfo {\n ...pageInfos\n }\n count\n edges + {\n cursor\n node {\n ...eventFields\n }\n }\n }\n draftEvents(input: + { first: $firstDraft, after: $cursorDraft })\n @include(if: $queryDraft) + {\n pageInfo {\n ...pageInfos\n }\n count\n edges + {\n cursor\n node {\n ...eventFields\n }\n }\n }\n }\n}\n\nfragment + pageInfos on PageInfo {\n hasNextPage\n # hasPreviousPage\n # startCursor\n endCursor\n}\nfragment + eventFields on Event {\n id\n title\n eventUrl\n createdAt\n status\n dateTime\n duration\n going\n waiting\n description\n eventUrl\n venue + {\n id\n lat\n lon: lng\n name\n address\n city\n state\n postalCode\n country\n }\n \n}","variables":{"urlname":"rladies-lagos"}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -38,22 +37,17 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '2351' content-type: application/json - x-amzn-requestid: 1580720c-a605-4e14-97ec-e207af5b14ea content-encoding: gzip - x-amzn-remapped-content-length: '6623' - x-amz-apigw-id: Q0OH8GjnIAMFePQ= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-625e5d65-7939c1812bc9b97748f69b92;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Tue, 19 Apr 2022 06:57:41 GMT + date: Thu, 29 Sep 2022 18:31:39 GMT + content-length: '2326' body: encoding: UTF-8 file: no string: | - {"data":{"groupByUrlname":{"id":"32612004","unifiedEvents":{"pageInfo":{"hasNextPage":false,"endCursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA="},"count":1,"edges":[{"cursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA=","node":{"id":"284612394!chp","title":"R Ladies Panel","eventUrl":"https://www.meetup.com/rladies-lagos/events/284612394","createdAt":null,"status":"published","dateTime":"2022-05-07T16:00+01:00","duration":"PT1H","going":12,"waiting":0,"description":"Join us for the R Ladies Panel session to discuss ways to empower more women to join the R community.\n\nThis event is open to all community members to bring on their ideas. if you would like to sit on the panel as a discussant, you're welcome to contact the event organizer to signify your interest.","venue":{"id":"26906060","lat":-8.521147,"lon":179.1962,"name":"Online event","address":"","city":"","state":"","postalCode":"","country":""}}}]},"upcomingEvents":{"pageInfo":{"hasNextPage":false,"endCursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA="},"count":1,"edges":[{"cursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA=","node":{"id":"284612394!chp","title":"R Ladies Panel","eventUrl":"https://www.meetup.com/rladies-lagos/events/284612394","createdAt":null,"status":"published","dateTime":"2022-05-07T16:00+01:00","duration":"PT1H","going":12,"waiting":0,"description":"Join us for the R Ladies Panel session to discuss ways to empower more women to join the R community.\n\nThis event is open to all community members to bring on their ideas. if you would like to sit on the panel as a discussant, you're welcome to contact the event organizer to signify your interest.","venue":{"id":"26906060","lat":-8.521147,"lon":179.1962,"name":"Online event","address":"","city":"","state":"","postalCode":"","country":""}}}]},"pastEvents":{"pageInfo":{"hasNextPage":false,"endCursor":"Mjg0MzIyMjczOjE2NDgzMTc2MDAwMDA="},"count":4,"edges":[{"cursor":"MjY0MTU2MDYxOjE1NjkwNzA4MDAwMDA=","node":{"id":"264156061!chp","title":"satRday Lagos + The Launch of RLadies Lagos.","eventUrl":"https://www.meetup.com/rladies-lagos/events/264156061","createdAt":null,"status":"PAST","dateTime":"2019-09-21T09:00+01:00","duration":"PT7H","going":26,"waiting":0,"description":"satRday-Lagos is an event aimed at getting you started with the R programing language.\n\nDo you love data or you are thinking of kick-starting your career in Technology by learning a programing language, then this is for you.\n\nDo you do statistics,digital media listening and analysis, data visualization, data engineering, data management,data sciences animation, economics and more. Let's show you how R would improve your projects.\n\nThis event is strictly hands-on so bring your laptops and devices along .\n\nSee you there .","venue":{"id":"26632228","lat":6.652131,"lon":3.271455,"name":"Civil Engineering Building, ","address":"YABATECH,","city":"Lagos","state":"al","postalCode":"meetup1","country":"ng"}}},{"cursor":"MjY2NzU3MjY1OjE1NzU3MjcyMDAwMDA=","node":{"id":"266757265!chp","title":"Data Mining using R","eventUrl":"https://www.meetup.com/rladies-lagos/events/266757265","createdAt":null,"status":"PAST","dateTime":"2019-12-07T09:00+01:00","duration":"PT7H","going":14,"waiting":0,"description":"Hi there R Users, it is time again for our physical meetup. It promises to packed but very interesting time.\n\nAgenda\n\n* Project presentation from the last online meeting\n*Hands-on projects for this month\n* Preparation for upcoming conferences\n- Women in Analytics 2020 (Columbus)\n- useR 2020 (St. Louis)\n*R-Ladies Lagos 2020 Outlook\n\nCome with your computers, extension boxes and data visualization ideas.","venue":{"id":"26750374","lat":6.580285,"lon":3.385895,"name":"Sweets And Pastries Ltd","address":"76 Ogudu Rd","city":"Lagos","state":"LA","postalCode":"100242","country":"ng"}}},{"cursor":"MjY3ODA0ODE0OjE1ODIzODAwMDAwMDA=","node":{"id":"267804814!chp","title":"Getting started with animated data in R","eventUrl":"https://www.meetup.com/rladies-lagos/events/267804814","createdAt":null,"status":"PAST","dateTime":"2020-02-22T09:00+01:00","duration":"PT7H","going":15,"waiting":0,"description":"Hi there R Users, it is time again for our first physical meetup of the year 2020.\n\nAgenda\n\n*2019 in Review\n*Homework presentation\n*Getting started with data animation in R\n*Summer training.\n\nCome with your computers, extension boxes, and data - maker ideas.","venue":{"id":"26750374","lat":6.580285,"lon":3.385895,"name":"Sweets And Pastries Ltd","address":"76 Ogudu Rd","city":"Lagos","state":"LA","postalCode":"100242","country":"ng"}}},{"cursor":"Mjg0MzIyMjczOjE2NDgzMTc2MDAwMDA=","node":{"id":"284322273!chp","title":"Data Network Analysis : What to know.","eventUrl":"https://www.meetup.com/rladies-lagos/events/284322273","createdAt":null,"status":"PAST","dateTime":"2022-03-26T14:00+01:00","duration":"PT2H","going":14,"waiting":0,"description":"**About the Speaker**\n\nEmeka is a Senior Knowledge Engineer with Cymantiks Limited, a company that makes Government, Organizations and Cities smarter using Semantic Technologies, for Data Modeling, Knowledge Representation, and Ontology Engineering, en-route to exploiting the opportunities in their data assets for Artificial Intelligence, Data Analytics to simulate human decision-making and high-level cognitive tasks that can be used to solve complex problems and achieve their desired Digital Transformation objectives.\nIn the last 25 years, Emeka has been at the forefront of technology and innovation in Nigeria from co-founding the earliest startup (ngex.com) to building cognitive solutions (Knowledge Graph on Disease Incidences, Legal Documents, African Films) to building Smart Agents, Software Autonomous Systems and Rules as Codes (RaC) using Semantic AI and Blockchain technology.\nEmeka is able to understand and explain technologies from deep-diving under the hood to the value proposition level. He believes that Linked Data, Blockchain and AI will change and improve the way we live and work, and he is passionate about designing and building systems that will make this happen and teaching others to do this as well.\nHe has been listed among the top 20 most influential Technology people in Africa (2013) by South Africa IT News to name a few\nHe groks at the intersection of Digital Societies, Economic Development, Urbanization and Semantic AI on Twitter (@EmekaOkoye).","venue":{"id":"26906060","lat":-8.521147,"lon":179.1962,"name":"Online event","address":"","city":"","state":"","postalCode":"","country":""}}}]},"draftEvents":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":0,"edges":[]}}}} - recorded_at: 2022-04-19 06:57:45 GMT + {"data":{"groupByUrlname":{"id":"32612004","unifiedEvents":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":0,"edges":[]},"upcomingEvents":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":0,"edges":[]},"pastEvents":{"pageInfo":{"hasNextPage":false,"endCursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA="},"count":5,"edges":[{"cursor":"MjY0MTU2MDYxOjE1NjkwNzA4MDAwMDA=","node":{"id":"264156061","title":"satRday Lagos + The Launch of RLadies Lagos.","eventUrl":"https://www.meetup.com/rladies-lagos/events/264156061","createdAt":null,"status":"PAST","dateTime":"2019-09-21T09:00+01:00","duration":"PT7H","going":26,"waiting":0,"description":"satRday-Lagos is an event aimed at getting you started with the R programing language.\n\nDo you love data or you are thinking of kick-starting your career in Technology by learning a programing language, then this is for you.\n\nDo you do statistics,digital media listening and analysis, data visualization, data engineering, data management,data sciences animation, economics and more. Let's show you how R would improve your projects.\n\nThis event is strictly hands-on so bring your laptops and devices along .\n\nSee you there .","venue":{"id":"26632228","lat":6.652131,"lon":3.271455,"name":"Civil Engineering Building, ","address":"YABATECH,","city":"Lagos","state":"al","postalCode":"meetup1","country":"ng"}}},{"cursor":"MjY2NzU3MjY1OjE1NzU3MjcyMDAwMDA=","node":{"id":"266757265","title":"Data Mining using R","eventUrl":"https://www.meetup.com/rladies-lagos/events/266757265","createdAt":null,"status":"PAST","dateTime":"2019-12-07T09:00+01:00","duration":"PT7H","going":14,"waiting":0,"description":"Hi there R Users, it is time again for our physical meetup. It promises to packed but very interesting time.\n\nAgenda\n\n* Project presentation from the last online meeting\n*Hands-on projects for this month\n* Preparation for upcoming conferences\n- Women in Analytics 2020 (Columbus)\n- useR 2020 (St. Louis)\n*R-Ladies Lagos 2020 Outlook\n\nCome with your computers, extension boxes and data visualization ideas.","venue":{"id":"26750374","lat":6.580285,"lon":3.385895,"name":"Sweets And Pastries Ltd","address":"76 Ogudu Rd","city":"Lagos","state":"LA","postalCode":"100242","country":"ng"}}},{"cursor":"MjY3ODA0ODE0OjE1ODIzODAwMDAwMDA=","node":{"id":"267804814","title":"Getting started with animated data in R","eventUrl":"https://www.meetup.com/rladies-lagos/events/267804814","createdAt":null,"status":"PAST","dateTime":"2020-02-22T09:00+01:00","duration":"PT7H","going":15,"waiting":0,"description":"Hi there R Users, it is time again for our first physical meetup of the year 2020.\n\nAgenda\n\n*2019 in Review\n*Homework presentation\n*Getting started with data animation in R\n*Summer training.\n\nCome with your computers, extension boxes, and data - maker ideas.","venue":{"id":"26750374","lat":6.580285,"lon":3.385895,"name":"Sweets And Pastries Ltd","address":"76 Ogudu Rd","city":"Lagos","state":"LA","postalCode":"100242","country":"ng"}}},{"cursor":"Mjg0MzIyMjczOjE2NDgzMTc2MDAwMDA=","node":{"id":"284322273","title":"Data Network Analysis : What to know.","eventUrl":"https://www.meetup.com/rladies-lagos/events/284322273","createdAt":null,"status":"PAST","dateTime":"2022-03-26T14:00+01:00","duration":"PT2H","going":14,"waiting":0,"description":"**About the Speaker**\n\nEmeka is a Senior Knowledge Engineer with Cymantiks Limited, a company that makes Government, Organizations and Cities smarter using Semantic Technologies, for Data Modeling, Knowledge Representation, and Ontology Engineering, en-route to exploiting the opportunities in their data assets for Artificial Intelligence, Data Analytics to simulate human decision-making and high-level cognitive tasks that can be used to solve complex problems and achieve their desired Digital Transformation objectives.\nIn the last 25 years, Emeka has been at the forefront of technology and innovation in Nigeria from co-founding the earliest startup (ngex.com) to building cognitive solutions (Knowledge Graph on Disease Incidences, Legal Documents, African Films) to building Smart Agents, Software Autonomous Systems and Rules as Codes (RaC) using Semantic AI and Blockchain technology.\nEmeka is able to understand and explain technologies from deep-diving under the hood to the value proposition level. He believes that Linked Data, Blockchain and AI will change and improve the way we live and work, and he is passionate about designing and building systems that will make this happen and teaching others to do this as well.\nHe has been listed among the top 20 most influential Technology people in Africa (2013) by South Africa IT News to name a few\nHe groks at the intersection of Digital Societies, Economic Development, Urbanization and Semantic AI on Twitter (@EmekaOkoye).","venue":{"id":"26906060","lat":-8.521147,"lon":179.1962,"name":"Online event","address":"","city":"","state":"","postalCode":"","country":""}}},{"cursor":"Mjg0NjEyMzk0OjE2NTE5NTM2MDAwMDA=","node":{"id":"284612394","title":"R Ladies Panel","eventUrl":"https://www.meetup.com/rladies-lagos/events/284612394","createdAt":null,"status":"PAST","dateTime":"2022-05-07T16:00+01:00","duration":"PT1H","going":17,"waiting":0,"description":"Join us for the R Ladies Panel session to discuss ways to empower more women to join the R community.\n\nThis event is open to all community members to bring on their ideas. if you would like to sit on the panel as a discussant, you're welcome to contact the event organizer to signify your interest.","venue":{"id":"26906060","lat":-8.521147,"lon":179.1962,"name":"Online event","address":"","city":"","state":"","postalCode":"","country":""}}}]},"draftEvents":{"pageInfo":{"hasNextPage":false,"endCursor":""},"count":0,"edges":[]}}}} + recorded_at: 2022-09-29 18:31:39 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_members.yml b/tests/fixtures/get_members.yml index c96fb5b1..2fb4c606 100644 --- a/tests/fixtures/get_members.yml +++ b/tests/fixtures/get_members.yml @@ -4,12 +4,11 @@ http_interactions: uri: https://api.meetup.com/gql body: encoding: '' - string: '{"query":"query members(\r\n $urlname: String!,\r\n $first: Int = - 1000,\r\n $cursor: String\r\n ) {\r\n groupByUrlname(urlname: $urlname) - {\r\n id\r\n name\r\n memberships ( input: {first: $first, after: - $cursor}) {\r\n pageInfo {\r\n hasNextPage\r\n endCursor\r\n }\r\n count\r\n edges - {\r\n node {\r\n id\r\n name\r\n memberUrl\r\n memberPhoto - {\r\n baseUrl\r\n }\r\n }\r\n metadata {\r\n status\r\n role\r\n joinedDate\r\n mostRecentVisitDate\r\n }\r\n }\r\n }\r\n \r\n }\r\n}\r","variables":{"urlname":"rladies-lagos"}}' + string: '{"query":"query members(\n $urlname: String!,\n $first: Int = 1000,\n $cursor: + String\n ) {\n groupByUrlname(urlname: $urlname) {\n id\n name\n memberships + ( input: {first: $first, after: $cursor}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n count\n edges + {\n node {\n id\n name\n memberUrl\n memberPhoto + {\n baseUrl\n }\n }\n metadata {\n status\n role\n joinedDate\n mostRecentVisitDate\n }\n }\n }\n \n }\n}","variables":{"urlname":"rladies-lagos"}}' headers: Content-Type: '' User-Agent: https://github.com/r-lib/gh @@ -22,22 +21,440 @@ http_interactions: reason: OK message: 'Success: (200) OK' headers: - connection: keep-alive - content-length: '14383' content-type: application/json - x-amzn-requestid: 141d7713-4456-4e62-9835-ca37fe016ffb content-encoding: gzip - x-amzn-remapped-content-length: '139032' - x-amz-apigw-id: Qfi82F6AIAMFbAw= access-control-allow-methods: OPTIONS,POST - x-amzn-trace-id: Root=1-62561852-42b3f39523bcd46a75ee924c;Sampled=0 access-control-allow-credentials: 'true' accept-ranges: bytes - date: Wed, 13 Apr 2022 00:24:55 GMT + date: Thu, 29 Sep 2022 18:31:45 GMT + content-length: '17705' body: encoding: UTF-8 file: no - string: | - {"data":{"groupByUrlname":{"id":"32612004","name":"R-Ladies Lagos","memberships":{"pageInfo":{"hasNextPage":false,"endCursor":"MTY0OTc2NjUwNDAwMDozNTk2NTcxMTg="},"count":414,"edges":[{"node":{"id":"251470805","name":"R-Ladies Global","memberUrl":"https://www.meetup.com/members/251470805","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"LEADER","role":"ORGANIZER","joinedDate":"2019-08-16T09:45:21+01:00","mostRecentVisitDate":"2019-08-16T09:45:21+01:00"}},{"node":{"id":"225839690","name":"EA","memberUrl":"https://www.meetup.com/members/225839690","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"LEADER","role":"COORGANIZER","joinedDate":"2019-08-16T15:33:34+01:00","mostRecentVisitDate":"2022-04-05T17:35:19+01:00"}},{"node":{"id":"236466773","name":"Adedamilola Adekanye","memberUrl":"https://www.meetup.com/members/236466773","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-16T16:00:28+01:00","mostRecentVisitDate":"2019-08-21T01:57:32+01:00"}},{"node":{"id":"255806325","name":"Helen","memberUrl":"https://www.meetup.com/members/255806325","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-16T17:24:28+01:00","mostRecentVisitDate":"2022-03-18T04:45:12+01:00"}},{"node":{"id":"287781170","name":"Alvin","memberUrl":"https://www.meetup.com/members/287781170","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-17T10:59:48+01:00","mostRecentVisitDate":"2019-08-17T10:59:48+01:00"}},{"node":{"id":"266271010","name":"ijeoma benson","memberUrl":"https://www.meetup.com/members/266271010","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-18T04:39:52+01:00","mostRecentVisitDate":"2019-08-18T04:39:52+01:00"}},{"node":{"id":"284993544","name":"Ochuko","memberUrl":"https://www.meetup.com/members/284993544","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-18T06:50:46+01:00","mostRecentVisitDate":"2019-09-16T04:45:34+01:00"}},{"node":{"id":"287837932","name":"King GREEN ","memberUrl":"https://www.meetup.com/members/287837932","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-18T07:41:58+01:00","mostRecentVisitDate":"2019-08-18T07:41:58+01:00"}},{"node":{"id":"249638660","name":"Folajimi Aroloye","memberUrl":"https://www.meetup.com/members/249638660","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-19T05:11:39+01:00","mostRecentVisitDate":"2019-12-01T07:07:04+01:00"}},{"node":{"id":"287607204","name":"Olaniyi ayomide recheal ","memberUrl":"https://www.meetup.com/members/287607204","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-19T09:25:11+01:00","mostRecentVisitDate":"2019-08-23T11:33:21+01:00"}},{"node":{"id":"253986501","name":"Ofure Ughu","memberUrl":"https://www.meetup.com/members/253986501","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T04:21:36+01:00","mostRecentVisitDate":"2019-08-20T04:21:36+01:00"}},{"node":{"id":"286549834","name":"Adebukola Cecilia Salami","memberUrl":"https://www.meetup.com/members/286549834","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T08:16:40+01:00","mostRecentVisitDate":"2020-01-13T05:14:17+01:00"}},{"node":{"id":"227583647","name":"Daniel Adeyemi","memberUrl":"https://www.meetup.com/members/227583647","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T08:17:21+01:00","mostRecentVisitDate":"2019-08-20T08:17:21+01:00"}},{"node":{"id":"288001297","name":"Adelowo Aisha","memberUrl":"https://www.meetup.com/members/288001297","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T11:03:53+01:00","mostRecentVisitDate":"2019-08-20T11:03:53+01:00"}},{"node":{"id":"288002559","name":"grace aruaka","memberUrl":"https://www.meetup.com/members/288002559","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T11:24:28+01:00","mostRecentVisitDate":"2019-09-09T12:14:47+01:00"}},{"node":{"id":"266376446","name":"Sophiyat Sadiq","memberUrl":"https://www.meetup.com/members/266376446","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-20T17:40:48+01:00","mostRecentVisitDate":"2019-08-20T17:40:48+01:00"}},{"node":{"id":"288149759","name":"Filafa Samuel","memberUrl":"https://www.meetup.com/members/288149759","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-22T03:47:13+01:00","mostRecentVisitDate":"2019-08-22T03:47:13+01:00"}},{"node":{"id":"284115565","name":"ayomide deborah","memberUrl":"https://www.meetup.com/members/284115565","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-23T04:31:45+01:00","mostRecentVisitDate":"2019-08-23T04:31:45+01:00"}},{"node":{"id":"287535963","name":"Oghenemine Nefertiti Nosakhare","memberUrl":"https://www.meetup.com/members/287535963","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-23T05:12:57+01:00","mostRecentVisitDate":"2019-09-20T13:02:33+01:00"}},{"node":{"id":"250410315","name":"Bolaji Mahridyah Quadri","memberUrl":"https://www.meetup.com/members/250410315","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-24T02:33:23+01:00","mostRecentVisitDate":"2020-01-15T11:16:16+01:00"}},{"node":{"id":"288349428","name":"Maria","memberUrl":"https://www.meetup.com/members/288349428","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-24T13:54:05+01:00","mostRecentVisitDate":"2022-03-01T14:27:06+01:00"}},{"node":{"id":"285562836","name":"Onyinye iloanugo ","memberUrl":"https://www.meetup.com/members/285562836","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-25T08:12:49+01:00","mostRecentVisitDate":"2019-08-25T08:12:49+01:00"}},{"node":{"id":"288423948","name":"James","memberUrl":"https://www.meetup.com/members/288423948","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-25T09:24:09+01:00","mostRecentVisitDate":"2019-08-25T09:24:09+01:00"}},{"node":{"id":"282660820","name":"Balogun Hammed Damilola","memberUrl":"https://www.meetup.com/members/282660820","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-25T12:56:56+01:00","mostRecentVisitDate":"2019-09-15T06:42:50+01:00"}},{"node":{"id":"288175521","name":"Oyoma Ajari","memberUrl":"https://www.meetup.com/members/288175521","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-26T04:53:20+01:00","mostRecentVisitDate":"2019-08-26T04:53:20+01:00"}},{"node":{"id":"286067088","name":"Sofiat","memberUrl":"https://www.meetup.com/members/286067088","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-28T09:17:18+01:00","mostRecentVisitDate":"2019-08-28T09:17:18+01:00"}},{"node":{"id":"288695386","name":"Bolatito Gbadegesin","memberUrl":"https://www.meetup.com/members/288695386","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-28T09:20:04+01:00","mostRecentVisitDate":"2019-08-28T09:20:04+01:00"}},{"node":{"id":"257708960","name":"Stella Adewole-Ozemoya","memberUrl":"https://www.meetup.com/members/257708960","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-28T12:19:59+01:00","mostRecentVisitDate":"2019-08-28T12:19:59+01:00"}},{"node":{"id":"288761543","name":"Victoria Bunmi Adegboye","memberUrl":"https://www.meetup.com/members/288761543","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-29T05:12:38+01:00","mostRecentVisitDate":"2019-08-29T05:12:38+01:00"}},{"node":{"id":"288765219","name":"John A.","memberUrl":"https://www.meetup.com/members/288765219","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-29T06:41:45+01:00","mostRecentVisitDate":"2019-08-29T06:41:45+01:00"}},{"node":{"id":"288783047","name":"Ngozi Ndefo","memberUrl":"https://www.meetup.com/members/288783047","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-29T10:04:19+01:00","mostRecentVisitDate":"2019-12-01T08:36:51+01:00"}},{"node":{"id":"281981743","name":"Olabimpe Faniyi","memberUrl":"https://www.meetup.com/members/281981743","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-29T16:26:02+01:00","mostRecentVisitDate":"2019-08-29T16:26:02+01:00"}},{"node":{"id":"267840974","name":"Ovakporoye Asite","memberUrl":"https://www.meetup.com/members/267840974","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-30T04:44:16+01:00","mostRecentVisitDate":"2020-01-13T05:02:01+01:00"}},{"node":{"id":"288935918","name":"Subair Hussein Kehinde","memberUrl":"https://www.meetup.com/members/288935918","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-08-30T16:55:16+01:00","mostRecentVisitDate":"2019-08-30T16:55:16+01:00"}},{"node":{"id":"289096902","name":"Mmesomachukwu Osele","memberUrl":"https://www.meetup.com/members/289096902","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-01T04:14:25+01:00","mostRecentVisitDate":"2019-09-01T04:14:25+01:00"}},{"node":{"id":"289111589","name":"Abayomi Adekanbi","memberUrl":"https://www.meetup.com/members/289111589","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-01T08:03:58+01:00","mostRecentVisitDate":"2019-09-01T08:03:58+01:00"}},{"node":{"id":"265886938","name":"cherechukwu","memberUrl":"https://www.meetup.com/members/265886938","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-01T10:05+01:00","mostRecentVisitDate":"2019-09-01T10:05+01:00"}},{"node":{"id":"250146611","name":"David Aluko","memberUrl":"https://www.meetup.com/members/250146611","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-02T14:29:46+01:00","mostRecentVisitDate":"2022-03-25T07:55:43+01:00"}},{"node":{"id":"266712797","name":"Sule Amidat","memberUrl":"https://www.meetup.com/members/266712797","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-03T11:03:46+01:00","mostRecentVisitDate":"2019-09-03T11:03:46+01:00"}},{"node":{"id":"273495540","name":"Oluwatosin Olaoye","memberUrl":"https://www.meetup.com/members/273495540","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-04T05:36:56+01:00","mostRecentVisitDate":"2019-09-04T05:36:56+01:00"}},{"node":{"id":"262176257","name":"ogundiran modupe","memberUrl":"https://www.meetup.com/members/262176257","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-04T06:24:22+01:00","mostRecentVisitDate":"2019-09-04T06:24:22+01:00"}},{"node":{"id":"237081990","name":"Peculiar Ediomo-Abasi","memberUrl":"https://www.meetup.com/members/237081990","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-04T06:56:42+01:00","mostRecentVisitDate":"2019-09-04T06:56:42+01:00"}},{"node":{"id":"230948066","name":"Esther ","memberUrl":"https://www.meetup.com/members/230948066","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-06T04:30:55+01:00","mostRecentVisitDate":"2019-09-21T05:15:17+01:00"}},{"node":{"id":"289898251","name":"Bukola Balogun","memberUrl":"https://www.meetup.com/members/289898251","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-07T09:17:12+01:00","mostRecentVisitDate":"2019-09-15T10:16:08+01:00"}},{"node":{"id":"289995352","name":"Kemisola","memberUrl":"https://www.meetup.com/members/289995352","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-08T05:28:08+01:00","mostRecentVisitDate":"2019-09-08T05:28:08+01:00"}},{"node":{"id":"282658275","name":"Lola","memberUrl":"https://www.meetup.com/members/282658275","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-08T15:20:22+01:00","mostRecentVisitDate":"2019-09-08T15:20:22+01:00"}},{"node":{"id":"290205097","name":"Chinonso Anne Obasi","memberUrl":"https://www.meetup.com/members/290205097","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-09T16:06:39+01:00","mostRecentVisitDate":"2019-09-09T16:06:39+01:00"}},{"node":{"id":"281974630","name":"samuel adewole","memberUrl":"https://www.meetup.com/members/281974630","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-10T14:20:08+01:00","mostRecentVisitDate":"2019-09-10T14:20:08+01:00"}},{"node":{"id":"290467825","name":"YGMB OFFICIAL","memberUrl":"https://www.meetup.com/members/290467825","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-11T07:51:20+01:00","mostRecentVisitDate":"2019-09-11T07:51:20+01:00"}},{"node":{"id":"229326061","name":"Ruth Sobande","memberUrl":"https://www.meetup.com/members/229326061","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-11T15:55:27+01:00","mostRecentVisitDate":"2019-09-11T15:55:27+01:00"}},{"node":{"id":"290597679","name":"IBRAHIM AKINOSO HALIMAT","memberUrl":"https://www.meetup.com/members/290597679","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-12T05:06:30+01:00","mostRecentVisitDate":"2019-09-12T05:06:30+01:00"}},{"node":{"id":"290742389","name":"Faith Tobi","memberUrl":"https://www.meetup.com/members/290742389","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-13T03:59:14+01:00","mostRecentVisitDate":"2019-09-13T03:59:14+01:00"}},{"node":{"id":"290884916","name":"Favour Eriba Idoko","memberUrl":"https://www.meetup.com/members/290884916","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-14T02:41:56+01:00","mostRecentVisitDate":"2019-09-14T02:41:56+01:00"}},{"node":{"id":"290972479","name":"Akande Maryam","memberUrl":"https://www.meetup.com/members/290972479","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-14T16:23:34+01:00","mostRecentVisitDate":"2019-09-14T16:23:34+01:00"}},{"node":{"id":"291035068","name":"Tomisin","memberUrl":"https://www.meetup.com/members/291035068","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-15T08:46:37+01:00","mostRecentVisitDate":"2019-09-15T08:46:37+01:00"}},{"node":{"id":"291037290","name":"Kehinde Ogunshina","memberUrl":"https://www.meetup.com/members/291037290","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-15T09:15:20+01:00","mostRecentVisitDate":"2019-09-15T09:15:20+01:00"}},{"node":{"id":"267886226","name":"Abubakar Emmanuella Faridat","memberUrl":"https://www.meetup.com/members/267886226","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-16T06:40:27+01:00","mostRecentVisitDate":"2019-09-16T06:40:27+01:00"}},{"node":{"id":"291163782","name":"Companylogan","memberUrl":"https://www.meetup.com/members/291163782","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-16T12:11:22+01:00","mostRecentVisitDate":"2019-09-16T12:11:22+01:00"}},{"node":{"id":"291163622","name":"Anyaoha Prince Chukwubuikem","memberUrl":"https://www.meetup.com/members/291163622","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-16T12:12:03+01:00","mostRecentVisitDate":"2019-09-16T12:12:03+01:00"}},{"node":{"id":"284105768","name":"Temitayo Olatunji","memberUrl":"https://www.meetup.com/members/284105768","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-17T15:49:03+01:00","mostRecentVisitDate":"2020-02-20T16:08:36+01:00"}},{"node":{"id":"291365498","name":"Abosede","memberUrl":"https://www.meetup.com/members/291365498","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-18T07:40:55+01:00","mostRecentVisitDate":"2019-09-18T07:40:55+01:00"}},{"node":{"id":"291372337","name":"Seth Clinton","memberUrl":"https://www.meetup.com/members/291372337","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-18T09:04:31+01:00","mostRecentVisitDate":"2019-09-18T09:04:31+01:00"}},{"node":{"id":"282639163","name":"Samuel Adewole","memberUrl":"https://www.meetup.com/members/282639163","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-20T16:17:50+01:00","mostRecentVisitDate":"2019-09-20T16:17:50+01:00"}},{"node":{"id":"291702701","name":"afiamma adiakpantin","memberUrl":"https://www.meetup.com/members/291702701","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-21T06:16:49+01:00","mostRecentVisitDate":"2019-12-06T05:05:50+01:00"}},{"node":{"id":"291930092","name":"Victoria Olotewo","memberUrl":"https://www.meetup.com/members/291930092","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-23T06:14:23+01:00","mostRecentVisitDate":"2019-09-23T06:14:23+01:00"}},{"node":{"id":"291991163","name":"Nura Adam","memberUrl":"https://www.meetup.com/members/291991163","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-23T19:09:46+01:00","mostRecentVisitDate":"2019-09-23T19:09:46+01:00"}},{"node":{"id":"292070712","name":"Tawiah David","memberUrl":"https://www.meetup.com/members/292070712","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-24T17:24:34+01:00","mostRecentVisitDate":"2019-09-24T17:24:34+01:00"}},{"node":{"id":"292263715","name":"Peter INOX","memberUrl":"https://www.meetup.com/members/292263715","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-26T23:13:35+01:00","mostRecentVisitDate":"2019-09-26T23:13:35+01:00"}},{"node":{"id":"292285668","name":"Enoch Williams","memberUrl":"https://www.meetup.com/members/292285668","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-27T05:23:05+01:00","mostRecentVisitDate":"2019-09-27T05:23:05+01:00"}},{"node":{"id":"292290282","name":"Olasupo Mayowa","memberUrl":"https://www.meetup.com/members/292290282","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-27T06:49:09+01:00","mostRecentVisitDate":"2019-09-27T06:49:09+01:00"}},{"node":{"id":"292329006","name":"Falohun Dare","memberUrl":"https://www.meetup.com/members/292329006","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-27T16:12:25+01:00","mostRecentVisitDate":"2019-09-27T16:12:25+01:00"}},{"node":{"id":"292379718","name":"Kindy orimolade ","memberUrl":"https://www.meetup.com/members/292379718","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-28T07:45:05+01:00","mostRecentVisitDate":"2020-02-02T17:30:02+01:00"}},{"node":{"id":"292676110","name":"Ejeh Egede Khris Rosse","memberUrl":"https://www.meetup.com/members/292676110","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-09-30T12:53:37+01:00","mostRecentVisitDate":"2019-09-30T12:53:37+01:00"}},{"node":{"id":"292753838","name":"Triumph Bayo","memberUrl":"https://www.meetup.com/members/292753838","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-01T07:32:12+01:00","mostRecentVisitDate":"2019-10-01T07:32:12+01:00"}},{"node":{"id":"292986054","name":"Eniola Ogunlade","memberUrl":"https://www.meetup.com/members/292986054","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-02T22:37:24+01:00","mostRecentVisitDate":"2019-10-02T22:37:24+01:00"}},{"node":{"id":"293135655","name":"Peter Michael ","memberUrl":"https://www.meetup.com/members/293135655","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-04T03:02:04+01:00","mostRecentVisitDate":"2019-10-04T03:02:04+01:00"}},{"node":{"id":"277731416","name":"Salisu Azeem Akinlabi","memberUrl":"https://www.meetup.com/members/277731416","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-04T05:50:33+01:00","mostRecentVisitDate":"2019-10-04T05:50:33+01:00"}},{"node":{"id":"293151074","name":"Jaiyeola Adeiza Ismail","memberUrl":"https://www.meetup.com/members/293151074","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-04T06:17:30+01:00","mostRecentVisitDate":"2019-10-04T06:17:30+01:00"}},{"node":{"id":"293241409","name":"Kaffo Olalekan","memberUrl":"https://www.meetup.com/members/293241409","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-05T00:22:13+01:00","mostRecentVisitDate":"2019-10-05T00:22:13+01:00"}},{"node":{"id":"293662457","name":"Afolabi Ayotunde","memberUrl":"https://www.meetup.com/members/293662457","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-08T04:59:39+01:00","mostRecentVisitDate":"2019-10-08T04:59:39+01:00"}},{"node":{"id":"289620822","name":"Alabi Chelsea Yetunde","memberUrl":"https://www.meetup.com/members/289620822","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-10T12:47:52+01:00","mostRecentVisitDate":"2019-10-19T07:07:55+01:00"}},{"node":{"id":"293957613","name":"Osawe Josef","memberUrl":"https://www.meetup.com/members/293957613","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-11T03:31:11+01:00","mostRecentVisitDate":"2019-10-11T03:31:11+01:00"}},{"node":{"id":"293967800","name":"Wale","memberUrl":"https://www.meetup.com/members/293967800","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-11T06:26:31+01:00","mostRecentVisitDate":"2019-10-11T06:26:31+01:00"}},{"node":{"id":"293964400","name":"Omowunmi Rukayat Lawal","memberUrl":"https://www.meetup.com/members/293964400","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-11T11:37:11+01:00","mostRecentVisitDate":"2020-01-17T10:39:37+01:00"}},{"node":{"id":"294124202","name":"Mike01","memberUrl":"https://www.meetup.com/members/294124202","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-12T15:26:15+01:00","mostRecentVisitDate":"2020-02-19T05:06:51+01:00"}},{"node":{"id":"294193031","name":"Yeancah Dolapo","memberUrl":"https://www.meetup.com/members/294193031","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-13T15:51+01:00","mostRecentVisitDate":"2019-10-13T15:51+01:00"}},{"node":{"id":"294269582","name":"Joy Jakpa","memberUrl":"https://www.meetup.com/members/294269582","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-14T17:21:12+01:00","mostRecentVisitDate":"2019-10-14T17:21:12+01:00"}},{"node":{"id":"294302747","name":"AKINLADENU FIYINFOLUWA","memberUrl":"https://www.meetup.com/members/294302747","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-15T05:31:28+01:00","mostRecentVisitDate":"2019-10-15T05:31:28+01:00"}},{"node":{"id":"294319056","name":"Olori Bukolami","memberUrl":"https://www.meetup.com/members/294319056","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-15T10:56:52+01:00","mostRecentVisitDate":"2019-10-15T10:56:52+01:00"}},{"node":{"id":"294411398","name":"Abubakar Muhammad Hassan","memberUrl":"https://www.meetup.com/members/294411398","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-16T14:22:01+01:00","mostRecentVisitDate":"2019-10-16T14:22:01+01:00"}},{"node":{"id":"294959894","name":"Abolade Abdullahi","memberUrl":"https://www.meetup.com/members/294959894","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-22T18:06:49+01:00","mostRecentVisitDate":"2019-10-22T18:06:49+01:00"}},{"node":{"id":"294998332","name":"Aniche Precious","memberUrl":"https://www.meetup.com/members/294998332","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-23T09:14:06+01:00","mostRecentVisitDate":"2019-10-23T09:14:06+01:00"}},{"node":{"id":"295069073","name":"Okejas Mathomas","memberUrl":"https://www.meetup.com/members/295069073","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-24T10:22:43+01:00","mostRecentVisitDate":"2019-10-24T10:22:43+01:00"}},{"node":{"id":"295096549","name":"eniola adewunmi","memberUrl":"https://www.meetup.com/members/295096549","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-24T18:03:32+01:00","mostRecentVisitDate":"2019-10-24T18:03:32+01:00"}},{"node":{"id":"295057967","name":"John Inyang","memberUrl":"https://www.meetup.com/members/295057967","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-25T08:29:19+01:00","mostRecentVisitDate":"2019-10-25T08:29:19+01:00"}},{"node":{"id":"295444522","name":"Adimibe Fortune","memberUrl":"https://www.meetup.com/members/295444522","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-30T06:29:30+01:00","mostRecentVisitDate":"2019-11-09T20:16:35+01:00"}},{"node":{"id":"295513660","name":"prof dynamite","memberUrl":"https://www.meetup.com/members/295513660","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-10-31T09:31:56+01:00","mostRecentVisitDate":"2019-10-31T09:31:56+01:00"}},{"node":{"id":"295558530","name":"Ayomide Akinwale","memberUrl":"https://www.meetup.com/members/295558530","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-01T03:13:39+01:00","mostRecentVisitDate":"2019-11-01T03:13:39+01:00"}},{"node":{"id":"295178489","name":"Irene Bernard Uwah","memberUrl":"https://www.meetup.com/members/295178489","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-01T05:21:47+01:00","mostRecentVisitDate":"2019-11-01T05:21:47+01:00"}},{"node":{"id":"295782287","name":"Ola Olowu","memberUrl":"https://www.meetup.com/members/295782287","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-04T15:20:56+01:00","mostRecentVisitDate":"2019-11-04T15:20:56+01:00"}},{"node":{"id":"295953505","name":"Gem Miriam Chinua","memberUrl":"https://www.meetup.com/members/295953505","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-07T05:38:34+01:00","mostRecentVisitDate":"2019-11-07T05:38:34+01:00"}},{"node":{"id":"295985935","name":"Anuoluwapo","memberUrl":"https://www.meetup.com/members/295985935","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-07T16:17:47+01:00","mostRecentVisitDate":"2019-11-07T16:17:47+01:00"}},{"node":{"id":"296021392","name":"SANDRA ","memberUrl":"https://www.meetup.com/members/296021392","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-08T07:16:31+01:00","mostRecentVisitDate":"2020-01-17T12:26:52+01:00"}},{"node":{"id":"296102426","name":"Rapheal Ogundiran","memberUrl":"https://www.meetup.com/members/296102426","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-09T13:57:27+01:00","mostRecentVisitDate":"2019-11-09T13:57:27+01:00"}},{"node":{"id":"296201063","name":"Walter","memberUrl":"https://www.meetup.com/members/296201063","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-11T04:59:26+01:00","mostRecentVisitDate":"2019-11-11T04:59:26+01:00"}},{"node":{"id":"296266049","name":"Frank Obasogie","memberUrl":"https://www.meetup.com/members/296266049","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-12T05:13:36+01:00","mostRecentVisitDate":"2019-11-12T05:13:36+01:00"}},{"node":{"id":"296340598","name":"Ashala Ebube","memberUrl":"https://www.meetup.com/members/296340598","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-13T08:56:29+01:00","mostRecentVisitDate":"2019-11-13T08:56:29+01:00"}},{"node":{"id":"296367660","name":"kwin Queen","memberUrl":"https://www.meetup.com/members/296367660","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-13T17:51:47+01:00","mostRecentVisitDate":"2019-11-13T17:51:47+01:00"}},{"node":{"id":"296396709","name":"Abdullah","memberUrl":"https://www.meetup.com/members/296396709","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-14T07:14:33+01:00","mostRecentVisitDate":"2019-11-14T07:14:33+01:00"}},{"node":{"id":"296707068","name":"Joy","memberUrl":"https://www.meetup.com/members/296707068","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-16T17:10:47+01:00","mostRecentVisitDate":"2019-11-16T17:10:47+01:00"}},{"node":{"id":"294352487","name":"Daniel Babatunde","memberUrl":"https://www.meetup.com/members/294352487","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-17T09:59:11+01:00","mostRecentVisitDate":"2019-11-17T09:59:11+01:00"}},{"node":{"id":"296821241","name":"Rukayat Raji","memberUrl":"https://www.meetup.com/members/296821241","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-17T12:28:22+01:00","mostRecentVisitDate":"2020-02-20T22:33:51+01:00"}},{"node":{"id":"296830502","name":"Tochukwu Ogbonna","memberUrl":"https://www.meetup.com/members/296830502","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-17T13:53:48+01:00","mostRecentVisitDate":"2019-11-17T13:53:48+01:00"}},{"node":{"id":"297037902","name":"BLESSING VICTOR","memberUrl":"https://www.meetup.com/members/297037902","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-19T06:56:51+01:00","mostRecentVisitDate":"2019-11-19T06:56:51+01:00"}},{"node":{"id":"297069632","name":"Precious IgoBreak Evwaraye","memberUrl":"https://www.meetup.com/members/297069632","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-19T17:06:55+01:00","mostRecentVisitDate":"2019-11-19T17:06:55+01:00"}},{"node":{"id":"297175497","name":"Samuel Tosin","memberUrl":"https://www.meetup.com/members/297175497","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-21T12:27:09+01:00","mostRecentVisitDate":"2019-11-21T12:27:09+01:00"}},{"node":{"id":"297206212","name":"Kofoworola","memberUrl":"https://www.meetup.com/members/297206212","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-22T00:18+01:00","mostRecentVisitDate":"2019-11-22T00:18+01:00"}},{"node":{"id":"297387178","name":"Sarah Nneoma","memberUrl":"https://www.meetup.com/members/297387178","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-25T07:54:27+01:00","mostRecentVisitDate":"2019-11-27T03:31:49+01:00"}},{"node":{"id":"297408610","name":"Cindy Shontan","memberUrl":"https://www.meetup.com/members/297408610","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-25T15:23:36+01:00","mostRecentVisitDate":"2019-11-25T15:23:36+01:00"}},{"node":{"id":"297446550","name":"Ola","memberUrl":"https://www.meetup.com/members/297446550","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-26T08:08:04+01:00","mostRecentVisitDate":"2019-11-26T08:08:04+01:00"}},{"node":{"id":"297458058","name":"Yinka Olagunju Alabi","memberUrl":"https://www.meetup.com/members/297458058","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-26T11:58+01:00","mostRecentVisitDate":"2019-11-26T11:58+01:00"}},{"node":{"id":"297471219","name":"joyce fred","memberUrl":"https://www.meetup.com/members/297471219","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-26T16:34:24+01:00","mostRecentVisitDate":"2019-11-26T16:34:24+01:00"}},{"node":{"id":"297495462","name":"Kenneth Naza","memberUrl":"https://www.meetup.com/members/297495462","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-27T03:34:31+01:00","mostRecentVisitDate":"2019-11-27T03:34:31+01:00"}},{"node":{"id":"297498057","name":"Abolarinwa Ismaeel Quadri","memberUrl":"https://www.meetup.com/members/297498057","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-27T04:46:58+01:00","mostRecentVisitDate":"2019-11-27T04:46:58+01:00"}},{"node":{"id":"297502172","name":"Mariam Atoyebi","memberUrl":"https://www.meetup.com/members/297502172","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-27T06:45:56+01:00","mostRecentVisitDate":"2019-11-27T06:45:56+01:00"}},{"node":{"id":"297609255","name":"Cynthia Agada","memberUrl":"https://www.meetup.com/members/297609255","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-29T07:28:59+01:00","mostRecentVisitDate":"2019-11-29T07:28:59+01:00"}},{"node":{"id":"297609914","name":"Omowunmi","memberUrl":"https://www.meetup.com/members/297609914","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-29T07:50:03+01:00","mostRecentVisitDate":"2019-11-29T07:50:03+01:00"}},{"node":{"id":"297669171","name":"akinsemoyin zainab","memberUrl":"https://www.meetup.com/members/297669171","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-11-30T09:48:23+01:00","mostRecentVisitDate":"2019-11-30T09:48:23+01:00"}},{"node":{"id":"293305608","name":"omotiba tomilola","memberUrl":"https://www.meetup.com/members/293305608","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-02T04:41:03+01:00","mostRecentVisitDate":"2022-03-01T03:20:05+01:00"}},{"node":{"id":"297792719","name":"Chiamaka Agba","memberUrl":"https://www.meetup.com/members/297792719","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-02T11:22:30+01:00","mostRecentVisitDate":"2019-12-03T06:08:28+01:00"}},{"node":{"id":"297810014","name":"Adaora Asiegbu","memberUrl":"https://www.meetup.com/members/297810014","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-02T16:27:36+01:00","mostRecentVisitDate":"2019-12-02T16:27:36+01:00"}},{"node":{"id":"297854214","name":"Toyosi Samuel","memberUrl":"https://www.meetup.com/members/297854214","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-03T10:13:20+01:00","mostRecentVisitDate":"2019-12-03T10:13:20+01:00"}},{"node":{"id":"297861149","name":"Oja Daddy","memberUrl":"https://www.meetup.com/members/297861149","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-03T12:26:10+01:00","mostRecentVisitDate":"2019-12-03T12:26:10+01:00"}},{"node":{"id":"297935903","name":"Grace Oyedele","memberUrl":"https://www.meetup.com/members/297935903","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-04T15:24:36+01:00","mostRecentVisitDate":"2020-01-13T06:59:49+01:00"}},{"node":{"id":"297972748","name":"Awuto Peace","memberUrl":"https://www.meetup.com/members/297972748","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-05T07:20:13+01:00","mostRecentVisitDate":"2019-12-05T07:20:13+01:00"}},{"node":{"id":"297980690","name":"Olivia Tobi Babs","memberUrl":"https://www.meetup.com/members/297980690","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-05T10:18:37+01:00","mostRecentVisitDate":"2019-12-05T10:18:37+01:00"}},{"node":{"id":"297991890","name":"Uchendu","memberUrl":"https://www.meetup.com/members/297991890","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-05T13:56:11+01:00","mostRecentVisitDate":"2019-12-05T13:56:11+01:00"}},{"node":{"id":"298033374","name":"iyke azubuike","memberUrl":"https://www.meetup.com/members/298033374","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-06T07:21:12+01:00","mostRecentVisitDate":"2019-12-06T07:21:12+01:00"}},{"node":{"id":"298036314","name":"Tayo Gbemibade","memberUrl":"https://www.meetup.com/members/298036314","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-06T08:45:12+01:00","mostRecentVisitDate":"2019-12-06T08:45:12+01:00"}},{"node":{"id":"298097880","name":"La Priscillias kitchen","memberUrl":"https://www.meetup.com/members/298097880","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-07T09:44:04+01:00","mostRecentVisitDate":"2019-12-07T09:44:04+01:00"}},{"node":{"id":"298156680","name":"Olubunmi Adebowale","memberUrl":"https://www.meetup.com/members/298156680","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-08T09:49:16+01:00","mostRecentVisitDate":"2019-12-08T09:49:16+01:00"}},{"node":{"id":"298175985","name":"Tolulope Akomolafe","memberUrl":"https://www.meetup.com/members/298175985","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-08T16:10:58+01:00","mostRecentVisitDate":"2019-12-08T16:10:58+01:00"}},{"node":{"id":"298285352","name":"Tobore Ivan Obukohwo","memberUrl":"https://www.meetup.com/members/298285352","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-10T10:50:48+01:00","mostRecentVisitDate":"2019-12-10T10:50:48+01:00"}},{"node":{"id":"298402421","name":"Emiola lawrence","memberUrl":"https://www.meetup.com/members/298402421","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-12T10:42:03+01:00","mostRecentVisitDate":"2019-12-12T10:42:03+01:00"}},{"node":{"id":"298468408","name":"Peak channel","memberUrl":"https://www.meetup.com/members/298468408","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-13T14:31:08+01:00","mostRecentVisitDate":"2019-12-13T14:31:08+01:00"}},{"node":{"id":"298496386","name":"Pappy Coker","memberUrl":"https://www.meetup.com/members/298496386","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-14T02:29:17+01:00","mostRecentVisitDate":"2019-12-14T02:29:17+01:00"}},{"node":{"id":"298670657","name":"Glitz Research","memberUrl":"https://www.meetup.com/members/298670657","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-17T08:39:25+01:00","mostRecentVisitDate":"2019-12-17T08:39:25+01:00"}},{"node":{"id":"298806334","name":"Ames Muhammed","memberUrl":"https://www.meetup.com/members/298806334","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-19T14:57:44+01:00","mostRecentVisitDate":"2019-12-19T14:57:44+01:00"}},{"node":{"id":"298857701","name":"Ife Oladimeji","memberUrl":"https://www.meetup.com/members/298857701","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-20T14:47:08+01:00","mostRecentVisitDate":"2019-12-20T14:47:08+01:00"}},{"node":{"id":"298923554","name":"Ajiboye Foladara","memberUrl":"https://www.meetup.com/members/298923554","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-21T20:43:42+01:00","mostRecentVisitDate":"2019-12-21T20:43:42+01:00"}},{"node":{"id":"299202424","name":"Tina Chi","memberUrl":"https://www.meetup.com/members/299202424","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-27T13:54:47+01:00","mostRecentVisitDate":"2019-12-27T13:54:47+01:00"}},{"node":{"id":"299223244","name":"Aladesanmi Olanrewaju Morgan","memberUrl":"https://www.meetup.com/members/299223244","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-27T20:57:25+01:00","mostRecentVisitDate":"2019-12-27T20:57:25+01:00"}},{"node":{"id":"299322458","name":"Joe Ochai","memberUrl":"https://www.meetup.com/members/299322458","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2019-12-29T13:50:19+01:00","mostRecentVisitDate":"2019-12-29T13:50:19+01:00"}},{"node":{"id":"299618438","name":"Chidinma Nwalupue","memberUrl":"https://www.meetup.com/members/299618438","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-03T05:29:26+01:00","mostRecentVisitDate":"2020-01-03T05:29:26+01:00"}},{"node":{"id":"299682154","name":"Boogie O","memberUrl":"https://www.meetup.com/members/299682154","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-04T01:28:56+01:00","mostRecentVisitDate":"2020-01-04T01:28:56+01:00"}},{"node":{"id":"299719559","name":"Racheal adeyemi ","memberUrl":"https://www.meetup.com/members/299719559","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-04T14:10:17+01:00","mostRecentVisitDate":"2020-01-04T14:10:17+01:00"}},{"node":{"id":"299757772","name":"Emily Rachelle","memberUrl":"https://www.meetup.com/members/299757772","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-05T02:13:48+01:00","mostRecentVisitDate":"2020-01-05T02:13:48+01:00"}},{"node":{"id":"299843752","name":"Clement Monday","memberUrl":"https://www.meetup.com/members/299843752","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-06T09:37:55+01:00","mostRecentVisitDate":"2020-01-06T09:37:55+01:00"}},{"node":{"id":"299871425","name":"Adedoyin Yinusa","memberUrl":"https://www.meetup.com/members/299871425","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-06T17:08+01:00","mostRecentVisitDate":"2020-01-06T17:08+01:00"}},{"node":{"id":"299985368","name":"Onabiyi Olayinka","memberUrl":"https://www.meetup.com/members/299985368","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-08T06:35:54+01:00","mostRecentVisitDate":"2020-01-08T06:35:54+01:00"}},{"node":{"id":"299987037","name":"Anuoluwapo Fafesobi","memberUrl":"https://www.meetup.com/members/299987037","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-08T07:14:06+01:00","mostRecentVisitDate":"2020-01-08T07:14:06+01:00"}},{"node":{"id":"300006995","name":"Olatunji","memberUrl":"https://www.meetup.com/members/300006995","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-08T13:15:47+01:00","mostRecentVisitDate":"2020-01-08T13:15:47+01:00"}},{"node":{"id":"300067806","name":"Isaac Anthonia","memberUrl":"https://www.meetup.com/members/300067806","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-09T10:13:23+01:00","mostRecentVisitDate":"2020-01-09T10:13:23+01:00"}},{"node":{"id":"299941945","name":"Bolu Olanipekun","memberUrl":"https://www.meetup.com/members/299941945","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-09T23:37:47+01:00","mostRecentVisitDate":"2020-02-16T04:18:48+01:00"}},{"node":{"id":"300119703","name":"Yewande Writes","memberUrl":"https://www.meetup.com/members/300119703","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-10T02:49:10+01:00","mostRecentVisitDate":"2020-01-10T02:49:10+01:00"}},{"node":{"id":"300260073","name":"Morolayo","memberUrl":"https://www.meetup.com/members/300260073","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-12T03:26:58+01:00","mostRecentVisitDate":"2020-03-17T17:22:52+01:00"}},{"node":{"id":"300328262","name":"Sybil Elikwu","memberUrl":"https://www.meetup.com/members/300328262","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-13T02:20:44+01:00","mostRecentVisitDate":"2020-01-13T02:20:44+01:00"}},{"node":{"id":"300364757","name":"Marve","memberUrl":"https://www.meetup.com/members/300364757","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-13T14:36:10+01:00","mostRecentVisitDate":"2020-01-13T14:36:10+01:00"}},{"node":{"id":"300422708","name":"tbless bobo","memberUrl":"https://www.meetup.com/members/300422708","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-14T08:37:05+01:00","mostRecentVisitDate":"2020-01-14T08:37:05+01:00"}},{"node":{"id":"300497534","name":"Kafilat","memberUrl":"https://www.meetup.com/members/300497534","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-15T08:44:31+01:00","mostRecentVisitDate":"2020-02-19T08:25:40+01:00"}},{"node":{"id":"300633361","name":"Olaide","memberUrl":"https://www.meetup.com/members/300633361","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-17T05:21:57+01:00","mostRecentVisitDate":"2020-01-17T05:21:57+01:00"}},{"node":{"id":"300727028","name":"Tival","memberUrl":"https://www.meetup.com/members/300727028","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-18T13:10:54+01:00","mostRecentVisitDate":"2020-01-18T13:10:54+01:00"}},{"node":{"id":"300924282","name":"Jerry Phelps","memberUrl":"https://www.meetup.com/members/300924282","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-21T08:29:43+01:00","mostRecentVisitDate":"2020-01-21T08:29:43+01:00"}},{"node":{"id":"300925810","name":"Daisy Dickson ","memberUrl":"https://www.meetup.com/members/300925810","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-21T08:59:37+01:00","mostRecentVisitDate":"2020-01-21T08:59:37+01:00"}},{"node":{"id":"300913817","name":"steve Samuel","memberUrl":"https://www.meetup.com/members/300913817","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-21T10:50:41+01:00","mostRecentVisitDate":"2020-05-13T17:24+01:00"}},{"node":{"id":"301067985","name":"Kehinde Joseph Vincent","memberUrl":"https://www.meetup.com/members/301067985","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-23T07:17:29+01:00","mostRecentVisitDate":"2020-02-14T21:28:41+01:00"}},{"node":{"id":"301179156","name":"Kemi Joseph","memberUrl":"https://www.meetup.com/members/301179156","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-24T19:52:36+01:00","mostRecentVisitDate":"2020-01-24T19:52:36+01:00"}},{"node":{"id":"301197567","name":"Oluwatosin Okeoghene","memberUrl":"https://www.meetup.com/members/301197567","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-25T03:21:54+01:00","mostRecentVisitDate":"2020-02-10T05:38:50+01:00"}},{"node":{"id":"301257971","name":"Olusegun Badmus","memberUrl":"https://www.meetup.com/members/301257971","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-26T00:03:25+01:00","mostRecentVisitDate":"2020-01-26T00:03:25+01:00"}},{"node":{"id":"301368467","name":"Oyegoke Azeez Olaoluwa","memberUrl":"https://www.meetup.com/members/301368467","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-27T15:00:08+01:00","mostRecentVisitDate":"2020-01-27T15:00:08+01:00"}},{"node":{"id":"299982781","name":"Blessing Ojo","memberUrl":"https://www.meetup.com/members/299982781","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-28T06:19:18+01:00","mostRecentVisitDate":"2020-01-28T06:19:18+01:00"}},{"node":{"id":"288788732","name":"Rebecca Sodunke","memberUrl":"https://www.meetup.com/members/288788732","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-28T06:37:32+01:00","mostRecentVisitDate":"2020-01-28T06:37:32+01:00"}},{"node":{"id":"301420709","name":"ogbatorho yvonne","memberUrl":"https://www.meetup.com/members/301420709","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-28T08:50:55+01:00","mostRecentVisitDate":"2020-01-28T08:50:55+01:00"}},{"node":{"id":"301490231","name":"Niyi Sanusi","memberUrl":"https://www.meetup.com/members/301490231","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-29T08:17:31+01:00","mostRecentVisitDate":"2020-01-29T08:17:31+01:00"}},{"node":{"id":"301584989","name":"cbfdvnn","memberUrl":"https://www.meetup.com/members/301584989","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-30T16:15:45+01:00","mostRecentVisitDate":"2020-01-30T16:15:45+01:00"}},{"node":{"id":"301604300","name":"Rukayat Motunrayo","memberUrl":"https://www.meetup.com/members/301604300","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-01-30T22:34:09+01:00","mostRecentVisitDate":"2020-01-30T22:34:09+01:00"}},{"node":{"id":"301890284","name":"FASORANTI YEMISI","memberUrl":"https://www.meetup.com/members/301890284","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-04T06:28:46+01:00","mostRecentVisitDate":"2020-02-04T06:28:46+01:00"}},{"node":{"id":"301926147","name":"Ifeanyi Chukwu","memberUrl":"https://www.meetup.com/members/301926147","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-04T17:15:33+01:00","mostRecentVisitDate":"2020-02-04T17:15:33+01:00"}},{"node":{"id":"301962624","name":"Akhuetie Ehis","memberUrl":"https://www.meetup.com/members/301962624","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-05T07:47:10+01:00","mostRecentVisitDate":"2020-02-05T07:47:10+01:00"}},{"node":{"id":"302011372","name":"Olu","memberUrl":"https://www.meetup.com/members/302011372","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-05T23:04:51+01:00","mostRecentVisitDate":"2020-02-05T23:04:51+01:00"}},{"node":{"id":"301835719","name":"Linda Dominguez","memberUrl":"https://www.meetup.com/members/301835719","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-08T05:44:16+01:00","mostRecentVisitDate":"2020-02-08T05:44:16+01:00"}},{"node":{"id":"302158460","name":"Ayomide Adeniyi","memberUrl":"https://www.meetup.com/members/302158460","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-08T05:50:38+01:00","mostRecentVisitDate":"2020-02-08T05:50:38+01:00"}},{"node":{"id":"302265024","name":"Nate tyson","memberUrl":"https://www.meetup.com/members/302265024","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-09T18:54:05+01:00","mostRecentVisitDate":"2020-02-09T18:54:05+01:00"}},{"node":{"id":"302427778","name":"Doyo ","memberUrl":"https://www.meetup.com/members/302427778","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-12T04:19:12+01:00","mostRecentVisitDate":"2020-02-19T04:25:32+01:00"}},{"node":{"id":"266403885","name":"bayo bude","memberUrl":"https://www.meetup.com/members/266403885","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-13T03:28:44+01:00","mostRecentVisitDate":"2020-03-08T13:30:58+01:00"}},{"node":{"id":"302534959","name":"Izira","memberUrl":"https://www.meetup.com/members/302534959","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-13T17:10:06+01:00","mostRecentVisitDate":"2020-02-13T17:10:06+01:00"}},{"node":{"id":"302553610","name":"Gabriel Obeh","memberUrl":"https://www.meetup.com/members/302553610","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-14T00:04:27+01:00","mostRecentVisitDate":"2020-02-14T00:04:27+01:00"}},{"node":{"id":"302605410","name":"Posh Crystal Events","memberUrl":"https://www.meetup.com/members/302605410","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-14T19:41:44+01:00","mostRecentVisitDate":"2020-02-14T19:41:44+01:00"}},{"node":{"id":"302665454","name":"Bibi","memberUrl":"https://www.meetup.com/members/302665454","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-15T18:36:38+01:00","mostRecentVisitDate":"2020-02-15T18:36:38+01:00"}},{"node":{"id":"302721851","name":"Kiine Bashir","memberUrl":"https://www.meetup.com/members/302721851","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-16T15:27:28+01:00","mostRecentVisitDate":"2020-02-16T15:27:28+01:00"}},{"node":{"id":"302841865","name":"Nk Okoye","memberUrl":"https://www.meetup.com/members/302841865","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-18T10:14:30+01:00","mostRecentVisitDate":"2020-02-18T10:14:30+01:00"}},{"node":{"id":"280568362","name":"Jolly Smart","memberUrl":"https://www.meetup.com/members/280568362","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-19T01:53:37+01:00","mostRecentVisitDate":"2020-02-19T01:53:37+01:00"}},{"node":{"id":"231387116","name":"willypelz","memberUrl":"https://www.meetup.com/members/231387116","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-22T12:38:57+01:00","mostRecentVisitDate":"2020-02-22T12:38:57+01:00"}},{"node":{"id":"303238670","name":"grahamjones","memberUrl":"https://www.meetup.com/members/303238670","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-24T03:13:50+01:00","mostRecentVisitDate":"2020-02-24T03:13:50+01:00"}},{"node":{"id":"303299442","name":"Chibuzo okika ","memberUrl":"https://www.meetup.com/members/303299442","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-24T23:18:01+01:00","mostRecentVisitDate":"2020-02-24T23:18:01+01:00"}},{"node":{"id":"303363649","name":"Kaka Nazareth","memberUrl":"https://www.meetup.com/members/303363649","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-25T21:10:54+01:00","mostRecentVisitDate":"2020-02-25T21:10:54+01:00"}},{"node":{"id":"303444219","name":"Kafayat Akinwande","memberUrl":"https://www.meetup.com/members/303444219","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-02-27T03:10:22+01:00","mostRecentVisitDate":"2020-02-27T03:10:22+01:00"}},{"node":{"id":"303694608","name":"Christain Morgan","memberUrl":"https://www.meetup.com/members/303694608","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-02T01:51:30+01:00","mostRecentVisitDate":"2020-03-02T01:51:30+01:00"}},{"node":{"id":"303697541","name":"Adorable","memberUrl":"https://www.meetup.com/members/303697541","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-02T03:54:02+01:00","mostRecentVisitDate":"2020-03-02T03:54:02+01:00"}},{"node":{"id":"303713977","name":"sandra ijeme dickson","memberUrl":"https://www.meetup.com/members/303713977","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-02T10:04:34+01:00","mostRecentVisitDate":"2020-03-02T10:04:34+01:00"}},{"node":{"id":"303772117","name":"cindy maris","memberUrl":"https://www.meetup.com/members/303772117","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-03T06:26:46+01:00","mostRecentVisitDate":"2020-03-03T06:26:46+01:00"}},{"node":{"id":"303920186","name":"Buhari Musa","memberUrl":"https://www.meetup.com/members/303920186","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-05T11:58:03+01:00","mostRecentVisitDate":"2020-03-05T11:58:03+01:00"}},{"node":{"id":"303961033","name":"Winifred","memberUrl":"https://www.meetup.com/members/303961033","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-06T03:02:09+01:00","mostRecentVisitDate":"2020-03-06T03:02:09+01:00"}},{"node":{"id":"304133769","name":"Akinnubi Olakunle","memberUrl":"https://www.meetup.com/members/304133769","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-08T18:15:29+01:00","mostRecentVisitDate":"2020-03-08T18:15:29+01:00"}},{"node":{"id":"304136963","name":"Chuks","memberUrl":"https://www.meetup.com/members/304136963","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-08T19:42+01:00","mostRecentVisitDate":"2020-03-08T19:42+01:00"}},{"node":{"id":"304180020","name":"Maureen Emereonye","memberUrl":"https://www.meetup.com/members/304180020","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-09T11:58:48+01:00","mostRecentVisitDate":"2020-03-09T11:58:48+01:00"}},{"node":{"id":"304237421","name":"Soa Obaf","memberUrl":"https://www.meetup.com/members/304237421","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-10T09:29:20+01:00","mostRecentVisitDate":"2020-03-10T09:29:20+01:00"}},{"node":{"id":"304272676","name":"Cathie Michaels","memberUrl":"https://www.meetup.com/members/304272676","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-10T20:38:40+01:00","mostRecentVisitDate":"2020-04-01T12:25:38+01:00"}},{"node":{"id":"304355060","name":"Peace Grace","memberUrl":"https://www.meetup.com/members/304355060","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-12T08:19:34+01:00","mostRecentVisitDate":"2020-03-12T08:19:34+01:00"}},{"node":{"id":"304366366","name":"Merlyn Tamunoemi","memberUrl":"https://www.meetup.com/members/304366366","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-12T12:50:50+01:00","mostRecentVisitDate":"2020-03-12T12:50:50+01:00"}},{"node":{"id":"304497045","name":"Aderibigbe Opeyemi ","memberUrl":"https://www.meetup.com/members/304497045","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-14T12:37:49+01:00","mostRecentVisitDate":"2020-03-14T12:37:49+01:00"}},{"node":{"id":"304500549","name":"ayyuba ahmad","memberUrl":"https://www.meetup.com/members/304500549","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-14T14:08:39+01:00","mostRecentVisitDate":"2020-03-14T14:08:39+01:00"}},{"node":{"id":"304508886","name":"Ann Maranatha","memberUrl":"https://www.meetup.com/members/304508886","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-14T18:15:43+01:00","mostRecentVisitDate":"2020-03-14T18:15:43+01:00"}},{"node":{"id":"304788329","name":"Nebechi F. Chukwu","memberUrl":"https://www.meetup.com/members/304788329","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-17T08:28:09+01:00","mostRecentVisitDate":"2020-03-17T08:28:09+01:00"}},{"node":{"id":"304830700","name":"Taiwo Damilare Solomon","memberUrl":"https://www.meetup.com/members/304830700","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-17T17:15:58+01:00","mostRecentVisitDate":"2020-03-17T17:15:58+01:00"}},{"node":{"id":"304878823","name":"Bianca","memberUrl":"https://www.meetup.com/members/304878823","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-18T02:19:53+01:00","mostRecentVisitDate":"2020-03-18T02:19:53+01:00"}},{"node":{"id":"304999868","name":"Krimz","memberUrl":"https://www.meetup.com/members/304999868","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-19T19:28:46+01:00","mostRecentVisitDate":"2020-03-19T19:28:46+01:00"}},{"node":{"id":"305069510","name":"Motunrayo","memberUrl":"https://www.meetup.com/members/305069510","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-20T20:46:35+01:00","mostRecentVisitDate":"2020-03-20T20:46:35+01:00"}},{"node":{"id":"305311263","name":"Tricia Amanda","memberUrl":"https://www.meetup.com/members/305311263","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-27T07:25:56+01:00","mostRecentVisitDate":"2020-03-27T07:25:56+01:00"}},{"node":{"id":"305314591","name":"Isaac Umejiaku","memberUrl":"https://www.meetup.com/members/305314591","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-27T09:55:19+01:00","mostRecentVisitDate":"2020-03-27T09:55:19+01:00"}},{"node":{"id":"305388504","name":"Damilola Agboola","memberUrl":"https://www.meetup.com/members/305388504","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-29T14:45+01:00","mostRecentVisitDate":"2020-03-29T14:45+01:00"}},{"node":{"id":"305400906","name":"Paulice","memberUrl":"https://www.meetup.com/members/305400906","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-29T22:58:04+01:00","mostRecentVisitDate":"2020-03-29T22:58:04+01:00"}},{"node":{"id":"305409323","name":"BrigHams","memberUrl":"https://www.meetup.com/members/305409323","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-30T06:55:28+01:00","mostRecentVisitDate":"2020-03-30T06:55:28+01:00"}},{"node":{"id":"305414999","name":"Miffe","memberUrl":"https://www.meetup.com/members/305414999","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-03-30T10:53:24+01:00","mostRecentVisitDate":"2020-03-30T10:53:24+01:00"}},{"node":{"id":"305477474","name":"Praise G Dubu","memberUrl":"https://www.meetup.com/members/305477474","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-01T05:15:48+01:00","mostRecentVisitDate":"2020-04-01T05:15:48+01:00"}},{"node":{"id":"305480285","name":"Tochukwu Kingsley Maduka","memberUrl":"https://www.meetup.com/members/305480285","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-01T08:55:21+01:00","mostRecentVisitDate":"2020-04-01T08:55:21+01:00"}},{"node":{"id":"305536785","name":"Micheal omar Milton","memberUrl":"https://www.meetup.com/members/305536785","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-02T22:31:12+01:00","mostRecentVisitDate":"2020-04-02T22:31:12+01:00"}},{"node":{"id":"305588113","name":"dovey","memberUrl":"https://www.meetup.com/members/305588113","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-04T13:53:12+01:00","mostRecentVisitDate":"2020-04-04T13:53:12+01:00"}},{"node":{"id":"305703494","name":"TOBUN BABATUNDE GBOLAHAN","memberUrl":"https://www.meetup.com/members/305703494","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-07T10:10:17+01:00","mostRecentVisitDate":"2020-04-07T10:10:17+01:00"}},{"node":{"id":"305733948","name":"Bolaji Babatunde","memberUrl":"https://www.meetup.com/members/305733948","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-08T05:24:01+01:00","mostRecentVisitDate":"2020-04-08T05:24:01+01:00"}},{"node":{"id":"305738211","name":"Muhammad Hardo Bello","memberUrl":"https://www.meetup.com/members/305738211","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-08T08:23:58+01:00","mostRecentVisitDate":"2020-04-08T08:23:58+01:00"}},{"node":{"id":"305745250","name":"Nnenna Aboh","memberUrl":"https://www.meetup.com/members/305745250","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-08T12:18:14+01:00","mostRecentVisitDate":"2020-04-08T12:18:14+01:00"}},{"node":{"id":"305811394","name":"Victor Nkemwa","memberUrl":"https://www.meetup.com/members/305811394","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-10T06:30:35+01:00","mostRecentVisitDate":"2020-04-10T06:30:35+01:00"}},{"node":{"id":"305820330","name":"Okpara Benjamin","memberUrl":"https://www.meetup.com/members/305820330","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-10T13:12:05+01:00","mostRecentVisitDate":"2020-04-10T13:12:05+01:00"}},{"node":{"id":"305830174","name":"Emmasson","memberUrl":"https://www.meetup.com/members/305830174","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-10T19:06:44+01:00","mostRecentVisitDate":"2020-04-10T19:06:44+01:00"}},{"node":{"id":"272487874","name":"Adeola Abayomi","memberUrl":"https://www.meetup.com/members/272487874","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-13T19:50:43+01:00","mostRecentVisitDate":"2020-04-13T19:50:43+01:00"}},{"node":{"id":"306108318","name":"Joseph O Isiagu","memberUrl":"https://www.meetup.com/members/306108318","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-18T17:39:51+01:00","mostRecentVisitDate":"2020-04-18T17:39:51+01:00"}},{"node":{"id":"306173404","name":"Dr Dele","memberUrl":"https://www.meetup.com/members/306173404","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-20T15:10:22+01:00","mostRecentVisitDate":"2020-04-20T15:10:22+01:00"}},{"node":{"id":"306199938","name":"Uwaifo Joseph Edeki","memberUrl":"https://www.meetup.com/members/306199938","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-21T09:12:19+01:00","mostRecentVisitDate":"2020-04-21T09:12:19+01:00"}},{"node":{"id":"306725694","name":"Olupona Gbemisola","memberUrl":"https://www.meetup.com/members/306725694","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-25T19:01:09+01:00","mostRecentVisitDate":"2020-07-14T13:34:46+01:00"}},{"node":{"id":"306998506","name":"Zion authenticity","memberUrl":"https://www.meetup.com/members/306998506","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-29T17:25:05+01:00","mostRecentVisitDate":"2020-04-29T17:25:05+01:00"}},{"node":{"id":"307207493","name":"Oswald","memberUrl":"https://www.meetup.com/members/307207493","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-04-30T13:12:21+01:00","mostRecentVisitDate":"2020-04-30T13:12:21+01:00"}},{"node":{"id":"307461427","name":"Lanre Keshinro","memberUrl":"https://www.meetup.com/members/307461427","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-01T10:47:42+01:00","mostRecentVisitDate":"2020-05-01T10:47:42+01:00"}},{"node":{"id":"307473136","name":"Lucia","memberUrl":"https://www.meetup.com/members/307473136","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-01T12:21:48+01:00","mostRecentVisitDate":"2020-05-03T05:18:04+01:00"}},{"node":{"id":"307995844","name":"Toyin Jato","memberUrl":"https://www.meetup.com/members/307995844","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-02T18:25:01+01:00","mostRecentVisitDate":"2020-05-02T18:25:01+01:00"}},{"node":{"id":"308931256","name":"Samuel","memberUrl":"https://www.meetup.com/members/308931256","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-05T13:33:50+01:00","mostRecentVisitDate":"2020-05-05T13:33:50+01:00"}},{"node":{"id":"309170542","name":"Teddy ","memberUrl":"https://www.meetup.com/members/309170542","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-06T16:22:11+01:00","mostRecentVisitDate":"2020-05-06T16:22:11+01:00"}},{"node":{"id":"80673732","name":"Shamsuddeen Hassan Muhammad","memberUrl":"https://www.meetup.com/members/80673732","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-16T06:32:53+01:00","mostRecentVisitDate":"2020-05-17T23:43:08+01:00"}},{"node":{"id":"310408630","name":"Jaysean ","memberUrl":"https://www.meetup.com/members/310408630","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-17T08:36:49+01:00","mostRecentVisitDate":"2020-05-17T08:36:49+01:00"}},{"node":{"id":"310504749","name":"Eric Tomson","memberUrl":"https://www.meetup.com/members/310504749","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-19T17:18:21+01:00","mostRecentVisitDate":"2020-08-09T03:51:01+01:00"}},{"node":{"id":"310561144","name":"Nathan","memberUrl":"https://www.meetup.com/members/310561144","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-21T01:29:25+01:00","mostRecentVisitDate":"2020-05-21T01:29:25+01:00"}},{"node":{"id":"310340344","name":"Geenah","memberUrl":"https://www.meetup.com/members/310340344","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-21T16:30:32+01:00","mostRecentVisitDate":"2021-06-20T11:37+01:00"}},{"node":{"id":"310757481","name":"ukay emilia","memberUrl":"https://www.meetup.com/members/310757481","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-26T07:29:45+01:00","mostRecentVisitDate":"2020-05-26T07:29:45+01:00"}},{"node":{"id":"310858177","name":"IQ Organisation","memberUrl":"https://www.meetup.com/members/310858177","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-05-28T15:51:22+01:00","mostRecentVisitDate":"2020-05-28T15:51:22+01:00"}},{"node":{"id":"311175264","name":"INNOB","memberUrl":"https://www.meetup.com/members/311175264","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-05T13:52:40+01:00","mostRecentVisitDate":"2020-06-05T13:52:40+01:00"}},{"node":{"id":"311265403","name":"Jay Boi","memberUrl":"https://www.meetup.com/members/311265403","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-07T20:12:06+01:00","mostRecentVisitDate":"2020-06-07T20:12:06+01:00"}},{"node":{"id":"311402449","name":"Salam Shukrah Abisola","memberUrl":"https://www.meetup.com/members/311402449","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-10T23:19:20+01:00","mostRecentVisitDate":"2020-06-10T23:19:20+01:00"}},{"node":{"id":"311517031","name":"Idris Mekudi","memberUrl":"https://www.meetup.com/members/311517031","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-13T17:13:46+01:00","mostRecentVisitDate":"2020-06-13T17:13:46+01:00"}},{"node":{"id":"311866055","name":"Ememobong Umoren","memberUrl":"https://www.meetup.com/members/311866055","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-21T13:58:21+01:00","mostRecentVisitDate":"2020-06-21T13:58:21+01:00"}},{"node":{"id":"312080271","name":"Nicholas Presh","memberUrl":"https://www.meetup.com/members/312080271","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-26T10:29:38+01:00","mostRecentVisitDate":"2020-06-26T10:29:38+01:00"}},{"node":{"id":"312114109","name":"Ibrahim Danteni","memberUrl":"https://www.meetup.com/members/312114109","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-06-27T06:39:58+01:00","mostRecentVisitDate":"2020-06-27T06:39:58+01:00"}},{"node":{"id":"314061165","name":"Chukwuemeka Maureen","memberUrl":"https://www.meetup.com/members/314061165","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-08-12T08:44:29+01:00","mostRecentVisitDate":"2020-08-12T08:44:29+01:00"}},{"node":{"id":"316689031","name":"Olugbenga Oluyemi","memberUrl":"https://www.meetup.com/members/316689031","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-09-22T00:50:27+01:00","mostRecentVisitDate":"2020-09-22T00:50:27+01:00"}},{"node":{"id":"317477535","name":"Precious Obinodu","memberUrl":"https://www.meetup.com/members/317477535","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-09-30T08:30:07+01:00","mostRecentVisitDate":"2020-09-30T08:30:07+01:00"}},{"node":{"id":"317489816","name":"Olatunde ","memberUrl":"https://www.meetup.com/members/317489816","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-09-30T12:09:45+01:00","mostRecentVisitDate":"2020-09-30T12:09:45+01:00"}},{"node":{"id":"318308513","name":"Esuruoso Tawhid","memberUrl":"https://www.meetup.com/members/318308513","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-10-11T07:01:27+01:00","mostRecentVisitDate":"2020-10-11T07:01:27+01:00"}},{"node":{"id":"318922877","name":"A olusola ","memberUrl":"https://www.meetup.com/members/318922877","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-10-20T05:28:48+01:00","mostRecentVisitDate":"2020-10-20T05:28:48+01:00"}},{"node":{"id":"15603031","name":"Innocent baba","memberUrl":"https://www.meetup.com/members/15603031","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-10-22T05:25:23+01:00","mostRecentVisitDate":"2020-10-22T05:25:23+01:00"}},{"node":{"id":"9222629","name":"Amélie Gourdon-Kanhukamwe","memberUrl":"https://www.meetup.com/members/9222629","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-10-29T10:00:34+01:00","mostRecentVisitDate":"2020-10-29T10:00:34+01:00"}},{"node":{"id":"321267053","name":"CHIKEOBI Nnah","memberUrl":"https://www.meetup.com/members/321267053","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-11-23T15:04:11+01:00","mostRecentVisitDate":"2020-11-23T15:04:11+01:00"}},{"node":{"id":"321833127","name":"Adeleke Odunayo Joseph ","memberUrl":"https://www.meetup.com/members/321833127","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-12-03T16:13:20+01:00","mostRecentVisitDate":"2020-12-03T16:13:20+01:00"}},{"node":{"id":"321996513","name":"Akewusola Elizabeth","memberUrl":"https://www.meetup.com/members/321996513","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-12-06T15:08:59+01:00","mostRecentVisitDate":"2020-12-06T15:08:59+01:00"}},{"node":{"id":"294377299","name":"Bilikisu Aderinto","memberUrl":"https://www.meetup.com/members/294377299","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-12-07T03:38:11+01:00","mostRecentVisitDate":"2020-12-28T09:06:55+01:00"}},{"node":{"id":"322745585","name":"Olaniyi","memberUrl":"https://www.meetup.com/members/322745585","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2020-12-15T20:33:07+01:00","mostRecentVisitDate":"2020-12-15T20:33:07+01:00"}},{"node":{"id":"323709369","name":"OZ Olalere","memberUrl":"https://www.meetup.com/members/323709369","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-01-02T09:39:42+01:00","mostRecentVisitDate":"2021-01-02T09:39:42+01:00"}},{"node":{"id":"323792196","name":"Marvis Chinenye Obidiegwu","memberUrl":"https://www.meetup.com/members/323792196","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-01-03T14:52:01+01:00","mostRecentVisitDate":"2021-01-03T14:52:01+01:00"}},{"node":{"id":"323889996","name":"John Fajuyitan","memberUrl":"https://www.meetup.com/members/323889996","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-01-05T01:25:16+01:00","mostRecentVisitDate":"2021-01-05T01:25:16+01:00"}},{"node":{"id":"324022186","name":"Mba Esther","memberUrl":"https://www.meetup.com/members/324022186","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-01-07T06:40:11+01:00","mostRecentVisitDate":"2021-01-07T06:40:11+01:00"}},{"node":{"id":"325880621","name":"Robert Uwana Blessing","memberUrl":"https://www.meetup.com/members/325880621","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-02-02T13:12:55+01:00","mostRecentVisitDate":"2021-02-02T13:12:55+01:00"}},{"node":{"id":"325936965","name":"Deborah Osilade","memberUrl":"https://www.meetup.com/members/325936965","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-02-03T10:15:28+01:00","mostRecentVisitDate":"2021-10-14T06:41:46+01:00"}},{"node":{"id":"326570142","name":"Onwurah Benita","memberUrl":"https://www.meetup.com/members/326570142","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-02-13T17:26:30+01:00","mostRecentVisitDate":"2021-02-13T17:26:30+01:00"}},{"node":{"id":"295460210","name":"Cathy Agbo","memberUrl":"https://www.meetup.com/members/295460210","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-02-22T15:41:08+01:00","mostRecentVisitDate":"2021-02-22T15:41:08+01:00"}},{"node":{"id":"328241009","name":"Emmanuel Irene","memberUrl":"https://www.meetup.com/members/328241009","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-03-14T11:47:28+01:00","mostRecentVisitDate":"2021-03-14T11:47:28+01:00"}},{"node":{"id":"328260957","name":"mayim tvumkenge mayim","memberUrl":"https://www.meetup.com/members/328260957","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-03-14T18:22:15+01:00","mostRecentVisitDate":"2021-03-14T18:22:15+01:00"}},{"node":{"id":"328866520","name":"elysian goldwealth","memberUrl":"https://www.meetup.com/members/328866520","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-03-25T00:22:53+01:00","mostRecentVisitDate":"2021-03-25T00:22:53+01:00"}},{"node":{"id":"329421418","name":"djmiles","memberUrl":"https://www.meetup.com/members/329421418","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-04-03T17:10:14+01:00","mostRecentVisitDate":"2021-04-03T17:10:14+01:00"}},{"node":{"id":"330181633","name":"Teniola Osaira","memberUrl":"https://www.meetup.com/members/330181633","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-04-16T07:20:47+01:00","mostRecentVisitDate":"2021-06-25T09:01:28+01:00"}},{"node":{"id":"331660747","name":"Helen Benson","memberUrl":"https://www.meetup.com/members/331660747","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-05-08T11:49:14+01:00","mostRecentVisitDate":"2021-05-08T11:49:14+01:00"}},{"node":{"id":"332378855","name":"Ademola Joshua","memberUrl":"https://www.meetup.com/members/332378855","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-05-19T02:09:19+01:00","mostRecentVisitDate":"2021-05-19T02:09:19+01:00"}},{"node":{"id":"329874723","name":"Henry Okam","memberUrl":"https://www.meetup.com/members/329874723","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-05-25T14:38:41+01:00","mostRecentVisitDate":"2021-05-25T14:38:41+01:00"}},{"node":{"id":"333618624","name":"Ade","memberUrl":"https://www.meetup.com/members/333618624","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-06-05T09:13:04+01:00","mostRecentVisitDate":"2021-06-05T09:13:04+01:00"}},{"node":{"id":"313044334","name":"Sam","memberUrl":"https://www.meetup.com/members/313044334","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-06-19T18:31:10+01:00","mostRecentVisitDate":"2021-06-19T18:31:10+01:00"}},{"node":{"id":"336242476","name":"Engr. Fuad Jimoh","memberUrl":"https://www.meetup.com/members/336242476","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-10T19:43:03+01:00","mostRecentVisitDate":"2021-07-10T19:43:03+01:00"}},{"node":{"id":"336493021","name":"Oladeji Joshua Akintayo","memberUrl":"https://www.meetup.com/members/336493021","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-14T05:24:22+01:00","mostRecentVisitDate":"2021-07-14T05:24:22+01:00"}},{"node":{"id":"336534524","name":"humphrey olugbue","memberUrl":"https://www.meetup.com/members/336534524","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-14T18:40:30+01:00","mostRecentVisitDate":"2021-07-14T18:40:30+01:00"}},{"node":{"id":"337046241","name":"Toluwanimi Fakeye","memberUrl":"https://www.meetup.com/members/337046241","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-22T05:47:22+01:00","mostRecentVisitDate":"2021-07-22T05:47:22+01:00"}},{"node":{"id":"275495498","name":"Jane Uchechukwu","memberUrl":"https://www.meetup.com/members/275495498","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-29T03:32:38+01:00","mostRecentVisitDate":"2021-07-29T03:32:38+01:00"}},{"node":{"id":"335477279","name":"Nelson Philip","memberUrl":"https://www.meetup.com/members/335477279","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-07-29T21:18:37+01:00","mostRecentVisitDate":"2021-07-29T21:18:37+01:00"}},{"node":{"id":"338578089","name":"Glory Ify","memberUrl":"https://www.meetup.com/members/338578089","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-13T12:01:33+01:00","mostRecentVisitDate":"2021-08-13T12:01:33+01:00"}},{"node":{"id":"335103334","name":"Chinwendu Uwaemelu","memberUrl":"https://www.meetup.com/members/335103334","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-18T06:22:31+01:00","mostRecentVisitDate":"2021-08-18T06:22:31+01:00"}},{"node":{"id":"313188950","name":"Jeselnik","memberUrl":"https://www.meetup.com/members/313188950","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-22T09:37:07+01:00","mostRecentVisitDate":"2021-08-22T09:37:07+01:00"}},{"node":{"id":"339406120","name":"David Menze","memberUrl":"https://www.meetup.com/members/339406120","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-26T04:38:51+01:00","mostRecentVisitDate":"2021-08-26T04:38:51+01:00"}},{"node":{"id":"339630448","name":"mariam","memberUrl":"https://www.meetup.com/members/339630448","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-29T15:31:30+01:00","mostRecentVisitDate":"2021-08-29T15:31:30+01:00"}},{"node":{"id":"339080738","name":"Augusta Nicholas","memberUrl":"https://www.meetup.com/members/339080738","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-08-30T20:12:43+01:00","mostRecentVisitDate":"2021-08-30T20:12:43+01:00"}},{"node":{"id":"336598342","name":"Feyikemi Obamiro","memberUrl":"https://www.meetup.com/members/336598342","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-07T04:00:51+01:00","mostRecentVisitDate":"2021-09-07T04:00:51+01:00"}},{"node":{"id":"339528710","name":"Rotimi Oluwapelumi","memberUrl":"https://www.meetup.com/members/339528710","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-09T08:54:10+01:00","mostRecentVisitDate":"2021-09-09T08:54:10+01:00"}},{"node":{"id":"223189613","name":"Savage modupeola","memberUrl":"https://www.meetup.com/members/223189613","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-11T06:19:01+01:00","mostRecentVisitDate":"2021-09-11T06:19:01+01:00"}},{"node":{"id":"305485082","name":"ABDULLAHI SULAIMON","memberUrl":"https://www.meetup.com/members/305485082","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-16T04:35:37+01:00","mostRecentVisitDate":"2021-09-16T04:35:37+01:00"}},{"node":{"id":"337476712","name":"Sylvia Nzenweaku","memberUrl":"https://www.meetup.com/members/337476712","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-16T14:47:14+01:00","mostRecentVisitDate":"2021-09-16T14:47:14+01:00"}},{"node":{"id":"341767308","name":"Feranmi Aina","memberUrl":"https://www.meetup.com/members/341767308","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-09-30T08:48:02+01:00","mostRecentVisitDate":"2021-09-30T08:48:02+01:00"}},{"node":{"id":"341891631","name":"Opeyemi Ogbere","memberUrl":"https://www.meetup.com/members/341891631","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-02T08:40:19+01:00","mostRecentVisitDate":"2021-10-02T08:40:19+01:00"}},{"node":{"id":"342552522","name":"Oluwadara Akano","memberUrl":"https://www.meetup.com/members/342552522","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-12T10:04:12+01:00","mostRecentVisitDate":"2021-10-12T10:04:12+01:00"}},{"node":{"id":"342994074","name":"OluwaTunmyshe Israel Adetokunbo","memberUrl":"https://www.meetup.com/members/342994074","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-19T06:53:46+01:00","mostRecentVisitDate":"2021-10-19T06:53:46+01:00"}},{"node":{"id":"343056434","name":"Gail Menke","memberUrl":"https://www.meetup.com/members/343056434","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-20T06:51:25+01:00","mostRecentVisitDate":"2021-10-20T06:51:25+01:00"}},{"node":{"id":"343100924","name":"Sharon Dim","memberUrl":"https://www.meetup.com/members/343100924","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-20T23:46:36+01:00","mostRecentVisitDate":"2022-02-28T21:03:14+01:00"}},{"node":{"id":"344070290","name":"fridaws adewunmi","memberUrl":"https://www.meetup.com/members/344070290","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-10-30T05:35:04+01:00","mostRecentVisitDate":"2021-10-30T05:35:04+01:00"}},{"node":{"id":"342478644","name":"jacinta johnson","memberUrl":"https://www.meetup.com/members/342478644","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-11-04T08:29:10+01:00","mostRecentVisitDate":"2021-11-04T08:29:10+01:00"}},{"node":{"id":"345673283","name":"Oyinkansola Grace","memberUrl":"https://www.meetup.com/members/345673283","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-11-10T01:58:50+01:00","mostRecentVisitDate":"2021-11-10T01:58:50+01:00"}},{"node":{"id":"338994721","name":"Samuel Maduka","memberUrl":"https://www.meetup.com/members/338994721","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-11-20T06:38:34+01:00","mostRecentVisitDate":"2021-11-20T06:38:34+01:00"}},{"node":{"id":"348047037","name":"Chiamaka Ijedibia","memberUrl":"https://www.meetup.com/members/348047037","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-11-30T18:45:49+01:00","mostRecentVisitDate":"2021-11-30T18:45:49+01:00"}},{"node":{"id":"330323656","name":"Mujeeb Olukokun","memberUrl":"https://www.meetup.com/members/330323656","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-12-19T09:58:41+01:00","mostRecentVisitDate":"2021-12-19T09:58:41+01:00"}},{"node":{"id":"350753078","name":"Miracle David","memberUrl":"https://www.meetup.com/members/350753078","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2021-12-31T03:11:45+01:00","mostRecentVisitDate":"2021-12-31T03:11:45+01:00"}},{"node":{"id":"351853557","name":"Happiness Idio","memberUrl":"https://www.meetup.com/members/351853557","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-01-04T17:20:13+01:00","mostRecentVisitDate":"2022-01-06T02:20+01:00"}},{"node":{"id":"342362755","name":"Winifred Igboke","memberUrl":"https://www.meetup.com/members/342362755","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-01-05T03:32:10+01:00","mostRecentVisitDate":"2022-01-05T03:32:10+01:00"}},{"node":{"id":"351746653","name":"Hollar Mie","memberUrl":"https://www.meetup.com/members/351746653","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-01-09T14:32:44+01:00","mostRecentVisitDate":"2022-01-09T14:32:44+01:00"}},{"node":{"id":"352556661","name":"Omowunmi Ogunjimi","memberUrl":"https://www.meetup.com/members/352556661","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-01-12T04:42:18+01:00","mostRecentVisitDate":"2022-01-12T04:42:18+01:00"}},{"node":{"id":"354445559","name":"Balogun Saheed Akorede","memberUrl":"https://www.meetup.com/members/354445559","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-01T19:51:33+01:00","mostRecentVisitDate":"2022-02-01T19:51:33+01:00"}},{"node":{"id":"355129105","name":"Okezie Joel Chinonyerem","memberUrl":"https://www.meetup.com/members/355129105","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-10T11:10:55+01:00","mostRecentVisitDate":"2022-02-10T11:10:55+01:00"}},{"node":{"id":"355262727","name":"Kareem Hardebhayo","memberUrl":"https://www.meetup.com/members/355262727","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-12T04:58:02+01:00","mostRecentVisitDate":"2022-02-12T04:58:02+01:00"}},{"node":{"id":"279382328","name":"Julian Essien","memberUrl":"https://www.meetup.com/members/279382328","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-19T16:49:46+01:00","mostRecentVisitDate":"2022-02-19T16:49:46+01:00"}},{"node":{"id":"355982119","name":"Joseph Ezemdinma Nwankpa","memberUrl":"https://www.meetup.com/members/355982119","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-21T16:04:51+01:00","mostRecentVisitDate":"2022-02-21T16:04:51+01:00"}},{"node":{"id":"287128431","name":"bob akpuna","memberUrl":"https://www.meetup.com/members/287128431","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-02-27T12:56:05+01:00","mostRecentVisitDate":"2022-02-27T12:56:05+01:00"}},{"node":{"id":"335020073","name":"MARY U. JONATHAN","memberUrl":"https://www.meetup.com/members/335020073","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-01T10:34:04+01:00","mostRecentVisitDate":"2022-03-01T10:34:04+01:00"}},{"node":{"id":"356572616","name":"Toyin","memberUrl":"https://www.meetup.com/members/356572616","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-01T17:30:14+01:00","mostRecentVisitDate":"2022-03-01T17:30:14+01:00"}},{"node":{"id":"356609632","name":"Joy","memberUrl":"https://www.meetup.com/members/356609632","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-02T07:44:52+01:00","mostRecentVisitDate":"2022-03-02T07:44:52+01:00"}},{"node":{"id":"337762102","name":"Okey OGB","memberUrl":"https://www.meetup.com/members/337762102","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-02T07:52:37+01:00","mostRecentVisitDate":"2022-03-02T07:52:37+01:00"}},{"node":{"id":"356655899","name":"Chinenyenwa","memberUrl":"https://www.meetup.com/members/356655899","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-02T20:33:46+01:00","mostRecentVisitDate":"2022-03-02T20:33:46+01:00"}},{"node":{"id":"356758655","name":"Jane Fredrick","memberUrl":"https://www.meetup.com/members/356758655","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-04T08:09:22+01:00","mostRecentVisitDate":"2022-03-04T08:09:22+01:00"}},{"node":{"id":"356796901","name":"Ojei Harry","memberUrl":"https://www.meetup.com/members/356796901","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-04T17:53:42+01:00","mostRecentVisitDate":"2022-03-04T17:53:42+01:00"}},{"node":{"id":"356779077","name":"Abdul Nasir M Hafiz","memberUrl":"https://www.meetup.com/members/356779077","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-04T19:05:03+01:00","mostRecentVisitDate":"2022-03-04T19:05:03+01:00"}},{"node":{"id":"356832886","name":"Ugochi Ndunaka","memberUrl":"https://www.meetup.com/members/356832886","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-05T07:55:03+01:00","mostRecentVisitDate":"2022-03-05T07:55:03+01:00"}},{"node":{"id":"356895684","name":"Toyin Olayinka","memberUrl":"https://www.meetup.com/members/356895684","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-06T03:28:51+01:00","mostRecentVisitDate":"2022-03-06T03:28:51+01:00"}},{"node":{"id":"357012239","name":"Ewatomilola","memberUrl":"https://www.meetup.com/members/357012239","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-07T15:20:01+01:00","mostRecentVisitDate":"2022-03-07T15:20:01+01:00"}},{"node":{"id":"357071414","name":"Uduakobong Johnson","memberUrl":"https://www.meetup.com/members/357071414","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-08T11:16:51+01:00","mostRecentVisitDate":"2022-03-08T11:16:51+01:00"}},{"node":{"id":"357153948","name":"Tofunmi Ayotunde","memberUrl":"https://www.meetup.com/members/357153948","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-09T13:52:46+01:00","mostRecentVisitDate":"2022-03-09T13:52:46+01:00"}},{"node":{"id":"357169742","name":"M O","memberUrl":"https://www.meetup.com/members/357169742","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-09T17:31:01+01:00","mostRecentVisitDate":"2022-03-09T17:31:01+01:00"}},{"node":{"id":"357214687","name":"up flask","memberUrl":"https://www.meetup.com/members/357214687","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-10T10:19:29+01:00","mostRecentVisitDate":"2022-03-11T03:26:39+01:00"}},{"node":{"id":"357239266","name":"Temidayo Omonira","memberUrl":"https://www.meetup.com/members/357239266","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-10T16:27:52+01:00","mostRecentVisitDate":"2022-03-10T16:27:52+01:00"}},{"node":{"id":"357285333","name":"Odubote ololade","memberUrl":"https://www.meetup.com/members/357285333","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-11T08:59:18+01:00","mostRecentVisitDate":"2022-03-11T08:59:18+01:00"}},{"node":{"id":"357292091","name":"Taiwo Joshua","memberUrl":"https://www.meetup.com/members/357292091","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-11T10:43:56+01:00","mostRecentVisitDate":"2022-03-11T10:43:56+01:00"}},{"node":{"id":"357319651","name":"Obadimu","memberUrl":"https://www.meetup.com/members/357319651","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-11T18:13:22+01:00","mostRecentVisitDate":"2022-03-11T18:13:22+01:00"}},{"node":{"id":"357381826","name":"Efosa Edegbe","memberUrl":"https://www.meetup.com/members/357381826","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-12T16:01:42+01:00","mostRecentVisitDate":"2022-03-12T16:01:42+01:00"}},{"node":{"id":"267619226","name":"Amina Amos Isah","memberUrl":"https://www.meetup.com/members/267619226","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-13T13:02:17+01:00","mostRecentVisitDate":"2022-03-13T13:02:17+01:00"}},{"node":{"id":"357498663","name":"Victor Okofu","memberUrl":"https://www.meetup.com/members/357498663","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-14T08:54:28+01:00","mostRecentVisitDate":"2022-04-02T04:05:25+01:00"}},{"node":{"id":"357513517","name":"DebbyD","memberUrl":"https://www.meetup.com/members/357513517","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-14T12:38:13+01:00","mostRecentVisitDate":"2022-03-14T12:38:13+01:00"}},{"node":{"id":"357568693","name":"Genevieve","memberUrl":"https://www.meetup.com/members/357568693","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-15T06:55:19+01:00","mostRecentVisitDate":"2022-03-15T06:55:19+01:00"}},{"node":{"id":"357582600","name":"Ayodele Jolasun","memberUrl":"https://www.meetup.com/members/357582600","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-15T11:13:08+01:00","mostRecentVisitDate":"2022-03-15T11:13:08+01:00"}},{"node":{"id":"341509554","name":"Sea Novaa","memberUrl":"https://www.meetup.com/members/341509554","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-15T21:01:52+01:00","mostRecentVisitDate":"2022-03-15T21:01:52+01:00"}},{"node":{"id":"357627097","name":"Confidence Amos","memberUrl":"https://www.meetup.com/members/357627097","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-15T23:24:12+01:00","mostRecentVisitDate":"2022-03-15T23:24:12+01:00"}},{"node":{"id":"357632457","name":"Olatoye Oluwaseun","memberUrl":"https://www.meetup.com/members/357632457","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-16T01:54:45+01:00","mostRecentVisitDate":"2022-03-16T01:54:45+01:00"}},{"node":{"id":"357639030","name":"Mfoniso Udoh","memberUrl":"https://www.meetup.com/members/357639030","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-16T04:48:28+01:00","mostRecentVisitDate":"2022-03-16T04:48:28+01:00"}},{"node":{"id":"357754876","name":"Pretty","memberUrl":"https://www.meetup.com/members/357754876","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-17T17:11:35+01:00","mostRecentVisitDate":"2022-03-17T17:11:35+01:00"}},{"node":{"id":"357851393","name":"Precious Opeyemi","memberUrl":"https://www.meetup.com/members/357851393","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-19T01:06:10+01:00","mostRecentVisitDate":"2022-03-19T01:06:10+01:00"}},{"node":{"id":"357862505","name":"Debby James ","memberUrl":"https://www.meetup.com/members/357862505","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-19T07:30:47+01:00","mostRecentVisitDate":"2022-03-19T07:30:47+01:00"}},{"node":{"id":"357942177","name":"funmilola ogunkoya","memberUrl":"https://www.meetup.com/members/357942177","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-20T09:40:18+01:00","mostRecentVisitDate":"2022-03-20T09:40:18+01:00"}},{"node":{"id":"299614214","name":"Maybelle","memberUrl":"https://www.meetup.com/members/299614214","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-20T15:24:51+01:00","mostRecentVisitDate":"2022-03-20T15:24:51+01:00"}},{"node":{"id":"358014363","name":"Fatimah","memberUrl":"https://www.meetup.com/members/358014363","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-21T08:03:35+01:00","mostRecentVisitDate":"2022-03-21T08:03:35+01:00"}},{"node":{"id":"357942612","name":"Akande Tunmise","memberUrl":"https://www.meetup.com/members/357942612","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-21T19:28:52+01:00","mostRecentVisitDate":"2022-03-21T19:28:52+01:00"}},{"node":{"id":"344357213","name":"Glory Archibong","memberUrl":"https://www.meetup.com/members/344357213","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-21T23:22:20+01:00","mostRecentVisitDate":"2022-03-21T23:22:20+01:00"}},{"node":{"id":"246008029","name":"Hope Ngerebara","memberUrl":"https://www.meetup.com/members/246008029","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-22T02:45:19+01:00","mostRecentVisitDate":"2022-03-22T02:45:19+01:00"}},{"node":{"id":"358101334","name":"Victoria","memberUrl":"https://www.meetup.com/members/358101334","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-22T11:02:51+01:00","mostRecentVisitDate":"2022-03-22T11:02:51+01:00"}},{"node":{"id":"321864638","name":"Prophet Daniel","memberUrl":"https://www.meetup.com/members/321864638","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-22T15:10:31+01:00","mostRecentVisitDate":"2022-03-22T15:10:31+01:00"}},{"node":{"id":"358134213","name":"Oghenerukevwe Egbaivwie ","memberUrl":"https://www.meetup.com/members/358134213","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-23T11:24:13+01:00","mostRecentVisitDate":"2022-03-23T11:24:13+01:00"}},{"node":{"id":"356028860","name":"Tahirih Atanga","memberUrl":"https://www.meetup.com/members/356028860","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-24T05:59:16+01:00","mostRecentVisitDate":"2022-03-24T05:59:16+01:00"}},{"node":{"id":"358245206","name":"Comfort","memberUrl":"https://www.meetup.com/members/358245206","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-24T09:09:41+01:00","mostRecentVisitDate":"2022-03-24T09:09:41+01:00"}},{"node":{"id":"358401017","name":"Roberta Okorie","memberUrl":"https://www.meetup.com/members/358401017","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-26T13:11:46+01:00","mostRecentVisitDate":"2022-03-26T13:11:46+01:00"}},{"node":{"id":"358442873","name":"Reuben Ekong","memberUrl":"https://www.meetup.com/members/358442873","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-27T01:40:05+01:00","mostRecentVisitDate":"2022-03-27T01:40:05+01:00"}},{"node":{"id":"274379696","name":"Mouna Belaid","memberUrl":"https://www.meetup.com/members/274379696","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-27T15:44:56+01:00","mostRecentVisitDate":"2022-03-27T15:44:56+01:00"}},{"node":{"id":"358539321","name":"Sandra Ngozika","memberUrl":"https://www.meetup.com/members/358539321","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-28T11:19:26+01:00","mostRecentVisitDate":"2022-03-28T11:19:26+01:00"}},{"node":{"id":"358584664","name":"suliat ikudaisi","memberUrl":"https://www.meetup.com/members/358584664","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-29T00:48:54+01:00","mostRecentVisitDate":"2022-03-29T00:48:54+01:00"}},{"node":{"id":"317401637","name":"Naimul Islam","memberUrl":"https://www.meetup.com/members/317401637","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-29T16:09:37+01:00","mostRecentVisitDate":"2022-03-29T16:09:37+01:00"}},{"node":{"id":"358641460","name":"Angela","memberUrl":"https://www.meetup.com/members/358641460","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-29T18:57:24+01:00","mostRecentVisitDate":"2022-03-29T18:57:24+01:00"}},{"node":{"id":"358687353","name":"Felicienne Laura","memberUrl":"https://www.meetup.com/members/358687353","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-30T12:36:41+01:00","mostRecentVisitDate":"2022-04-04T11:40:39+01:00"}},{"node":{"id":"358762542","name":"Mary Opeyemi Joshua","memberUrl":"https://www.meetup.com/members/358762542","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-03-31T11:04:10+01:00","mostRecentVisitDate":"2022-03-31T11:04:10+01:00"}},{"node":{"id":"357569364","name":" Adedoyin","memberUrl":"https://www.meetup.com/members/357569364","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-01T05:48:33+01:00","mostRecentVisitDate":"2022-04-01T05:48:33+01:00"}},{"node":{"id":"358976603","name":"Charles De General","memberUrl":"https://www.meetup.com/members/358976603","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-03T08:06:55+01:00","mostRecentVisitDate":"2022-04-03T08:06:55+01:00"}},{"node":{"id":"359040111","name":"Kenneth","memberUrl":"https://www.meetup.com/members/359040111","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-04T02:28:36+01:00","mostRecentVisitDate":"2022-04-04T02:28:36+01:00"}},{"node":{"id":"359047904","name":"Mhiz hamidat Onize","memberUrl":"https://www.meetup.com/members/359047904","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-04T05:37:02+01:00","mostRecentVisitDate":"2022-04-04T05:37:02+01:00"}},{"node":{"id":"359058144","name":"Judy Clone","memberUrl":"https://www.meetup.com/members/359058144","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-04T08:58:29+01:00","mostRecentVisitDate":"2022-04-04T08:58:29+01:00"}},{"node":{"id":"359062503","name":"Love Queen","memberUrl":"https://www.meetup.com/members/359062503","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-04T10:12:58+01:00","mostRecentVisitDate":"2022-04-04T10:12:58+01:00"}},{"node":{"id":"359065816","name":"Elly Elisha ","memberUrl":"https://www.meetup.com/members/359065816","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-04T10:59:59+01:00","mostRecentVisitDate":"2022-04-04T10:59:59+01:00"}},{"node":{"id":"359207349","name":"OMOLEWA Iyanuoluwa","memberUrl":"https://www.meetup.com/members/359207349","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-06T06:32:29+01:00","mostRecentVisitDate":"2022-04-06T06:32:29+01:00"}},{"node":{"id":"359244832","name":"Ify Phy","memberUrl":"https://www.meetup.com/members/359244832","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-06T16:49:16+01:00","mostRecentVisitDate":"2022-04-06T16:49:16+01:00"}},{"node":{"id":"359273426","name":"McCourt Johnmills","memberUrl":"https://www.meetup.com/members/359273426","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-07T02:41:24+01:00","mostRecentVisitDate":"2022-04-07T02:41:24+01:00"}},{"node":{"id":"359355880","name":"Nweze marvelous Uche","memberUrl":"https://www.meetup.com/members/359355880","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-08T05:50:27+01:00","mostRecentVisitDate":"2022-04-08T05:50:27+01:00"}},{"node":{"id":"359456164","name":"Dolapo Olalekan","memberUrl":"https://www.meetup.com/members/359456164","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-09T14:53:39+01:00","mostRecentVisitDate":"2022-04-09T14:53:39+01:00"}},{"node":{"id":"359468563","name":"Vee","memberUrl":"https://www.meetup.com/members/359468563","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-09T17:54:11+01:00","mostRecentVisitDate":"2022-04-09T17:54:11+01:00"}},{"node":{"id":"359519851","name":"Affordable Utensils","memberUrl":"https://www.meetup.com/members/359519851","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-10T12:33:12+01:00","mostRecentVisitDate":"2022-04-10T12:33:12+01:00"}},{"node":{"id":"359524516","name":"Yinka AKINTOMIWA","memberUrl":"https://www.meetup.com/members/359524516","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-10T13:45:39+01:00","mostRecentVisitDate":"2022-04-10T13:45:39+01:00"}},{"node":{"id":"359537596","name":"Kat Wizzy","memberUrl":"https://www.meetup.com/members/359537596","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-10T17:11:33+01:00","mostRecentVisitDate":"2022-04-10T17:11:33+01:00"}},{"node":{"id":"359547970","name":"Chigirl","memberUrl":"https://www.meetup.com/members/359547970","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-10T20:09:13+01:00","mostRecentVisitDate":"2022-04-10T20:09:13+01:00"}},{"node":{"id":"359574803","name":"Chidinma iheaturu","memberUrl":"https://www.meetup.com/members/359574803","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-11T06:23:54+01:00","mostRecentVisitDate":"2022-04-11T06:23:54+01:00"}},{"node":{"id":"359582998","name":"Cee ","memberUrl":"https://www.meetup.com/members/359582998","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-11T09:05:49+01:00","mostRecentVisitDate":"2022-04-11T09:05:49+01:00"}},{"node":{"id":"359657118","name":"Gerard maduabuchi","memberUrl":"https://www.meetup.com/members/359657118","memberPhoto":{"baseUrl":"https://secure-content.meetupstatic.com/images/classic-member/"}},"metadata":{"status":"ACTIVE","role":"MEMBER","joinedDate":"2022-04-12T08:28:24+01:00","mostRecentVisitDate":"2022-04-12T08:28:24+01:00"}}]}}}} - recorded_at: 2022-04-13 00:24:56 GMT + string: "{\"data\":{\"groupByUrlname\":{\"id\":\"32612004\",\"name\":\"R-Ladies + Lagos\",\"memberships\":{\"pageInfo\":{\"hasNextPage\":false,\"endCursor\":\"MTY2MzE1ODQ4OTAwMDozNzA3NTc1NzU=\"},\"count\":518,\"edges\":[{\"node\":{\"id\":\"251470805\",\"name\":\"R-Ladies + Global\",\"memberUrl\":\"https://www.meetup.com/members/251470805\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"LEADER\",\"role\":\"ORGANIZER\",\"joinedDate\":\"2019-08-16T09:45:21+01:00\",\"mostRecentVisitDate\":\"2019-08-16T09:45:21+01:00\"}},{\"node\":{\"id\":\"225839690\",\"name\":\"EYITAYO + ALIMI\",\"memberUrl\":\"https://www.meetup.com/members/225839690\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"LEADER\",\"role\":\"COORGANIZER\",\"joinedDate\":\"2019-08-16T15:33:34+01:00\",\"mostRecentVisitDate\":\"2022-08-14T13:51:41+01:00\"}},{\"node\":{\"id\":\"236466773\",\"name\":\"Adedamilola + Adekanye\",\"memberUrl\":\"https://www.meetup.com/members/236466773\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-16T16:00:28+01:00\",\"mostRecentVisitDate\":\"2019-08-21T01:57:32+01:00\"}},{\"node\":{\"id\":\"255806325\",\"name\":\"Helen\",\"memberUrl\":\"https://www.meetup.com/members/255806325\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-16T17:24:28+01:00\",\"mostRecentVisitDate\":\"2022-03-18T04:45:12+01:00\"}},{\"node\":{\"id\":\"287781170\",\"name\":\"Alvin\",\"memberUrl\":\"https://www.meetup.com/members/287781170\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-17T10:59:48+01:00\",\"mostRecentVisitDate\":\"2019-08-17T10:59:48+01:00\"}},{\"node\":{\"id\":\"266271010\",\"name\":\"ijeoma + benson\",\"memberUrl\":\"https://www.meetup.com/members/266271010\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-18T04:39:52+01:00\",\"mostRecentVisitDate\":\"2019-08-18T04:39:52+01:00\"}},{\"node\":{\"id\":\"284993544\",\"name\":\"Ochuko\",\"memberUrl\":\"https://www.meetup.com/members/284993544\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-18T06:50:46+01:00\",\"mostRecentVisitDate\":\"2019-09-16T04:45:34+01:00\"}},{\"node\":{\"id\":\"287837932\",\"name\":\"King + GREEN \",\"memberUrl\":\"https://www.meetup.com/members/287837932\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-18T07:41:58+01:00\",\"mostRecentVisitDate\":\"2019-08-18T07:41:58+01:00\"}},{\"node\":{\"id\":\"249638660\",\"name\":\"Folajimi + Aroloye\",\"memberUrl\":\"https://www.meetup.com/members/249638660\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-19T05:11:39+01:00\",\"mostRecentVisitDate\":\"2019-12-01T07:07:04+01:00\"}},{\"node\":{\"id\":\"287607204\",\"name\":\"Olaniyi + ayomide recheal \",\"memberUrl\":\"https://www.meetup.com/members/287607204\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-19T09:25:11+01:00\",\"mostRecentVisitDate\":\"2019-08-23T11:33:21+01:00\"}},{\"node\":{\"id\":\"253986501\",\"name\":\"Ofure + Ughu\",\"memberUrl\":\"https://www.meetup.com/members/253986501\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T04:21:36+01:00\",\"mostRecentVisitDate\":\"2019-08-20T04:21:36+01:00\"}},{\"node\":{\"id\":\"286549834\",\"name\":\"Adebukola + Cecilia Salami\",\"memberUrl\":\"https://www.meetup.com/members/286549834\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T08:16:40+01:00\",\"mostRecentVisitDate\":\"2020-01-13T05:14:17+01:00\"}},{\"node\":{\"id\":\"227583647\",\"name\":\"Daniel + Adeyemi\",\"memberUrl\":\"https://www.meetup.com/members/227583647\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T08:17:21+01:00\",\"mostRecentVisitDate\":\"2019-08-20T08:17:21+01:00\"}},{\"node\":{\"id\":\"288001297\",\"name\":\"Adelowo + Aisha\",\"memberUrl\":\"https://www.meetup.com/members/288001297\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T11:03:53+01:00\",\"mostRecentVisitDate\":\"2019-08-20T11:03:53+01:00\"}},{\"node\":{\"id\":\"288002559\",\"name\":\"grace + aruaka\",\"memberUrl\":\"https://www.meetup.com/members/288002559\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T11:24:28+01:00\",\"mostRecentVisitDate\":\"2019-09-09T12:14:47+01:00\"}},{\"node\":{\"id\":\"266376446\",\"name\":\"Sophiyat + Sadiq\",\"memberUrl\":\"https://www.meetup.com/members/266376446\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-20T17:40:48+01:00\",\"mostRecentVisitDate\":\"2019-08-20T17:40:48+01:00\"}},{\"node\":{\"id\":\"288149759\",\"name\":\"Filafa + Samuel\",\"memberUrl\":\"https://www.meetup.com/members/288149759\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-22T03:47:13+01:00\",\"mostRecentVisitDate\":\"2019-08-22T03:47:13+01:00\"}},{\"node\":{\"id\":\"284115565\",\"name\":\"ayomide + deborah\",\"memberUrl\":\"https://www.meetup.com/members/284115565\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-23T04:31:45+01:00\",\"mostRecentVisitDate\":\"2019-08-23T04:31:45+01:00\"}},{\"node\":{\"id\":\"287535963\",\"name\":\"Oghenemine + Nefertiti Nosakhare\",\"memberUrl\":\"https://www.meetup.com/members/287535963\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-23T05:12:57+01:00\",\"mostRecentVisitDate\":\"2019-09-20T13:02:33+01:00\"}},{\"node\":{\"id\":\"250410315\",\"name\":\"Bolaji + Mahridyah Quadri\",\"memberUrl\":\"https://www.meetup.com/members/250410315\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-24T02:33:23+01:00\",\"mostRecentVisitDate\":\"2020-01-15T11:16:16+01:00\"}},{\"node\":{\"id\":\"288349428\",\"name\":\"Maria\",\"memberUrl\":\"https://www.meetup.com/members/288349428\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-24T13:54:05+01:00\",\"mostRecentVisitDate\":\"2022-03-01T14:27:06+01:00\"}},{\"node\":{\"id\":\"285562836\",\"name\":\"Onyinye + iloanugo\",\"memberUrl\":\"https://www.meetup.com/members/285562836\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-25T08:12:49+01:00\",\"mostRecentVisitDate\":\"2019-08-25T08:12:49+01:00\"}},{\"node\":{\"id\":\"288423948\",\"name\":\"James\",\"memberUrl\":\"https://www.meetup.com/members/288423948\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-25T09:24:09+01:00\",\"mostRecentVisitDate\":\"2019-08-25T09:24:09+01:00\"}},{\"node\":{\"id\":\"282660820\",\"name\":\"Balogun + Hammed Damilola\",\"memberUrl\":\"https://www.meetup.com/members/282660820\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-25T12:56:56+01:00\",\"mostRecentVisitDate\":\"2019-09-15T06:42:50+01:00\"}},{\"node\":{\"id\":\"288175521\",\"name\":\"Oyoma + Ajari\",\"memberUrl\":\"https://www.meetup.com/members/288175521\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-26T04:53:20+01:00\",\"mostRecentVisitDate\":\"2019-08-26T04:53:20+01:00\"}},{\"node\":{\"id\":\"286067088\",\"name\":\"Sofiat\",\"memberUrl\":\"https://www.meetup.com/members/286067088\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-28T09:17:18+01:00\",\"mostRecentVisitDate\":\"2019-08-28T09:17:18+01:00\"}},{\"node\":{\"id\":\"288695386\",\"name\":\"Bolatito + Gbadegesin\",\"memberUrl\":\"https://www.meetup.com/members/288695386\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-28T09:20:04+01:00\",\"mostRecentVisitDate\":\"2019-08-28T09:20:04+01:00\"}},{\"node\":{\"id\":\"257708960\",\"name\":\"Stella + Adewole-Ozemoya\",\"memberUrl\":\"https://www.meetup.com/members/257708960\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-28T12:19:59+01:00\",\"mostRecentVisitDate\":\"2019-08-28T12:19:59+01:00\"}},{\"node\":{\"id\":\"288761543\",\"name\":\"Victoria + Bunmi Adegboye\",\"memberUrl\":\"https://www.meetup.com/members/288761543\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-29T05:12:38+01:00\",\"mostRecentVisitDate\":\"2019-08-29T05:12:38+01:00\"}},{\"node\":{\"id\":\"288765219\",\"name\":\"John + A.\",\"memberUrl\":\"https://www.meetup.com/members/288765219\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-29T06:41:45+01:00\",\"mostRecentVisitDate\":\"2019-08-29T06:41:45+01:00\"}},{\"node\":{\"id\":\"288783047\",\"name\":\"Ngozi + Ndefo\",\"memberUrl\":\"https://www.meetup.com/members/288783047\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-29T10:04:19+01:00\",\"mostRecentVisitDate\":\"2019-12-01T08:36:51+01:00\"}},{\"node\":{\"id\":\"281981743\",\"name\":\"Olabimpe + Faniyi\",\"memberUrl\":\"https://www.meetup.com/members/281981743\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-29T16:26:02+01:00\",\"mostRecentVisitDate\":\"2019-08-29T16:26:02+01:00\"}},{\"node\":{\"id\":\"267840974\",\"name\":\"Ovakporoye + Asite\",\"memberUrl\":\"https://www.meetup.com/members/267840974\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-30T04:44:16+01:00\",\"mostRecentVisitDate\":\"2020-01-13T05:02:01+01:00\"}},{\"node\":{\"id\":\"288935918\",\"name\":\"Subair + Hussein Kehinde\",\"memberUrl\":\"https://www.meetup.com/members/288935918\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-08-30T16:55:16+01:00\",\"mostRecentVisitDate\":\"2019-08-30T16:55:16+01:00\"}},{\"node\":{\"id\":\"289096902\",\"name\":\"Mmesomachukwu + Osele\",\"memberUrl\":\"https://www.meetup.com/members/289096902\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-01T04:14:25+01:00\",\"mostRecentVisitDate\":\"2019-09-01T04:14:25+01:00\"}},{\"node\":{\"id\":\"289111589\",\"name\":\"Abayomi + Adekanbi\",\"memberUrl\":\"https://www.meetup.com/members/289111589\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-01T08:03:58+01:00\",\"mostRecentVisitDate\":\"2019-09-01T08:03:58+01:00\"}},{\"node\":{\"id\":\"265886938\",\"name\":\"cherechukwu\",\"memberUrl\":\"https://www.meetup.com/members/265886938\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-01T10:05+01:00\",\"mostRecentVisitDate\":\"2019-09-01T10:05+01:00\"}},{\"node\":{\"id\":\"250146611\",\"name\":\"David + Aluko\",\"memberUrl\":\"https://www.meetup.com/members/250146611\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-02T14:29:46+01:00\",\"mostRecentVisitDate\":\"2022-03-25T07:55:43+01:00\"}},{\"node\":{\"id\":\"266712797\",\"name\":\"Sule + Amidat\",\"memberUrl\":\"https://www.meetup.com/members/266712797\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-03T11:03:46+01:00\",\"mostRecentVisitDate\":\"2019-09-03T11:03:46+01:00\"}},{\"node\":{\"id\":\"273495540\",\"name\":\"Oluwatosin + Olaoye\",\"memberUrl\":\"https://www.meetup.com/members/273495540\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-04T05:36:56+01:00\",\"mostRecentVisitDate\":\"2019-09-04T05:36:56+01:00\"}},{\"node\":{\"id\":\"262176257\",\"name\":\"ogundiran + modupe\",\"memberUrl\":\"https://www.meetup.com/members/262176257\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-04T06:24:22+01:00\",\"mostRecentVisitDate\":\"2019-09-04T06:24:22+01:00\"}},{\"node\":{\"id\":\"237081990\",\"name\":\"Peculiar + Ediomo-Abasi\",\"memberUrl\":\"https://www.meetup.com/members/237081990\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-04T06:56:42+01:00\",\"mostRecentVisitDate\":\"2019-09-04T06:56:42+01:00\"}},{\"node\":{\"id\":\"230948066\",\"name\":\"Esther + \",\"memberUrl\":\"https://www.meetup.com/members/230948066\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-06T04:30:55+01:00\",\"mostRecentVisitDate\":\"2019-09-21T05:15:17+01:00\"}},{\"node\":{\"id\":\"289898251\",\"name\":\"Bukola + Balogun\",\"memberUrl\":\"https://www.meetup.com/members/289898251\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-07T09:17:12+01:00\",\"mostRecentVisitDate\":\"2019-09-15T10:16:08+01:00\"}},{\"node\":{\"id\":\"289995352\",\"name\":\"Kemisola\",\"memberUrl\":\"https://www.meetup.com/members/289995352\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-08T05:28:08+01:00\",\"mostRecentVisitDate\":\"2019-09-08T05:28:08+01:00\"}},{\"node\":{\"id\":\"282658275\",\"name\":\"Lola\",\"memberUrl\":\"https://www.meetup.com/members/282658275\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-08T15:20:22+01:00\",\"mostRecentVisitDate\":\"2019-09-08T15:20:22+01:00\"}},{\"node\":{\"id\":\"290205097\",\"name\":\"Chinonso + Anne Obasi\",\"memberUrl\":\"https://www.meetup.com/members/290205097\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-09T16:06:39+01:00\",\"mostRecentVisitDate\":\"2019-09-09T16:06:39+01:00\"}},{\"node\":{\"id\":\"281974630\",\"name\":\"samuel + adewole\",\"memberUrl\":\"https://www.meetup.com/members/281974630\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-10T14:20:08+01:00\",\"mostRecentVisitDate\":\"2019-09-10T14:20:08+01:00\"}},{\"node\":{\"id\":\"290467825\",\"name\":\"YGMB + OFFICIAL\",\"memberUrl\":\"https://www.meetup.com/members/290467825\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-11T07:51:20+01:00\",\"mostRecentVisitDate\":\"2019-09-11T07:51:20+01:00\"}},{\"node\":{\"id\":\"229326061\",\"name\":\"Ruth + Sobande\",\"memberUrl\":\"https://www.meetup.com/members/229326061\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-11T15:55:27+01:00\",\"mostRecentVisitDate\":\"2019-09-11T15:55:27+01:00\"}},{\"node\":{\"id\":\"290597679\",\"name\":\"IBRAHIM + AKINOSO HALIMAT\",\"memberUrl\":\"https://www.meetup.com/members/290597679\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-12T05:06:30+01:00\",\"mostRecentVisitDate\":\"2019-09-12T05:06:30+01:00\"}},{\"node\":{\"id\":\"290742389\",\"name\":\"Faith + Tobi\",\"memberUrl\":\"https://www.meetup.com/members/290742389\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-13T03:59:14+01:00\",\"mostRecentVisitDate\":\"2019-09-13T03:59:14+01:00\"}},{\"node\":{\"id\":\"290884916\",\"name\":\"Favour + Eriba Idoko\",\"memberUrl\":\"https://www.meetup.com/members/290884916\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-14T02:41:56+01:00\",\"mostRecentVisitDate\":\"2019-09-14T02:41:56+01:00\"}},{\"node\":{\"id\":\"290972479\",\"name\":\"Akande + Maryam\",\"memberUrl\":\"https://www.meetup.com/members/290972479\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-14T16:23:34+01:00\",\"mostRecentVisitDate\":\"2019-09-14T16:23:34+01:00\"}},{\"node\":{\"id\":\"291035068\",\"name\":\"Tomisin\",\"memberUrl\":\"https://www.meetup.com/members/291035068\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-15T08:46:37+01:00\",\"mostRecentVisitDate\":\"2019-09-15T08:46:37+01:00\"}},{\"node\":{\"id\":\"291037290\",\"name\":\"Kehinde + Ogunshina\",\"memberUrl\":\"https://www.meetup.com/members/291037290\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-15T09:15:20+01:00\",\"mostRecentVisitDate\":\"2019-09-15T09:15:20+01:00\"}},{\"node\":{\"id\":\"267886226\",\"name\":\"Abubakar + Emmanuella Faridat\",\"memberUrl\":\"https://www.meetup.com/members/267886226\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-16T06:40:27+01:00\",\"mostRecentVisitDate\":\"2019-09-16T06:40:27+01:00\"}},{\"node\":{\"id\":\"291163782\",\"name\":\"Companylogan\",\"memberUrl\":\"https://www.meetup.com/members/291163782\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-16T12:11:22+01:00\",\"mostRecentVisitDate\":\"2019-09-16T12:11:22+01:00\"}},{\"node\":{\"id\":\"291163622\",\"name\":\"Anyaoha + Prince Chukwubuikem\",\"memberUrl\":\"https://www.meetup.com/members/291163622\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-16T12:12:03+01:00\",\"mostRecentVisitDate\":\"2019-09-16T12:12:03+01:00\"}},{\"node\":{\"id\":\"284105768\",\"name\":\"Temitayo + Olatunji\",\"memberUrl\":\"https://www.meetup.com/members/284105768\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-17T15:49:03+01:00\",\"mostRecentVisitDate\":\"2020-02-20T16:08:36+01:00\"}},{\"node\":{\"id\":\"291365498\",\"name\":\"Abosede\",\"memberUrl\":\"https://www.meetup.com/members/291365498\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-18T07:40:55+01:00\",\"mostRecentVisitDate\":\"2019-09-18T07:40:55+01:00\"}},{\"node\":{\"id\":\"291372337\",\"name\":\"Seth + Clinton\",\"memberUrl\":\"https://www.meetup.com/members/291372337\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-18T09:04:31+01:00\",\"mostRecentVisitDate\":\"2019-09-18T09:04:31+01:00\"}},{\"node\":{\"id\":\"282639163\",\"name\":\"Samuel + Adewole\",\"memberUrl\":\"https://www.meetup.com/members/282639163\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-20T16:17:50+01:00\",\"mostRecentVisitDate\":\"2019-09-20T16:17:50+01:00\"}},{\"node\":{\"id\":\"291702701\",\"name\":\"afiamma + adiakpantin\",\"memberUrl\":\"https://www.meetup.com/members/291702701\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-21T06:16:49+01:00\",\"mostRecentVisitDate\":\"2019-12-06T05:05:50+01:00\"}},{\"node\":{\"id\":\"291930092\",\"name\":\"Victoria + Olotewo\",\"memberUrl\":\"https://www.meetup.com/members/291930092\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-23T06:14:23+01:00\",\"mostRecentVisitDate\":\"2019-09-23T06:14:23+01:00\"}},{\"node\":{\"id\":\"291991163\",\"name\":\"Nura + Adam\",\"memberUrl\":\"https://www.meetup.com/members/291991163\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-23T19:09:46+01:00\",\"mostRecentVisitDate\":\"2019-09-23T19:09:46+01:00\"}},{\"node\":{\"id\":\"292070712\",\"name\":\"Tawiah + David\",\"memberUrl\":\"https://www.meetup.com/members/292070712\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-24T17:24:34+01:00\",\"mostRecentVisitDate\":\"2019-09-24T17:24:34+01:00\"}},{\"node\":{\"id\":\"292263715\",\"name\":\"Peter + INOX\",\"memberUrl\":\"https://www.meetup.com/members/292263715\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-26T23:13:35+01:00\",\"mostRecentVisitDate\":\"2019-09-26T23:13:35+01:00\"}},{\"node\":{\"id\":\"292285668\",\"name\":\"Enoch + Williams\",\"memberUrl\":\"https://www.meetup.com/members/292285668\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-27T05:23:05+01:00\",\"mostRecentVisitDate\":\"2019-09-27T05:23:05+01:00\"}},{\"node\":{\"id\":\"292290282\",\"name\":\"Olasupo + Mayowa\",\"memberUrl\":\"https://www.meetup.com/members/292290282\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-27T06:49:09+01:00\",\"mostRecentVisitDate\":\"2019-09-27T06:49:09+01:00\"}},{\"node\":{\"id\":\"292329006\",\"name\":\"Falohun + Dare\",\"memberUrl\":\"https://www.meetup.com/members/292329006\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-27T16:12:25+01:00\",\"mostRecentVisitDate\":\"2019-09-27T16:12:25+01:00\"}},{\"node\":{\"id\":\"292379718\",\"name\":\"Kindy + orimolade \",\"memberUrl\":\"https://www.meetup.com/members/292379718\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-28T07:45:05+01:00\",\"mostRecentVisitDate\":\"2020-02-02T17:30:02+01:00\"}},{\"node\":{\"id\":\"292676110\",\"name\":\"Ejeh + Egede Khris Rosse\",\"memberUrl\":\"https://www.meetup.com/members/292676110\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-09-30T12:53:37+01:00\",\"mostRecentVisitDate\":\"2019-09-30T12:53:37+01:00\"}},{\"node\":{\"id\":\"292753838\",\"name\":\"Triumph + Bayo\",\"memberUrl\":\"https://www.meetup.com/members/292753838\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-01T07:32:12+01:00\",\"mostRecentVisitDate\":\"2019-10-01T07:32:12+01:00\"}},{\"node\":{\"id\":\"292986054\",\"name\":\"Eniola + Ogunlade\",\"memberUrl\":\"https://www.meetup.com/members/292986054\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-02T22:37:24+01:00\",\"mostRecentVisitDate\":\"2019-10-02T22:37:24+01:00\"}},{\"node\":{\"id\":\"293135655\",\"name\":\"Peter + Michael \",\"memberUrl\":\"https://www.meetup.com/members/293135655\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-04T03:02:04+01:00\",\"mostRecentVisitDate\":\"2019-10-04T03:02:04+01:00\"}},{\"node\":{\"id\":\"277731416\",\"name\":\"Salisu + Azeem Akinlabi\",\"memberUrl\":\"https://www.meetup.com/members/277731416\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-04T05:50:33+01:00\",\"mostRecentVisitDate\":\"2019-10-04T05:50:33+01:00\"}},{\"node\":{\"id\":\"293151074\",\"name\":\"Jaiyeola + Adeiza Ismail\",\"memberUrl\":\"https://www.meetup.com/members/293151074\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-04T06:17:30+01:00\",\"mostRecentVisitDate\":\"2019-10-04T06:17:30+01:00\"}},{\"node\":{\"id\":\"293241409\",\"name\":\"Kaffo + Olalekan\",\"memberUrl\":\"https://www.meetup.com/members/293241409\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-05T00:22:13+01:00\",\"mostRecentVisitDate\":\"2019-10-05T00:22:13+01:00\"}},{\"node\":{\"id\":\"293662457\",\"name\":\"Afolabi + Ayotunde\",\"memberUrl\":\"https://www.meetup.com/members/293662457\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-08T04:59:39+01:00\",\"mostRecentVisitDate\":\"2019-10-08T04:59:39+01:00\"}},{\"node\":{\"id\":\"289620822\",\"name\":\"Alabi + Chelsea Yetunde\",\"memberUrl\":\"https://www.meetup.com/members/289620822\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-10T12:47:52+01:00\",\"mostRecentVisitDate\":\"2019-10-19T07:07:55+01:00\"}},{\"node\":{\"id\":\"293957613\",\"name\":\"Osawe + Josef\",\"memberUrl\":\"https://www.meetup.com/members/293957613\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-11T03:31:11+01:00\",\"mostRecentVisitDate\":\"2019-10-11T03:31:11+01:00\"}},{\"node\":{\"id\":\"293967800\",\"name\":\"Wale\",\"memberUrl\":\"https://www.meetup.com/members/293967800\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-11T06:26:31+01:00\",\"mostRecentVisitDate\":\"2019-10-11T06:26:31+01:00\"}},{\"node\":{\"id\":\"293964400\",\"name\":\"Omowunmi + Rukayat Lawal\",\"memberUrl\":\"https://www.meetup.com/members/293964400\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-11T11:37:11+01:00\",\"mostRecentVisitDate\":\"2020-01-17T10:39:37+01:00\"}},{\"node\":{\"id\":\"294124202\",\"name\":\"Mike01\",\"memberUrl\":\"https://www.meetup.com/members/294124202\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-12T15:26:15+01:00\",\"mostRecentVisitDate\":\"2020-02-19T05:06:51+01:00\"}},{\"node\":{\"id\":\"294193031\",\"name\":\"Yeancah + Dolapo\",\"memberUrl\":\"https://www.meetup.com/members/294193031\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-13T15:51+01:00\",\"mostRecentVisitDate\":\"2019-10-13T15:51+01:00\"}},{\"node\":{\"id\":\"294269582\",\"name\":\"Joy + Jakpa\",\"memberUrl\":\"https://www.meetup.com/members/294269582\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-14T17:21:12+01:00\",\"mostRecentVisitDate\":\"2019-10-14T17:21:12+01:00\"}},{\"node\":{\"id\":\"294302747\",\"name\":\"AKINLADENU + FIYINFOLUWA\",\"memberUrl\":\"https://www.meetup.com/members/294302747\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-15T05:31:28+01:00\",\"mostRecentVisitDate\":\"2019-10-15T05:31:28+01:00\"}},{\"node\":{\"id\":\"294319056\",\"name\":\"Olori + Bukolami\",\"memberUrl\":\"https://www.meetup.com/members/294319056\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-15T10:56:52+01:00\",\"mostRecentVisitDate\":\"2019-10-15T10:56:52+01:00\"}},{\"node\":{\"id\":\"294411398\",\"name\":\"Abubakar + Muhammad Hassan\",\"memberUrl\":\"https://www.meetup.com/members/294411398\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-16T14:22:01+01:00\",\"mostRecentVisitDate\":\"2019-10-16T14:22:01+01:00\"}},{\"node\":{\"id\":\"294959894\",\"name\":\"Abolade + Abdullahi\",\"memberUrl\":\"https://www.meetup.com/members/294959894\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-22T18:06:49+01:00\",\"mostRecentVisitDate\":\"2019-10-22T18:06:49+01:00\"}},{\"node\":{\"id\":\"294998332\",\"name\":\"Aniche + Precious\",\"memberUrl\":\"https://www.meetup.com/members/294998332\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-23T09:14:06+01:00\",\"mostRecentVisitDate\":\"2019-10-23T09:14:06+01:00\"}},{\"node\":{\"id\":\"295069073\",\"name\":\"Okejas + Mathomas\",\"memberUrl\":\"https://www.meetup.com/members/295069073\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-24T10:22:43+01:00\",\"mostRecentVisitDate\":\"2019-10-24T10:22:43+01:00\"}},{\"node\":{\"id\":\"295096549\",\"name\":\"eniola + adewunmi\",\"memberUrl\":\"https://www.meetup.com/members/295096549\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-24T18:03:32+01:00\",\"mostRecentVisitDate\":\"2019-10-24T18:03:32+01:00\"}},{\"node\":{\"id\":\"295057967\",\"name\":\"John + Inyang\",\"memberUrl\":\"https://www.meetup.com/members/295057967\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-25T08:29:19+01:00\",\"mostRecentVisitDate\":\"2019-10-25T08:29:19+01:00\"}},{\"node\":{\"id\":\"295444522\",\"name\":\"Adimibe + Fortune\",\"memberUrl\":\"https://www.meetup.com/members/295444522\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-30T06:29:30+01:00\",\"mostRecentVisitDate\":\"2019-11-09T20:16:35+01:00\"}},{\"node\":{\"id\":\"295513660\",\"name\":\"prof + dynamite\",\"memberUrl\":\"https://www.meetup.com/members/295513660\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-10-31T09:31:56+01:00\",\"mostRecentVisitDate\":\"2019-10-31T09:31:56+01:00\"}},{\"node\":{\"id\":\"295558530\",\"name\":\"Ayomide + Akinwale\",\"memberUrl\":\"https://www.meetup.com/members/295558530\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-01T03:13:39+01:00\",\"mostRecentVisitDate\":\"2019-11-01T03:13:39+01:00\"}},{\"node\":{\"id\":\"295178489\",\"name\":\"Irene + Bernard Uwah\",\"memberUrl\":\"https://www.meetup.com/members/295178489\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-01T05:21:47+01:00\",\"mostRecentVisitDate\":\"2019-11-01T05:21:47+01:00\"}},{\"node\":{\"id\":\"295782287\",\"name\":\"Ola + Olowu\",\"memberUrl\":\"https://www.meetup.com/members/295782287\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-04T15:20:56+01:00\",\"mostRecentVisitDate\":\"2019-11-04T15:20:56+01:00\"}},{\"node\":{\"id\":\"295953505\",\"name\":\"Gem + Miriam Chinua\",\"memberUrl\":\"https://www.meetup.com/members/295953505\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-07T05:38:34+01:00\",\"mostRecentVisitDate\":\"2019-11-07T05:38:34+01:00\"}},{\"node\":{\"id\":\"295985935\",\"name\":\"Anuoluwapo\",\"memberUrl\":\"https://www.meetup.com/members/295985935\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-07T16:17:47+01:00\",\"mostRecentVisitDate\":\"2019-11-07T16:17:47+01:00\"}},{\"node\":{\"id\":\"296021392\",\"name\":\"SANDRA + \",\"memberUrl\":\"https://www.meetup.com/members/296021392\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-08T07:16:31+01:00\",\"mostRecentVisitDate\":\"2020-01-17T12:26:52+01:00\"}},{\"node\":{\"id\":\"296102426\",\"name\":\"Rapheal + Ogundiran\",\"memberUrl\":\"https://www.meetup.com/members/296102426\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-09T13:57:27+01:00\",\"mostRecentVisitDate\":\"2019-11-09T13:57:27+01:00\"}},{\"node\":{\"id\":\"296266049\",\"name\":\"Frank + Obasogie\",\"memberUrl\":\"https://www.meetup.com/members/296266049\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-12T05:13:36+01:00\",\"mostRecentVisitDate\":\"2019-11-12T05:13:36+01:00\"}},{\"node\":{\"id\":\"296340598\",\"name\":\"Ashala + Ebube\",\"memberUrl\":\"https://www.meetup.com/members/296340598\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-13T08:56:29+01:00\",\"mostRecentVisitDate\":\"2019-11-13T08:56:29+01:00\"}},{\"node\":{\"id\":\"296367660\",\"name\":\"kwin + Queen\",\"memberUrl\":\"https://www.meetup.com/members/296367660\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-13T17:51:47+01:00\",\"mostRecentVisitDate\":\"2019-11-13T17:51:47+01:00\"}},{\"node\":{\"id\":\"296396709\",\"name\":\"Abdullah\",\"memberUrl\":\"https://www.meetup.com/members/296396709\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-14T07:14:33+01:00\",\"mostRecentVisitDate\":\"2019-11-14T07:14:33+01:00\"}},{\"node\":{\"id\":\"296707068\",\"name\":\"Joy\",\"memberUrl\":\"https://www.meetup.com/members/296707068\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-16T17:10:47+01:00\",\"mostRecentVisitDate\":\"2019-11-16T17:10:47+01:00\"}},{\"node\":{\"id\":\"294352487\",\"name\":\"Daniel + Babatunde\",\"memberUrl\":\"https://www.meetup.com/members/294352487\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-17T09:59:11+01:00\",\"mostRecentVisitDate\":\"2019-11-17T09:59:11+01:00\"}},{\"node\":{\"id\":\"296821241\",\"name\":\"Rukayat + Raji\",\"memberUrl\":\"https://www.meetup.com/members/296821241\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-17T12:28:22+01:00\",\"mostRecentVisitDate\":\"2020-02-20T22:33:51+01:00\"}},{\"node\":{\"id\":\"296830502\",\"name\":\"Tochukwu + Ogbonna\",\"memberUrl\":\"https://www.meetup.com/members/296830502\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-17T13:53:48+01:00\",\"mostRecentVisitDate\":\"2019-11-17T13:53:48+01:00\"}},{\"node\":{\"id\":\"297069632\",\"name\":\"Precious + IgoBreak Evwaraye\",\"memberUrl\":\"https://www.meetup.com/members/297069632\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-19T17:06:55+01:00\",\"mostRecentVisitDate\":\"2019-11-19T17:06:55+01:00\"}},{\"node\":{\"id\":\"297175497\",\"name\":\"Samuel + Tosin\",\"memberUrl\":\"https://www.meetup.com/members/297175497\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-21T12:27:09+01:00\",\"mostRecentVisitDate\":\"2019-11-21T12:27:09+01:00\"}},{\"node\":{\"id\":\"297206212\",\"name\":\"Kofoworola\",\"memberUrl\":\"https://www.meetup.com/members/297206212\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-22T00:18+01:00\",\"mostRecentVisitDate\":\"2019-11-22T00:18+01:00\"}},{\"node\":{\"id\":\"297387178\",\"name\":\"Sarah + Nneoma\",\"memberUrl\":\"https://www.meetup.com/members/297387178\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-25T07:54:27+01:00\",\"mostRecentVisitDate\":\"2019-11-27T03:31:49+01:00\"}},{\"node\":{\"id\":\"297408610\",\"name\":\"Cindy + Shontan\",\"memberUrl\":\"https://www.meetup.com/members/297408610\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-25T15:23:36+01:00\",\"mostRecentVisitDate\":\"2019-11-25T15:23:36+01:00\"}},{\"node\":{\"id\":\"297446550\",\"name\":\"Ola\",\"memberUrl\":\"https://www.meetup.com/members/297446550\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-26T08:08:04+01:00\",\"mostRecentVisitDate\":\"2019-11-26T08:08:04+01:00\"}},{\"node\":{\"id\":\"297458058\",\"name\":\"Yinka + Olagunju Alabi\",\"memberUrl\":\"https://www.meetup.com/members/297458058\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-26T11:58+01:00\",\"mostRecentVisitDate\":\"2019-11-26T11:58+01:00\"}},{\"node\":{\"id\":\"297471219\",\"name\":\"joyce + fred\",\"memberUrl\":\"https://www.meetup.com/members/297471219\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-26T16:34:24+01:00\",\"mostRecentVisitDate\":\"2019-11-26T16:34:24+01:00\"}},{\"node\":{\"id\":\"297495462\",\"name\":\"Kenneth + Naza\",\"memberUrl\":\"https://www.meetup.com/members/297495462\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-27T03:34:31+01:00\",\"mostRecentVisitDate\":\"2019-11-27T03:34:31+01:00\"}},{\"node\":{\"id\":\"297498057\",\"name\":\"Abolarinwa + Ismaeel Quadri\",\"memberUrl\":\"https://www.meetup.com/members/297498057\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-27T04:46:58+01:00\",\"mostRecentVisitDate\":\"2019-11-27T04:46:58+01:00\"}},{\"node\":{\"id\":\"297502172\",\"name\":\"Mariam + Atoyebi\",\"memberUrl\":\"https://www.meetup.com/members/297502172\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-27T06:45:56+01:00\",\"mostRecentVisitDate\":\"2019-11-27T06:45:56+01:00\"}},{\"node\":{\"id\":\"297609255\",\"name\":\"Cynthia + Agada\",\"memberUrl\":\"https://www.meetup.com/members/297609255\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-29T07:28:59+01:00\",\"mostRecentVisitDate\":\"2019-11-29T07:28:59+01:00\"}},{\"node\":{\"id\":\"297609914\",\"name\":\"Omowunmi\",\"memberUrl\":\"https://www.meetup.com/members/297609914\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-29T07:50:03+01:00\",\"mostRecentVisitDate\":\"2019-11-29T07:50:03+01:00\"}},{\"node\":{\"id\":\"297669171\",\"name\":\"akinsemoyin + zainab\",\"memberUrl\":\"https://www.meetup.com/members/297669171\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-11-30T09:48:23+01:00\",\"mostRecentVisitDate\":\"2019-11-30T09:48:23+01:00\"}},{\"node\":{\"id\":\"293305608\",\"name\":\"omotiba + tomilola\",\"memberUrl\":\"https://www.meetup.com/members/293305608\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-02T04:41:03+01:00\",\"mostRecentVisitDate\":\"2022-03-01T03:20:05+01:00\"}},{\"node\":{\"id\":\"297792719\",\"name\":\"Chiamaka + Agba\",\"memberUrl\":\"https://www.meetup.com/members/297792719\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-02T11:22:30+01:00\",\"mostRecentVisitDate\":\"2019-12-03T06:08:28+01:00\"}},{\"node\":{\"id\":\"297810014\",\"name\":\"Adaora + Asiegbu\",\"memberUrl\":\"https://www.meetup.com/members/297810014\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-02T16:27:36+01:00\",\"mostRecentVisitDate\":\"2019-12-02T16:27:36+01:00\"}},{\"node\":{\"id\":\"297854214\",\"name\":\"Toyosi + Samuel\",\"memberUrl\":\"https://www.meetup.com/members/297854214\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-03T10:13:20+01:00\",\"mostRecentVisitDate\":\"2019-12-03T10:13:20+01:00\"}},{\"node\":{\"id\":\"297861149\",\"name\":\"Oja + Daddy\",\"memberUrl\":\"https://www.meetup.com/members/297861149\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-03T12:26:10+01:00\",\"mostRecentVisitDate\":\"2019-12-03T12:26:10+01:00\"}},{\"node\":{\"id\":\"297935903\",\"name\":\"Grace + Oyedele\",\"memberUrl\":\"https://www.meetup.com/members/297935903\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-04T15:24:36+01:00\",\"mostRecentVisitDate\":\"2020-01-13T06:59:49+01:00\"}},{\"node\":{\"id\":\"297972748\",\"name\":\"Awuto + Peace\",\"memberUrl\":\"https://www.meetup.com/members/297972748\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-05T07:20:13+01:00\",\"mostRecentVisitDate\":\"2019-12-05T07:20:13+01:00\"}},{\"node\":{\"id\":\"297980690\",\"name\":\"Olivia + Tobi Babs\",\"memberUrl\":\"https://www.meetup.com/members/297980690\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-05T10:18:37+01:00\",\"mostRecentVisitDate\":\"2019-12-05T10:18:37+01:00\"}},{\"node\":{\"id\":\"297991890\",\"name\":\"Uchendu\",\"memberUrl\":\"https://www.meetup.com/members/297991890\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-05T13:56:11+01:00\",\"mostRecentVisitDate\":\"2019-12-05T13:56:11+01:00\"}},{\"node\":{\"id\":\"298033374\",\"name\":\"iyke + azubuike\",\"memberUrl\":\"https://www.meetup.com/members/298033374\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-06T07:21:12+01:00\",\"mostRecentVisitDate\":\"2019-12-06T07:21:12+01:00\"}},{\"node\":{\"id\":\"298036314\",\"name\":\"Tayo + Gbemibade\",\"memberUrl\":\"https://www.meetup.com/members/298036314\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-06T08:45:12+01:00\",\"mostRecentVisitDate\":\"2019-12-06T08:45:12+01:00\"}},{\"node\":{\"id\":\"298097880\",\"name\":\"La + Priscillias kitchen\",\"memberUrl\":\"https://www.meetup.com/members/298097880\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-07T09:44:04+01:00\",\"mostRecentVisitDate\":\"2019-12-07T09:44:04+01:00\"}},{\"node\":{\"id\":\"298156680\",\"name\":\"Olubunmi + Adebowale\",\"memberUrl\":\"https://www.meetup.com/members/298156680\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-08T09:49:16+01:00\",\"mostRecentVisitDate\":\"2019-12-08T09:49:16+01:00\"}},{\"node\":{\"id\":\"298175985\",\"name\":\"Tolulope + Akomolafe\",\"memberUrl\":\"https://www.meetup.com/members/298175985\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-08T16:10:58+01:00\",\"mostRecentVisitDate\":\"2019-12-08T16:10:58+01:00\"}},{\"node\":{\"id\":\"298285352\",\"name\":\"Tobore + Ivan Obukohwo\",\"memberUrl\":\"https://www.meetup.com/members/298285352\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-10T10:50:48+01:00\",\"mostRecentVisitDate\":\"2019-12-10T10:50:48+01:00\"}},{\"node\":{\"id\":\"298402421\",\"name\":\"Emiola + lawrence\",\"memberUrl\":\"https://www.meetup.com/members/298402421\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-12T10:42:03+01:00\",\"mostRecentVisitDate\":\"2019-12-12T10:42:03+01:00\"}},{\"node\":{\"id\":\"298468408\",\"name\":\"Peak + channel\",\"memberUrl\":\"https://www.meetup.com/members/298468408\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-13T14:31:08+01:00\",\"mostRecentVisitDate\":\"2019-12-13T14:31:08+01:00\"}},{\"node\":{\"id\":\"298496386\",\"name\":\"Pappy + Coker\",\"memberUrl\":\"https://www.meetup.com/members/298496386\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-14T02:29:17+01:00\",\"mostRecentVisitDate\":\"2019-12-14T02:29:17+01:00\"}},{\"node\":{\"id\":\"298670657\",\"name\":\"Glitz + Research\",\"memberUrl\":\"https://www.meetup.com/members/298670657\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-17T08:39:25+01:00\",\"mostRecentVisitDate\":\"2019-12-17T08:39:25+01:00\"}},{\"node\":{\"id\":\"298806334\",\"name\":\"Ames + Muhammed\",\"memberUrl\":\"https://www.meetup.com/members/298806334\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-19T14:57:44+01:00\",\"mostRecentVisitDate\":\"2019-12-19T14:57:44+01:00\"}},{\"node\":{\"id\":\"298857701\",\"name\":\"Ife + Oladimeji\",\"memberUrl\":\"https://www.meetup.com/members/298857701\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-20T14:47:08+01:00\",\"mostRecentVisitDate\":\"2019-12-20T14:47:08+01:00\"}},{\"node\":{\"id\":\"298923554\",\"name\":\"Ajiboye + Foladara\",\"memberUrl\":\"https://www.meetup.com/members/298923554\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-21T20:43:42+01:00\",\"mostRecentVisitDate\":\"2019-12-21T20:43:42+01:00\"}},{\"node\":{\"id\":\"299202424\",\"name\":\"Tina + Chi\",\"memberUrl\":\"https://www.meetup.com/members/299202424\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-27T13:54:47+01:00\",\"mostRecentVisitDate\":\"2019-12-27T13:54:47+01:00\"}},{\"node\":{\"id\":\"299223244\",\"name\":\"Aladesanmi + Olanrewaju Morgan\",\"memberUrl\":\"https://www.meetup.com/members/299223244\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-27T20:57:25+01:00\",\"mostRecentVisitDate\":\"2019-12-27T20:57:25+01:00\"}},{\"node\":{\"id\":\"299322458\",\"name\":\"Joe + Ochai\",\"memberUrl\":\"https://www.meetup.com/members/299322458\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2019-12-29T13:50:19+01:00\",\"mostRecentVisitDate\":\"2019-12-29T13:50:19+01:00\"}},{\"node\":{\"id\":\"299618438\",\"name\":\"Chidinma + Nwalupue\",\"memberUrl\":\"https://www.meetup.com/members/299618438\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-03T05:29:26+01:00\",\"mostRecentVisitDate\":\"2020-01-03T05:29:26+01:00\"}},{\"node\":{\"id\":\"299682154\",\"name\":\"Boogie + O\",\"memberUrl\":\"https://www.meetup.com/members/299682154\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-04T01:28:56+01:00\",\"mostRecentVisitDate\":\"2020-01-04T01:28:56+01:00\"}},{\"node\":{\"id\":\"299719559\",\"name\":\"Racheal + Adeyemi \",\"memberUrl\":\"https://www.meetup.com/members/299719559\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-04T14:10:17+01:00\",\"mostRecentVisitDate\":\"2020-01-04T14:10:17+01:00\"}},{\"node\":{\"id\":\"299757772\",\"name\":\"Emily + Rachelle\",\"memberUrl\":\"https://www.meetup.com/members/299757772\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-05T02:13:48+01:00\",\"mostRecentVisitDate\":\"2020-01-05T02:13:48+01:00\"}},{\"node\":{\"id\":\"299843752\",\"name\":\"Clement + Monday\",\"memberUrl\":\"https://www.meetup.com/members/299843752\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-06T09:37:55+01:00\",\"mostRecentVisitDate\":\"2020-01-06T09:37:55+01:00\"}},{\"node\":{\"id\":\"299871425\",\"name\":\"Adedoyin + Yinusa\",\"memberUrl\":\"https://www.meetup.com/members/299871425\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-06T17:08+01:00\",\"mostRecentVisitDate\":\"2020-01-06T17:08+01:00\"}},{\"node\":{\"id\":\"299985368\",\"name\":\"Onabiyi + Olayinka\",\"memberUrl\":\"https://www.meetup.com/members/299985368\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-08T06:35:54+01:00\",\"mostRecentVisitDate\":\"2020-01-08T06:35:54+01:00\"}},{\"node\":{\"id\":\"299987037\",\"name\":\"Anuoluwapo + Fafesobi\",\"memberUrl\":\"https://www.meetup.com/members/299987037\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-08T07:14:06+01:00\",\"mostRecentVisitDate\":\"2020-01-08T07:14:06+01:00\"}},{\"node\":{\"id\":\"300006995\",\"name\":\"Olatunji\",\"memberUrl\":\"https://www.meetup.com/members/300006995\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-08T13:15:47+01:00\",\"mostRecentVisitDate\":\"2020-01-08T13:15:47+01:00\"}},{\"node\":{\"id\":\"300067806\",\"name\":\"Isaac + Anthonia\",\"memberUrl\":\"https://www.meetup.com/members/300067806\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-09T10:13:23+01:00\",\"mostRecentVisitDate\":\"2020-01-09T10:13:23+01:00\"}},{\"node\":{\"id\":\"299941945\",\"name\":\"Bolu + Olanipekun\",\"memberUrl\":\"https://www.meetup.com/members/299941945\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-09T23:37:47+01:00\",\"mostRecentVisitDate\":\"2020-02-16T04:18:48+01:00\"}},{\"node\":{\"id\":\"300119703\",\"name\":\"Yewande + Writes\",\"memberUrl\":\"https://www.meetup.com/members/300119703\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-10T02:49:10+01:00\",\"mostRecentVisitDate\":\"2020-01-10T02:49:10+01:00\"}},{\"node\":{\"id\":\"300260073\",\"name\":\"Morolayo\",\"memberUrl\":\"https://www.meetup.com/members/300260073\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-12T03:26:58+01:00\",\"mostRecentVisitDate\":\"2020-03-17T17:22:52+01:00\"}},{\"node\":{\"id\":\"300328262\",\"name\":\"Sybil + Elikwu\",\"memberUrl\":\"https://www.meetup.com/members/300328262\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-13T02:20:44+01:00\",\"mostRecentVisitDate\":\"2020-01-13T02:20:44+01:00\"}},{\"node\":{\"id\":\"300364757\",\"name\":\"Marve\",\"memberUrl\":\"https://www.meetup.com/members/300364757\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-13T14:36:10+01:00\",\"mostRecentVisitDate\":\"2020-01-13T14:36:10+01:00\"}},{\"node\":{\"id\":\"300422708\",\"name\":\"tbless + bobo\",\"memberUrl\":\"https://www.meetup.com/members/300422708\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-14T08:37:05+01:00\",\"mostRecentVisitDate\":\"2020-01-14T08:37:05+01:00\"}},{\"node\":{\"id\":\"300497534\",\"name\":\"Kafilat\",\"memberUrl\":\"https://www.meetup.com/members/300497534\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-15T08:44:31+01:00\",\"mostRecentVisitDate\":\"2020-02-19T08:25:40+01:00\"}},{\"node\":{\"id\":\"300633361\",\"name\":\"Olaide\",\"memberUrl\":\"https://www.meetup.com/members/300633361\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-17T05:21:57+01:00\",\"mostRecentVisitDate\":\"2020-01-17T05:21:57+01:00\"}},{\"node\":{\"id\":\"300727028\",\"name\":\"Tival\",\"memberUrl\":\"https://www.meetup.com/members/300727028\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-18T13:10:54+01:00\",\"mostRecentVisitDate\":\"2020-01-18T13:10:54+01:00\"}},{\"node\":{\"id\":\"300924282\",\"name\":\"Jerry + Phelps\",\"memberUrl\":\"https://www.meetup.com/members/300924282\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-21T08:29:43+01:00\",\"mostRecentVisitDate\":\"2020-01-21T08:29:43+01:00\"}},{\"node\":{\"id\":\"300925810\",\"name\":\"Daisy + Dickson \",\"memberUrl\":\"https://www.meetup.com/members/300925810\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-21T08:59:37+01:00\",\"mostRecentVisitDate\":\"2020-01-21T08:59:37+01:00\"}},{\"node\":{\"id\":\"300913817\",\"name\":\"steve + Samuel\",\"memberUrl\":\"https://www.meetup.com/members/300913817\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-21T10:50:41+01:00\",\"mostRecentVisitDate\":\"2020-05-13T17:24+01:00\"}},{\"node\":{\"id\":\"301067985\",\"name\":\"Kehinde + Joseph Vincent\",\"memberUrl\":\"https://www.meetup.com/members/301067985\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-23T07:17:29+01:00\",\"mostRecentVisitDate\":\"2020-02-14T21:28:41+01:00\"}},{\"node\":{\"id\":\"301179156\",\"name\":\"Kemi + Joseph\",\"memberUrl\":\"https://www.meetup.com/members/301179156\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-24T19:52:36+01:00\",\"mostRecentVisitDate\":\"2020-01-24T19:52:36+01:00\"}},{\"node\":{\"id\":\"301197567\",\"name\":\"Oluwatosin + Okeoghene\",\"memberUrl\":\"https://www.meetup.com/members/301197567\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-25T03:21:54+01:00\",\"mostRecentVisitDate\":\"2020-02-10T05:38:50+01:00\"}},{\"node\":{\"id\":\"301257971\",\"name\":\"Olusegun + Badmus\",\"memberUrl\":\"https://www.meetup.com/members/301257971\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-26T00:03:25+01:00\",\"mostRecentVisitDate\":\"2020-01-26T00:03:25+01:00\"}},{\"node\":{\"id\":\"301368467\",\"name\":\"Oyegoke + Azeez Olaoluwa\",\"memberUrl\":\"https://www.meetup.com/members/301368467\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-27T15:00:08+01:00\",\"mostRecentVisitDate\":\"2020-01-27T15:00:08+01:00\"}},{\"node\":{\"id\":\"299982781\",\"name\":\"Blessing + Ojo\",\"memberUrl\":\"https://www.meetup.com/members/299982781\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-28T06:19:18+01:00\",\"mostRecentVisitDate\":\"2020-01-28T06:19:18+01:00\"}},{\"node\":{\"id\":\"288788732\",\"name\":\"Rebecca + Sodunke\",\"memberUrl\":\"https://www.meetup.com/members/288788732\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-28T06:37:32+01:00\",\"mostRecentVisitDate\":\"2020-01-28T06:37:32+01:00\"}},{\"node\":{\"id\":\"301420709\",\"name\":\"ogbatorho + yvonne\",\"memberUrl\":\"https://www.meetup.com/members/301420709\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-28T08:50:55+01:00\",\"mostRecentVisitDate\":\"2020-01-28T08:50:55+01:00\"}},{\"node\":{\"id\":\"301490231\",\"name\":\"Niyi + Sanusi\",\"memberUrl\":\"https://www.meetup.com/members/301490231\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-29T08:17:31+01:00\",\"mostRecentVisitDate\":\"2020-01-29T08:17:31+01:00\"}},{\"node\":{\"id\":\"301584989\",\"name\":\"cbfdvnn\",\"memberUrl\":\"https://www.meetup.com/members/301584989\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-30T16:15:45+01:00\",\"mostRecentVisitDate\":\"2020-01-30T16:15:45+01:00\"}},{\"node\":{\"id\":\"301604300\",\"name\":\"Rukayat + Motunrayo\",\"memberUrl\":\"https://www.meetup.com/members/301604300\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-01-30T22:34:09+01:00\",\"mostRecentVisitDate\":\"2020-01-30T22:34:09+01:00\"}},{\"node\":{\"id\":\"301890284\",\"name\":\"FASORANTI + YEMISI\",\"memberUrl\":\"https://www.meetup.com/members/301890284\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-04T06:28:46+01:00\",\"mostRecentVisitDate\":\"2020-02-04T06:28:46+01:00\"}},{\"node\":{\"id\":\"301926147\",\"name\":\"Ifeanyi + Chukwu\",\"memberUrl\":\"https://www.meetup.com/members/301926147\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-04T17:15:33+01:00\",\"mostRecentVisitDate\":\"2020-02-04T17:15:33+01:00\"}},{\"node\":{\"id\":\"301962624\",\"name\":\"Akhuetie + Ehis\",\"memberUrl\":\"https://www.meetup.com/members/301962624\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-05T07:47:10+01:00\",\"mostRecentVisitDate\":\"2020-02-05T07:47:10+01:00\"}},{\"node\":{\"id\":\"302011372\",\"name\":\"Olu\",\"memberUrl\":\"https://www.meetup.com/members/302011372\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-05T23:04:51+01:00\",\"mostRecentVisitDate\":\"2020-02-05T23:04:51+01:00\"}},{\"node\":{\"id\":\"301835719\",\"name\":\"Linda + Dominguez\",\"memberUrl\":\"https://www.meetup.com/members/301835719\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-08T05:44:16+01:00\",\"mostRecentVisitDate\":\"2020-02-08T05:44:16+01:00\"}},{\"node\":{\"id\":\"302158460\",\"name\":\"Ayomide + Adeniyi\",\"memberUrl\":\"https://www.meetup.com/members/302158460\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-08T05:50:38+01:00\",\"mostRecentVisitDate\":\"2020-02-08T05:50:38+01:00\"}},{\"node\":{\"id\":\"302265024\",\"name\":\"Nate + tyson\",\"memberUrl\":\"https://www.meetup.com/members/302265024\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-09T18:54:05+01:00\",\"mostRecentVisitDate\":\"2020-02-09T18:54:05+01:00\"}},{\"node\":{\"id\":\"302427778\",\"name\":\"Doyo + \",\"memberUrl\":\"https://www.meetup.com/members/302427778\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-12T04:19:12+01:00\",\"mostRecentVisitDate\":\"2020-02-19T04:25:32+01:00\"}},{\"node\":{\"id\":\"266403885\",\"name\":\"bayo + bude\",\"memberUrl\":\"https://www.meetup.com/members/266403885\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-13T03:28:44+01:00\",\"mostRecentVisitDate\":\"2020-03-08T13:30:58+01:00\"}},{\"node\":{\"id\":\"302534959\",\"name\":\"Izira\",\"memberUrl\":\"https://www.meetup.com/members/302534959\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-13T17:10:06+01:00\",\"mostRecentVisitDate\":\"2020-02-13T17:10:06+01:00\"}},{\"node\":{\"id\":\"302553610\",\"name\":\"Gabriel + Obeh\",\"memberUrl\":\"https://www.meetup.com/members/302553610\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-14T00:04:27+01:00\",\"mostRecentVisitDate\":\"2020-02-14T00:04:27+01:00\"}},{\"node\":{\"id\":\"302605410\",\"name\":\"Posh + Crystal Events\",\"memberUrl\":\"https://www.meetup.com/members/302605410\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-14T19:41:44+01:00\",\"mostRecentVisitDate\":\"2020-02-14T19:41:44+01:00\"}},{\"node\":{\"id\":\"302665454\",\"name\":\"Bibi\",\"memberUrl\":\"https://www.meetup.com/members/302665454\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-15T18:36:38+01:00\",\"mostRecentVisitDate\":\"2020-02-15T18:36:38+01:00\"}},{\"node\":{\"id\":\"302721851\",\"name\":\"Kiine + Bashir\",\"memberUrl\":\"https://www.meetup.com/members/302721851\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-16T15:27:28+01:00\",\"mostRecentVisitDate\":\"2020-02-16T15:27:28+01:00\"}},{\"node\":{\"id\":\"302841865\",\"name\":\"Nk + Okoye\",\"memberUrl\":\"https://www.meetup.com/members/302841865\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-18T10:14:30+01:00\",\"mostRecentVisitDate\":\"2020-02-18T10:14:30+01:00\"}},{\"node\":{\"id\":\"280568362\",\"name\":\"Jolly + Smart\",\"memberUrl\":\"https://www.meetup.com/members/280568362\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-19T01:53:37+01:00\",\"mostRecentVisitDate\":\"2020-02-19T01:53:37+01:00\"}},{\"node\":{\"id\":\"231387116\",\"name\":\"willypelz\",\"memberUrl\":\"https://www.meetup.com/members/231387116\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-22T12:38:57+01:00\",\"mostRecentVisitDate\":\"2020-02-22T12:38:57+01:00\"}},{\"node\":{\"id\":\"303238670\",\"name\":\"grahamjones\",\"memberUrl\":\"https://www.meetup.com/members/303238670\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-24T03:13:50+01:00\",\"mostRecentVisitDate\":\"2020-02-24T03:13:50+01:00\"}},{\"node\":{\"id\":\"303299442\",\"name\":\"Chibuzo + okika \",\"memberUrl\":\"https://www.meetup.com/members/303299442\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-24T23:18:01+01:00\",\"mostRecentVisitDate\":\"2020-02-24T23:18:01+01:00\"}},{\"node\":{\"id\":\"303363649\",\"name\":\"Kaka + Nazareth\",\"memberUrl\":\"https://www.meetup.com/members/303363649\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-25T21:10:54+01:00\",\"mostRecentVisitDate\":\"2020-02-25T21:10:54+01:00\"}},{\"node\":{\"id\":\"303444219\",\"name\":\"Kafayat + Akinwande\",\"memberUrl\":\"https://www.meetup.com/members/303444219\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-02-27T03:10:22+01:00\",\"mostRecentVisitDate\":\"2020-02-27T03:10:22+01:00\"}},{\"node\":{\"id\":\"303694608\",\"name\":\"Christain + Morgan\",\"memberUrl\":\"https://www.meetup.com/members/303694608\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-02T01:51:30+01:00\",\"mostRecentVisitDate\":\"2020-03-02T01:51:30+01:00\"}},{\"node\":{\"id\":\"303697541\",\"name\":\"Adorable\",\"memberUrl\":\"https://www.meetup.com/members/303697541\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-02T03:54:02+01:00\",\"mostRecentVisitDate\":\"2020-03-02T03:54:02+01:00\"}},{\"node\":{\"id\":\"303713977\",\"name\":\"sandra + ijeme dickson\",\"memberUrl\":\"https://www.meetup.com/members/303713977\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-02T10:04:34+01:00\",\"mostRecentVisitDate\":\"2020-03-02T10:04:34+01:00\"}},{\"node\":{\"id\":\"303772117\",\"name\":\"cindy + maris\",\"memberUrl\":\"https://www.meetup.com/members/303772117\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-03T06:26:46+01:00\",\"mostRecentVisitDate\":\"2020-03-03T06:26:46+01:00\"}},{\"node\":{\"id\":\"303920186\",\"name\":\"Buhari + Musa\",\"memberUrl\":\"https://www.meetup.com/members/303920186\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-05T11:58:03+01:00\",\"mostRecentVisitDate\":\"2020-03-05T11:58:03+01:00\"}},{\"node\":{\"id\":\"303961033\",\"name\":\"Winifred\",\"memberUrl\":\"https://www.meetup.com/members/303961033\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-06T03:02:09+01:00\",\"mostRecentVisitDate\":\"2020-03-06T03:02:09+01:00\"}},{\"node\":{\"id\":\"304133769\",\"name\":\"Akinnubi + Olakunle\",\"memberUrl\":\"https://www.meetup.com/members/304133769\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-08T18:15:29+01:00\",\"mostRecentVisitDate\":\"2020-03-08T18:15:29+01:00\"}},{\"node\":{\"id\":\"304136963\",\"name\":\"Chuks\",\"memberUrl\":\"https://www.meetup.com/members/304136963\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-08T19:42+01:00\",\"mostRecentVisitDate\":\"2020-03-08T19:42+01:00\"}},{\"node\":{\"id\":\"304180020\",\"name\":\"Maureen + Emereonye\",\"memberUrl\":\"https://www.meetup.com/members/304180020\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-09T11:58:48+01:00\",\"mostRecentVisitDate\":\"2020-03-09T11:58:48+01:00\"}},{\"node\":{\"id\":\"304237421\",\"name\":\"Soa + Obaf\",\"memberUrl\":\"https://www.meetup.com/members/304237421\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-10T09:29:20+01:00\",\"mostRecentVisitDate\":\"2020-03-10T09:29:20+01:00\"}},{\"node\":{\"id\":\"304272676\",\"name\":\"Cathie + Michaels\",\"memberUrl\":\"https://www.meetup.com/members/304272676\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-10T20:38:40+01:00\",\"mostRecentVisitDate\":\"2020-04-01T12:25:38+01:00\"}},{\"node\":{\"id\":\"304355060\",\"name\":\"Peace + Grace\",\"memberUrl\":\"https://www.meetup.com/members/304355060\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-12T08:19:34+01:00\",\"mostRecentVisitDate\":\"2020-03-12T08:19:34+01:00\"}},{\"node\":{\"id\":\"304366366\",\"name\":\"Merlyn + Tamunoemi\",\"memberUrl\":\"https://www.meetup.com/members/304366366\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-12T12:50:50+01:00\",\"mostRecentVisitDate\":\"2020-03-12T12:50:50+01:00\"}},{\"node\":{\"id\":\"304497045\",\"name\":\"Aderibigbe + Opeyemi \",\"memberUrl\":\"https://www.meetup.com/members/304497045\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-14T12:37:49+01:00\",\"mostRecentVisitDate\":\"2020-03-14T12:37:49+01:00\"}},{\"node\":{\"id\":\"304500549\",\"name\":\"ayyuba + ahmad\",\"memberUrl\":\"https://www.meetup.com/members/304500549\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-14T14:08:39+01:00\",\"mostRecentVisitDate\":\"2020-03-14T14:08:39+01:00\"}},{\"node\":{\"id\":\"304508886\",\"name\":\"Ann + Maranatha\",\"memberUrl\":\"https://www.meetup.com/members/304508886\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-14T18:15:43+01:00\",\"mostRecentVisitDate\":\"2020-03-14T18:15:43+01:00\"}},{\"node\":{\"id\":\"304788329\",\"name\":\"Nebechi + F. Chukwu\",\"memberUrl\":\"https://www.meetup.com/members/304788329\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-17T08:28:09+01:00\",\"mostRecentVisitDate\":\"2020-03-17T08:28:09+01:00\"}},{\"node\":{\"id\":\"304830700\",\"name\":\"Taiwo + Damilare Solomon\",\"memberUrl\":\"https://www.meetup.com/members/304830700\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-17T17:15:58+01:00\",\"mostRecentVisitDate\":\"2020-03-17T17:15:58+01:00\"}},{\"node\":{\"id\":\"304878823\",\"name\":\"Bianca\",\"memberUrl\":\"https://www.meetup.com/members/304878823\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-18T02:19:53+01:00\",\"mostRecentVisitDate\":\"2020-03-18T02:19:53+01:00\"}},{\"node\":{\"id\":\"304999868\",\"name\":\"Krimz\",\"memberUrl\":\"https://www.meetup.com/members/304999868\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-19T19:28:46+01:00\",\"mostRecentVisitDate\":\"2020-03-19T19:28:46+01:00\"}},{\"node\":{\"id\":\"305069510\",\"name\":\"Motunrayo\",\"memberUrl\":\"https://www.meetup.com/members/305069510\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-20T20:46:35+01:00\",\"mostRecentVisitDate\":\"2020-03-20T20:46:35+01:00\"}},{\"node\":{\"id\":\"305311263\",\"name\":\"Tricia + Amanda\",\"memberUrl\":\"https://www.meetup.com/members/305311263\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-27T07:25:56+01:00\",\"mostRecentVisitDate\":\"2020-03-27T07:25:56+01:00\"}},{\"node\":{\"id\":\"305314591\",\"name\":\"Isaac + Umejiaku\",\"memberUrl\":\"https://www.meetup.com/members/305314591\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-27T09:55:19+01:00\",\"mostRecentVisitDate\":\"2020-03-27T09:55:19+01:00\"}},{\"node\":{\"id\":\"305388504\",\"name\":\"Damilola + Agboola\",\"memberUrl\":\"https://www.meetup.com/members/305388504\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-29T14:45+01:00\",\"mostRecentVisitDate\":\"2020-03-29T14:45+01:00\"}},{\"node\":{\"id\":\"305400906\",\"name\":\"Paulice\",\"memberUrl\":\"https://www.meetup.com/members/305400906\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-29T22:58:04+01:00\",\"mostRecentVisitDate\":\"2020-03-29T22:58:04+01:00\"}},{\"node\":{\"id\":\"305409323\",\"name\":\"BrigHams\",\"memberUrl\":\"https://www.meetup.com/members/305409323\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-30T06:55:28+01:00\",\"mostRecentVisitDate\":\"2020-03-30T06:55:28+01:00\"}},{\"node\":{\"id\":\"305414999\",\"name\":\"Miffe\",\"memberUrl\":\"https://www.meetup.com/members/305414999\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-03-30T10:53:24+01:00\",\"mostRecentVisitDate\":\"2020-03-30T10:53:24+01:00\"}},{\"node\":{\"id\":\"305477474\",\"name\":\"Praise + G Dubu\",\"memberUrl\":\"https://www.meetup.com/members/305477474\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-01T05:15:48+01:00\",\"mostRecentVisitDate\":\"2020-04-01T05:15:48+01:00\"}},{\"node\":{\"id\":\"305480285\",\"name\":\"Tochukwu + Kingsley Maduka\",\"memberUrl\":\"https://www.meetup.com/members/305480285\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-01T08:55:21+01:00\",\"mostRecentVisitDate\":\"2020-04-01T08:55:21+01:00\"}},{\"node\":{\"id\":\"305536785\",\"name\":\"Micheal + omar Milton\",\"memberUrl\":\"https://www.meetup.com/members/305536785\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-02T22:31:12+01:00\",\"mostRecentVisitDate\":\"2020-04-02T22:31:12+01:00\"}},{\"node\":{\"id\":\"305588113\",\"name\":\"dovey\",\"memberUrl\":\"https://www.meetup.com/members/305588113\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-04T13:53:12+01:00\",\"mostRecentVisitDate\":\"2020-04-04T13:53:12+01:00\"}},{\"node\":{\"id\":\"305703494\",\"name\":\"TOBUN + BABATUNDE GBOLAHAN\",\"memberUrl\":\"https://www.meetup.com/members/305703494\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-07T10:10:17+01:00\",\"mostRecentVisitDate\":\"2020-04-07T10:10:17+01:00\"}},{\"node\":{\"id\":\"305733948\",\"name\":\"Bolaji + Babatunde\",\"memberUrl\":\"https://www.meetup.com/members/305733948\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-08T05:24:01+01:00\",\"mostRecentVisitDate\":\"2020-04-08T05:24:01+01:00\"}},{\"node\":{\"id\":\"305738211\",\"name\":\"Muhammad + Hardo Bello\",\"memberUrl\":\"https://www.meetup.com/members/305738211\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-08T08:23:58+01:00\",\"mostRecentVisitDate\":\"2020-04-08T08:23:58+01:00\"}},{\"node\":{\"id\":\"305745250\",\"name\":\"Nnenna + Aboh\",\"memberUrl\":\"https://www.meetup.com/members/305745250\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-08T12:18:14+01:00\",\"mostRecentVisitDate\":\"2020-04-08T12:18:14+01:00\"}},{\"node\":{\"id\":\"305811394\",\"name\":\"Victor + Nkemwa\",\"memberUrl\":\"https://www.meetup.com/members/305811394\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-10T06:30:35+01:00\",\"mostRecentVisitDate\":\"2020-04-10T06:30:35+01:00\"}},{\"node\":{\"id\":\"305820330\",\"name\":\"Okpara + Benjamin\",\"memberUrl\":\"https://www.meetup.com/members/305820330\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-10T13:12:05+01:00\",\"mostRecentVisitDate\":\"2020-04-10T13:12:05+01:00\"}},{\"node\":{\"id\":\"305830174\",\"name\":\"Emmasson\",\"memberUrl\":\"https://www.meetup.com/members/305830174\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-10T19:06:44+01:00\",\"mostRecentVisitDate\":\"2020-04-10T19:06:44+01:00\"}},{\"node\":{\"id\":\"272487874\",\"name\":\"Adeola + Abayomi\",\"memberUrl\":\"https://www.meetup.com/members/272487874\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-13T19:50:43+01:00\",\"mostRecentVisitDate\":\"2020-04-13T19:50:43+01:00\"}},{\"node\":{\"id\":\"306108318\",\"name\":\"Joseph + O Isiagu\",\"memberUrl\":\"https://www.meetup.com/members/306108318\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-18T17:39:51+01:00\",\"mostRecentVisitDate\":\"2020-04-18T17:39:51+01:00\"}},{\"node\":{\"id\":\"306173404\",\"name\":\"Dr + Dele\",\"memberUrl\":\"https://www.meetup.com/members/306173404\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-20T15:10:22+01:00\",\"mostRecentVisitDate\":\"2020-04-20T15:10:22+01:00\"}},{\"node\":{\"id\":\"306199938\",\"name\":\"Uwaifo + Joseph Edeki\",\"memberUrl\":\"https://www.meetup.com/members/306199938\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-21T09:12:19+01:00\",\"mostRecentVisitDate\":\"2020-04-21T09:12:19+01:00\"}},{\"node\":{\"id\":\"306725694\",\"name\":\"Olupona + Gbemisola\",\"memberUrl\":\"https://www.meetup.com/members/306725694\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-25T19:01:09+01:00\",\"mostRecentVisitDate\":\"2020-07-14T13:34:46+01:00\"}},{\"node\":{\"id\":\"306998506\",\"name\":\"Zion + authenticity\",\"memberUrl\":\"https://www.meetup.com/members/306998506\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-29T17:25:05+01:00\",\"mostRecentVisitDate\":\"2020-04-29T17:25:05+01:00\"}},{\"node\":{\"id\":\"307207493\",\"name\":\"Oswald\",\"memberUrl\":\"https://www.meetup.com/members/307207493\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-04-30T13:12:21+01:00\",\"mostRecentVisitDate\":\"2020-04-30T13:12:21+01:00\"}},{\"node\":{\"id\":\"307461427\",\"name\":\"Lanre + Keshinro\",\"memberUrl\":\"https://www.meetup.com/members/307461427\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-01T10:47:42+01:00\",\"mostRecentVisitDate\":\"2020-05-01T10:47:42+01:00\"}},{\"node\":{\"id\":\"307473136\",\"name\":\"Lucia\",\"memberUrl\":\"https://www.meetup.com/members/307473136\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-01T12:21:48+01:00\",\"mostRecentVisitDate\":\"2020-05-03T05:18:04+01:00\"}},{\"node\":{\"id\":\"307995844\",\"name\":\"Toyin + Jato\",\"memberUrl\":\"https://www.meetup.com/members/307995844\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-02T18:25:01+01:00\",\"mostRecentVisitDate\":\"2020-05-02T18:25:01+01:00\"}},{\"node\":{\"id\":\"308931256\",\"name\":\"Samuel\",\"memberUrl\":\"https://www.meetup.com/members/308931256\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-05T13:33:50+01:00\",\"mostRecentVisitDate\":\"2020-05-05T13:33:50+01:00\"}},{\"node\":{\"id\":\"309170542\",\"name\":\"Teddy + \",\"memberUrl\":\"https://www.meetup.com/members/309170542\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-06T16:22:11+01:00\",\"mostRecentVisitDate\":\"2020-05-06T16:22:11+01:00\"}},{\"node\":{\"id\":\"80673732\",\"name\":\"Shamsuddeen + Hassan Muhammad\",\"memberUrl\":\"https://www.meetup.com/members/80673732\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-16T06:32:53+01:00\",\"mostRecentVisitDate\":\"2020-05-17T23:43:08+01:00\"}},{\"node\":{\"id\":\"310408630\",\"name\":\"Jaysean + \",\"memberUrl\":\"https://www.meetup.com/members/310408630\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-17T08:36:49+01:00\",\"mostRecentVisitDate\":\"2020-05-17T08:36:49+01:00\"}},{\"node\":{\"id\":\"310504749\",\"name\":\"Eric + Tomson\",\"memberUrl\":\"https://www.meetup.com/members/310504749\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-19T17:18:21+01:00\",\"mostRecentVisitDate\":\"2020-08-09T03:51:01+01:00\"}},{\"node\":{\"id\":\"310561144\",\"name\":\"Nathan\",\"memberUrl\":\"https://www.meetup.com/members/310561144\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-21T01:29:25+01:00\",\"mostRecentVisitDate\":\"2020-05-21T01:29:25+01:00\"}},{\"node\":{\"id\":\"310340344\",\"name\":\"Geenah\",\"memberUrl\":\"https://www.meetup.com/members/310340344\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-21T16:30:32+01:00\",\"mostRecentVisitDate\":\"2021-06-20T11:37+01:00\"}},{\"node\":{\"id\":\"310757481\",\"name\":\"ukay + emilia\",\"memberUrl\":\"https://www.meetup.com/members/310757481\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-26T07:29:45+01:00\",\"mostRecentVisitDate\":\"2020-05-26T07:29:45+01:00\"}},{\"node\":{\"id\":\"310858177\",\"name\":\"IQ + Organisation\",\"memberUrl\":\"https://www.meetup.com/members/310858177\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-05-28T15:51:22+01:00\",\"mostRecentVisitDate\":\"2020-05-28T15:51:22+01:00\"}},{\"node\":{\"id\":\"311175264\",\"name\":\"INNOB\",\"memberUrl\":\"https://www.meetup.com/members/311175264\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-05T13:52:40+01:00\",\"mostRecentVisitDate\":\"2020-06-05T13:52:40+01:00\"}},{\"node\":{\"id\":\"311265403\",\"name\":\"Jay + Boi\",\"memberUrl\":\"https://www.meetup.com/members/311265403\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-07T20:12:06+01:00\",\"mostRecentVisitDate\":\"2020-06-07T20:12:06+01:00\"}},{\"node\":{\"id\":\"311402449\",\"name\":\"Salam + Shukrah Abisola\",\"memberUrl\":\"https://www.meetup.com/members/311402449\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-10T23:19:20+01:00\",\"mostRecentVisitDate\":\"2020-06-10T23:19:20+01:00\"}},{\"node\":{\"id\":\"311517031\",\"name\":\"Idris + Mekudi\",\"memberUrl\":\"https://www.meetup.com/members/311517031\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-13T17:13:46+01:00\",\"mostRecentVisitDate\":\"2020-06-13T17:13:46+01:00\"}},{\"node\":{\"id\":\"311866055\",\"name\":\"Ememobong + Umoren\",\"memberUrl\":\"https://www.meetup.com/members/311866055\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-21T13:58:21+01:00\",\"mostRecentVisitDate\":\"2020-06-21T13:58:21+01:00\"}},{\"node\":{\"id\":\"312080271\",\"name\":\"Nicholas + Presh\",\"memberUrl\":\"https://www.meetup.com/members/312080271\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-26T10:29:38+01:00\",\"mostRecentVisitDate\":\"2020-06-26T10:29:38+01:00\"}},{\"node\":{\"id\":\"312114109\",\"name\":\"Ibrahim + Danteni\",\"memberUrl\":\"https://www.meetup.com/members/312114109\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-06-27T06:39:58+01:00\",\"mostRecentVisitDate\":\"2020-06-27T06:39:58+01:00\"}},{\"node\":{\"id\":\"314061165\",\"name\":\"Chukwuemeka + Maureen\",\"memberUrl\":\"https://www.meetup.com/members/314061165\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-08-12T08:44:29+01:00\",\"mostRecentVisitDate\":\"2020-08-12T08:44:29+01:00\"}},{\"node\":{\"id\":\"316689031\",\"name\":\"Olugbenga + Oluyemi\",\"memberUrl\":\"https://www.meetup.com/members/316689031\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-09-22T00:50:27+01:00\",\"mostRecentVisitDate\":\"2020-09-22T00:50:27+01:00\"}},{\"node\":{\"id\":\"317477535\",\"name\":\"Precious + Obinodu\",\"memberUrl\":\"https://www.meetup.com/members/317477535\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-09-30T08:30:07+01:00\",\"mostRecentVisitDate\":\"2020-09-30T08:30:07+01:00\"}},{\"node\":{\"id\":\"317489816\",\"name\":\"Olatunde + \",\"memberUrl\":\"https://www.meetup.com/members/317489816\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-09-30T12:09:45+01:00\",\"mostRecentVisitDate\":\"2020-09-30T12:09:45+01:00\"}},{\"node\":{\"id\":\"318308513\",\"name\":\"Esuruoso + Tawhid\",\"memberUrl\":\"https://www.meetup.com/members/318308513\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-10-11T07:01:27+01:00\",\"mostRecentVisitDate\":\"2020-10-11T07:01:27+01:00\"}},{\"node\":{\"id\":\"318922877\",\"name\":\"A + olusola \",\"memberUrl\":\"https://www.meetup.com/members/318922877\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-10-20T05:28:48+01:00\",\"mostRecentVisitDate\":\"2020-10-20T05:28:48+01:00\"}},{\"node\":{\"id\":\"15603031\",\"name\":\"Innocent + baba\",\"memberUrl\":\"https://www.meetup.com/members/15603031\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-10-22T05:25:23+01:00\",\"mostRecentVisitDate\":\"2020-10-22T05:25:23+01:00\"}},{\"node\":{\"id\":\"9222629\",\"name\":\"Amélie + Gourdon-Kanhukamwe\",\"memberUrl\":\"https://www.meetup.com/members/9222629\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-10-29T10:00:34+01:00\",\"mostRecentVisitDate\":\"2020-10-29T10:00:34+01:00\"}},{\"node\":{\"id\":\"321267053\",\"name\":\"CHIKEOBI + Nnah\",\"memberUrl\":\"https://www.meetup.com/members/321267053\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-11-23T15:04:11+01:00\",\"mostRecentVisitDate\":\"2020-11-23T15:04:11+01:00\"}},{\"node\":{\"id\":\"321833127\",\"name\":\"Adeleke + Odunayo Joseph \",\"memberUrl\":\"https://www.meetup.com/members/321833127\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-12-03T16:13:20+01:00\",\"mostRecentVisitDate\":\"2020-12-03T16:13:20+01:00\"}},{\"node\":{\"id\":\"321996513\",\"name\":\"Akewusola + Elizabeth\",\"memberUrl\":\"https://www.meetup.com/members/321996513\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-12-06T15:08:59+01:00\",\"mostRecentVisitDate\":\"2020-12-06T15:08:59+01:00\"}},{\"node\":{\"id\":\"294377299\",\"name\":\"Bilikisu + Olatunji\",\"memberUrl\":\"https://www.meetup.com/members/294377299\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-12-07T03:38:11+01:00\",\"mostRecentVisitDate\":\"2020-12-28T09:06:55+01:00\"}},{\"node\":{\"id\":\"322745585\",\"name\":\"Olaniyi\",\"memberUrl\":\"https://www.meetup.com/members/322745585\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2020-12-15T20:33:07+01:00\",\"mostRecentVisitDate\":\"2020-12-15T20:33:07+01:00\"}},{\"node\":{\"id\":\"323709369\",\"name\":\"OZ + Olalere\",\"memberUrl\":\"https://www.meetup.com/members/323709369\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-01-02T09:39:42+01:00\",\"mostRecentVisitDate\":\"2021-01-02T09:39:42+01:00\"}},{\"node\":{\"id\":\"323792196\",\"name\":\"Marvis + Chinenye Obidiegwu\",\"memberUrl\":\"https://www.meetup.com/members/323792196\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-01-03T14:52:01+01:00\",\"mostRecentVisitDate\":\"2021-01-03T14:52:01+01:00\"}},{\"node\":{\"id\":\"323889996\",\"name\":\"John + Fajuyitan\",\"memberUrl\":\"https://www.meetup.com/members/323889996\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-01-05T01:25:16+01:00\",\"mostRecentVisitDate\":\"2021-01-05T01:25:16+01:00\"}},{\"node\":{\"id\":\"324022186\",\"name\":\"Mba + Esther\",\"memberUrl\":\"https://www.meetup.com/members/324022186\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-01-07T06:40:11+01:00\",\"mostRecentVisitDate\":\"2021-01-07T06:40:11+01:00\"}},{\"node\":{\"id\":\"325880621\",\"name\":\"Robert + Uwana Blessing\",\"memberUrl\":\"https://www.meetup.com/members/325880621\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-02-02T13:12:55+01:00\",\"mostRecentVisitDate\":\"2021-02-02T13:12:55+01:00\"}},{\"node\":{\"id\":\"325936965\",\"name\":\"Deborah + Osilade\",\"memberUrl\":\"https://www.meetup.com/members/325936965\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-02-03T10:15:28+01:00\",\"mostRecentVisitDate\":\"2021-10-14T06:41:46+01:00\"}},{\"node\":{\"id\":\"326570142\",\"name\":\"Onwurah + Benita\",\"memberUrl\":\"https://www.meetup.com/members/326570142\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-02-13T17:26:30+01:00\",\"mostRecentVisitDate\":\"2021-02-13T17:26:30+01:00\"}},{\"node\":{\"id\":\"295460210\",\"name\":\"Cathy + Agbo\",\"memberUrl\":\"https://www.meetup.com/members/295460210\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-02-22T15:41:08+01:00\",\"mostRecentVisitDate\":\"2021-02-22T15:41:08+01:00\"}},{\"node\":{\"id\":\"328241009\",\"name\":\"Emmanuel + Irene\",\"memberUrl\":\"https://www.meetup.com/members/328241009\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-03-14T11:47:28+01:00\",\"mostRecentVisitDate\":\"2021-03-14T11:47:28+01:00\"}},{\"node\":{\"id\":\"328260957\",\"name\":\"mayim + tvumkenge mayim\",\"memberUrl\":\"https://www.meetup.com/members/328260957\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-03-14T18:22:15+01:00\",\"mostRecentVisitDate\":\"2021-03-14T18:22:15+01:00\"}},{\"node\":{\"id\":\"328866520\",\"name\":\"elysian + goldwealth\",\"memberUrl\":\"https://www.meetup.com/members/328866520\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-03-25T00:22:53+01:00\",\"mostRecentVisitDate\":\"2021-03-25T00:22:53+01:00\"}},{\"node\":{\"id\":\"329421418\",\"name\":\"djmiles\",\"memberUrl\":\"https://www.meetup.com/members/329421418\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-04-03T17:10:14+01:00\",\"mostRecentVisitDate\":\"2021-04-03T17:10:14+01:00\"}},{\"node\":{\"id\":\"330181633\",\"name\":\"Teniola + Osaira\",\"memberUrl\":\"https://www.meetup.com/members/330181633\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-04-16T07:20:47+01:00\",\"mostRecentVisitDate\":\"2021-06-25T09:01:28+01:00\"}},{\"node\":{\"id\":\"331660747\",\"name\":\"Helen + Benson\",\"memberUrl\":\"https://www.meetup.com/members/331660747\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-05-08T11:49:14+01:00\",\"mostRecentVisitDate\":\"2021-05-08T11:49:14+01:00\"}},{\"node\":{\"id\":\"332378855\",\"name\":\"Ademola + Joshua\",\"memberUrl\":\"https://www.meetup.com/members/332378855\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-05-19T02:09:19+01:00\",\"mostRecentVisitDate\":\"2021-05-19T02:09:19+01:00\"}},{\"node\":{\"id\":\"329874723\",\"name\":\"Henry + Okam\",\"memberUrl\":\"https://www.meetup.com/members/329874723\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-05-25T14:38:41+01:00\",\"mostRecentVisitDate\":\"2021-05-25T14:38:41+01:00\"}},{\"node\":{\"id\":\"333618624\",\"name\":\"Ade\",\"memberUrl\":\"https://www.meetup.com/members/333618624\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-06-05T09:13:04+01:00\",\"mostRecentVisitDate\":\"2021-06-05T09:13:04+01:00\"}},{\"node\":{\"id\":\"313044334\",\"name\":\"Sam\",\"memberUrl\":\"https://www.meetup.com/members/313044334\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-06-19T18:31:10+01:00\",\"mostRecentVisitDate\":\"2021-06-19T18:31:10+01:00\"}},{\"node\":{\"id\":\"336242476\",\"name\":\"Engr. + Fuad Jimoh\",\"memberUrl\":\"https://www.meetup.com/members/336242476\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-10T19:43:03+01:00\",\"mostRecentVisitDate\":\"2021-07-10T19:43:03+01:00\"}},{\"node\":{\"id\":\"336493021\",\"name\":\"Oladeji + Joshua Akintayo\",\"memberUrl\":\"https://www.meetup.com/members/336493021\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-14T05:24:22+01:00\",\"mostRecentVisitDate\":\"2021-07-14T05:24:22+01:00\"}},{\"node\":{\"id\":\"336534524\",\"name\":\"humphrey + olugbue\",\"memberUrl\":\"https://www.meetup.com/members/336534524\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-14T18:40:30+01:00\",\"mostRecentVisitDate\":\"2021-07-14T18:40:30+01:00\"}},{\"node\":{\"id\":\"337046241\",\"name\":\"Toluwanimi + Fakeye\",\"memberUrl\":\"https://www.meetup.com/members/337046241\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-22T05:47:22+01:00\",\"mostRecentVisitDate\":\"2021-07-22T05:47:22+01:00\"}},{\"node\":{\"id\":\"275495498\",\"name\":\"Jane + Uchechukwu\",\"memberUrl\":\"https://www.meetup.com/members/275495498\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-29T03:32:38+01:00\",\"mostRecentVisitDate\":\"2021-07-29T03:32:38+01:00\"}},{\"node\":{\"id\":\"335477279\",\"name\":\"Nelson + Philip\",\"memberUrl\":\"https://www.meetup.com/members/335477279\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-07-29T21:18:37+01:00\",\"mostRecentVisitDate\":\"2021-07-29T21:18:37+01:00\"}},{\"node\":{\"id\":\"338578089\",\"name\":\"Glory + Ify\",\"memberUrl\":\"https://www.meetup.com/members/338578089\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-13T12:01:33+01:00\",\"mostRecentVisitDate\":\"2021-08-13T12:01:33+01:00\"}},{\"node\":{\"id\":\"335103334\",\"name\":\"Chinwendu + Uwaemelu\",\"memberUrl\":\"https://www.meetup.com/members/335103334\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-18T06:22:31+01:00\",\"mostRecentVisitDate\":\"2021-08-18T06:22:31+01:00\"}},{\"node\":{\"id\":\"313188950\",\"name\":\"Jeselnik\",\"memberUrl\":\"https://www.meetup.com/members/313188950\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-22T09:37:07+01:00\",\"mostRecentVisitDate\":\"2021-08-22T09:37:07+01:00\"}},{\"node\":{\"id\":\"339406120\",\"name\":\"David + Menze\",\"memberUrl\":\"https://www.meetup.com/members/339406120\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-26T04:38:51+01:00\",\"mostRecentVisitDate\":\"2021-08-26T04:38:51+01:00\"}},{\"node\":{\"id\":\"339630448\",\"name\":\"mariam\",\"memberUrl\":\"https://www.meetup.com/members/339630448\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-29T15:31:30+01:00\",\"mostRecentVisitDate\":\"2021-08-29T15:31:30+01:00\"}},{\"node\":{\"id\":\"339080738\",\"name\":\"Augusta + Nicholas\",\"memberUrl\":\"https://www.meetup.com/members/339080738\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-08-30T20:12:43+01:00\",\"mostRecentVisitDate\":\"2021-08-30T20:12:43+01:00\"}},{\"node\":{\"id\":\"336598342\",\"name\":\"Feyikemi + Obamiro\",\"memberUrl\":\"https://www.meetup.com/members/336598342\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-07T04:00:51+01:00\",\"mostRecentVisitDate\":\"2021-09-07T04:00:51+01:00\"}},{\"node\":{\"id\":\"339528710\",\"name\":\"Rotimi + Oluwapelumi\",\"memberUrl\":\"https://www.meetup.com/members/339528710\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-09T08:54:10+01:00\",\"mostRecentVisitDate\":\"2021-09-09T08:54:10+01:00\"}},{\"node\":{\"id\":\"223189613\",\"name\":\"Savage + modupeola\",\"memberUrl\":\"https://www.meetup.com/members/223189613\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-11T06:19:01+01:00\",\"mostRecentVisitDate\":\"2021-09-11T06:19:01+01:00\"}},{\"node\":{\"id\":\"305485082\",\"name\":\"ABDULLAHI + SULAIMON\",\"memberUrl\":\"https://www.meetup.com/members/305485082\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-16T04:35:37+01:00\",\"mostRecentVisitDate\":\"2021-09-16T04:35:37+01:00\"}},{\"node\":{\"id\":\"337476712\",\"name\":\"Sylvia + Nzenweaku\",\"memberUrl\":\"https://www.meetup.com/members/337476712\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-16T14:47:14+01:00\",\"mostRecentVisitDate\":\"2021-09-16T14:47:14+01:00\"}},{\"node\":{\"id\":\"341767308\",\"name\":\"Feranmi + Aina\",\"memberUrl\":\"https://www.meetup.com/members/341767308\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-09-30T08:48:02+01:00\",\"mostRecentVisitDate\":\"2021-09-30T08:48:02+01:00\"}},{\"node\":{\"id\":\"341891631\",\"name\":\"Opeyemi + Ogbere\",\"memberUrl\":\"https://www.meetup.com/members/341891631\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-02T08:40:19+01:00\",\"mostRecentVisitDate\":\"2021-10-02T08:40:19+01:00\"}},{\"node\":{\"id\":\"342552522\",\"name\":\"Oluwadara + Akano\",\"memberUrl\":\"https://www.meetup.com/members/342552522\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-12T10:04:12+01:00\",\"mostRecentVisitDate\":\"2021-10-12T10:04:12+01:00\"}},{\"node\":{\"id\":\"342994074\",\"name\":\"OluwaTunmyshe + Israel Adetokunbo\",\"memberUrl\":\"https://www.meetup.com/members/342994074\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-19T06:53:46+01:00\",\"mostRecentVisitDate\":\"2021-10-19T06:53:46+01:00\"}},{\"node\":{\"id\":\"343056434\",\"name\":\"Gail + Menke\",\"memberUrl\":\"https://www.meetup.com/members/343056434\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-20T06:51:25+01:00\",\"mostRecentVisitDate\":\"2021-10-20T06:51:25+01:00\"}},{\"node\":{\"id\":\"343100924\",\"name\":\"Sharon + Dim\",\"memberUrl\":\"https://www.meetup.com/members/343100924\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-20T23:46:36+01:00\",\"mostRecentVisitDate\":\"2022-02-28T21:03:14+01:00\"}},{\"node\":{\"id\":\"344070290\",\"name\":\"fridaws + adewunmi\",\"memberUrl\":\"https://www.meetup.com/members/344070290\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-10-30T05:35:04+01:00\",\"mostRecentVisitDate\":\"2021-10-30T05:35:04+01:00\"}},{\"node\":{\"id\":\"342478644\",\"name\":\"jacinta + johnson\",\"memberUrl\":\"https://www.meetup.com/members/342478644\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-11-04T08:29:10+01:00\",\"mostRecentVisitDate\":\"2021-11-04T08:29:10+01:00\"}},{\"node\":{\"id\":\"345673283\",\"name\":\"Oyinkansola + Grace\",\"memberUrl\":\"https://www.meetup.com/members/345673283\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-11-10T01:58:50+01:00\",\"mostRecentVisitDate\":\"2021-11-10T01:58:50+01:00\"}},{\"node\":{\"id\":\"338994721\",\"name\":\"Samuel + Maduka\",\"memberUrl\":\"https://www.meetup.com/members/338994721\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-11-20T06:38:34+01:00\",\"mostRecentVisitDate\":\"2021-11-20T06:38:34+01:00\"}},{\"node\":{\"id\":\"348047037\",\"name\":\"Chiamaka + Ijedibia\",\"memberUrl\":\"https://www.meetup.com/members/348047037\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-11-30T18:45:49+01:00\",\"mostRecentVisitDate\":\"2021-11-30T18:45:49+01:00\"}},{\"node\":{\"id\":\"330323656\",\"name\":\"Mujeeb + Olukokun\",\"memberUrl\":\"https://www.meetup.com/members/330323656\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-12-19T09:58:41+01:00\",\"mostRecentVisitDate\":\"2021-12-19T09:58:41+01:00\"}},{\"node\":{\"id\":\"350753078\",\"name\":\"Miracle + David\",\"memberUrl\":\"https://www.meetup.com/members/350753078\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2021-12-31T03:11:45+01:00\",\"mostRecentVisitDate\":\"2021-12-31T03:11:45+01:00\"}},{\"node\":{\"id\":\"351853557\",\"name\":\"Happiness + Idio\",\"memberUrl\":\"https://www.meetup.com/members/351853557\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-01-04T17:20:13+01:00\",\"mostRecentVisitDate\":\"2022-01-06T02:20+01:00\"}},{\"node\":{\"id\":\"342362755\",\"name\":\"Winifred + Igboke\",\"memberUrl\":\"https://www.meetup.com/members/342362755\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-01-05T03:32:10+01:00\",\"mostRecentVisitDate\":\"2022-01-05T03:32:10+01:00\"}},{\"node\":{\"id\":\"351746653\",\"name\":\"Hollar + Mie\",\"memberUrl\":\"https://www.meetup.com/members/351746653\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-01-09T14:32:44+01:00\",\"mostRecentVisitDate\":\"2022-01-09T14:32:44+01:00\"}},{\"node\":{\"id\":\"352556661\",\"name\":\"Omowunmi + Ogunjimi\",\"memberUrl\":\"https://www.meetup.com/members/352556661\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-01-12T04:42:18+01:00\",\"mostRecentVisitDate\":\"2022-01-12T04:42:18+01:00\"}},{\"node\":{\"id\":\"354445559\",\"name\":\"Balogun + Saheed Akorede\",\"memberUrl\":\"https://www.meetup.com/members/354445559\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-01T19:51:33+01:00\",\"mostRecentVisitDate\":\"2022-02-01T19:51:33+01:00\"}},{\"node\":{\"id\":\"355129105\",\"name\":\"Okezie + Joel Chinonyerem\",\"memberUrl\":\"https://www.meetup.com/members/355129105\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-10T11:10:55+01:00\",\"mostRecentVisitDate\":\"2022-02-10T11:10:55+01:00\"}},{\"node\":{\"id\":\"355262727\",\"name\":\"Kareem + Hardebhayo\",\"memberUrl\":\"https://www.meetup.com/members/355262727\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-12T04:58:02+01:00\",\"mostRecentVisitDate\":\"2022-02-12T04:58:02+01:00\"}},{\"node\":{\"id\":\"279382328\",\"name\":\"Julian + Essien\",\"memberUrl\":\"https://www.meetup.com/members/279382328\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-19T16:49:46+01:00\",\"mostRecentVisitDate\":\"2022-02-19T16:49:46+01:00\"}},{\"node\":{\"id\":\"355982119\",\"name\":\"Joseph + Ezemdinma Nwankpa\",\"memberUrl\":\"https://www.meetup.com/members/355982119\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-21T16:04:51+01:00\",\"mostRecentVisitDate\":\"2022-07-08T12:49:11+01:00\"}},{\"node\":{\"id\":\"287128431\",\"name\":\"bob + akpuna\",\"memberUrl\":\"https://www.meetup.com/members/287128431\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-02-27T12:56:05+01:00\",\"mostRecentVisitDate\":\"2022-02-27T12:56:05+01:00\"}},{\"node\":{\"id\":\"335020073\",\"name\":\"MARY + U. JONATHAN\",\"memberUrl\":\"https://www.meetup.com/members/335020073\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-01T10:34:04+01:00\",\"mostRecentVisitDate\":\"2022-03-01T10:34:04+01:00\"}},{\"node\":{\"id\":\"356572616\",\"name\":\"Toyin\",\"memberUrl\":\"https://www.meetup.com/members/356572616\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-01T17:30:14+01:00\",\"mostRecentVisitDate\":\"2022-03-01T17:30:14+01:00\"}},{\"node\":{\"id\":\"356609632\",\"name\":\"Joy\",\"memberUrl\":\"https://www.meetup.com/members/356609632\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-02T07:44:52+01:00\",\"mostRecentVisitDate\":\"2022-03-02T07:44:52+01:00\"}},{\"node\":{\"id\":\"337762102\",\"name\":\"Okey + OGB\",\"memberUrl\":\"https://www.meetup.com/members/337762102\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-02T07:52:37+01:00\",\"mostRecentVisitDate\":\"2022-03-02T07:52:37+01:00\"}},{\"node\":{\"id\":\"356655899\",\"name\":\"Chinenyenwa\",\"memberUrl\":\"https://www.meetup.com/members/356655899\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-02T20:33:46+01:00\",\"mostRecentVisitDate\":\"2022-03-02T20:33:46+01:00\"}},{\"node\":{\"id\":\"356758655\",\"name\":\"Jane + Fredrick\",\"memberUrl\":\"https://www.meetup.com/members/356758655\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-04T08:09:22+01:00\",\"mostRecentVisitDate\":\"2022-03-04T08:09:22+01:00\"}},{\"node\":{\"id\":\"356796901\",\"name\":\"Ojei + Harry\",\"memberUrl\":\"https://www.meetup.com/members/356796901\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-04T17:53:42+01:00\",\"mostRecentVisitDate\":\"2022-03-04T17:53:42+01:00\"}},{\"node\":{\"id\":\"356779077\",\"name\":\"Abdul + Nasir M Hafiz\",\"memberUrl\":\"https://www.meetup.com/members/356779077\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-04T19:05:03+01:00\",\"mostRecentVisitDate\":\"2022-03-04T19:05:03+01:00\"}},{\"node\":{\"id\":\"356832886\",\"name\":\"Ugochi + Ndunaka\",\"memberUrl\":\"https://www.meetup.com/members/356832886\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-05T07:55:03+01:00\",\"mostRecentVisitDate\":\"2022-03-05T07:55:03+01:00\"}},{\"node\":{\"id\":\"356895684\",\"name\":\"Toyin + Olayinka\",\"memberUrl\":\"https://www.meetup.com/members/356895684\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-06T03:28:51+01:00\",\"mostRecentVisitDate\":\"2022-03-06T03:28:51+01:00\"}},{\"node\":{\"id\":\"357012239\",\"name\":\"Ewatomilola\",\"memberUrl\":\"https://www.meetup.com/members/357012239\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-07T15:20:01+01:00\",\"mostRecentVisitDate\":\"2022-03-07T15:20:01+01:00\"}},{\"node\":{\"id\":\"357071414\",\"name\":\"Uduakobong + Johnson\",\"memberUrl\":\"https://www.meetup.com/members/357071414\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-08T11:16:51+01:00\",\"mostRecentVisitDate\":\"2022-03-08T11:16:51+01:00\"}},{\"node\":{\"id\":\"357153948\",\"name\":\"Tofunmi + Ayotunde\",\"memberUrl\":\"https://www.meetup.com/members/357153948\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-09T13:52:46+01:00\",\"mostRecentVisitDate\":\"2022-03-09T13:52:46+01:00\"}},{\"node\":{\"id\":\"357169742\",\"name\":\"M + O\",\"memberUrl\":\"https://www.meetup.com/members/357169742\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-09T17:31:01+01:00\",\"mostRecentVisitDate\":\"2022-03-09T17:31:01+01:00\"}},{\"node\":{\"id\":\"357214687\",\"name\":\"up + flask\",\"memberUrl\":\"https://www.meetup.com/members/357214687\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-10T10:19:29+01:00\",\"mostRecentVisitDate\":\"2022-03-11T03:26:39+01:00\"}},{\"node\":{\"id\":\"357239266\",\"name\":\"Temidayo + Omonira\",\"memberUrl\":\"https://www.meetup.com/members/357239266\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-10T16:27:52+01:00\",\"mostRecentVisitDate\":\"2022-03-10T16:27:52+01:00\"}},{\"node\":{\"id\":\"357285333\",\"name\":\"Odubote + ololade\",\"memberUrl\":\"https://www.meetup.com/members/357285333\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-11T08:59:18+01:00\",\"mostRecentVisitDate\":\"2022-03-11T08:59:18+01:00\"}},{\"node\":{\"id\":\"357292091\",\"name\":\"Taiwo + Joshua\",\"memberUrl\":\"https://www.meetup.com/members/357292091\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-11T10:43:56+01:00\",\"mostRecentVisitDate\":\"2022-03-11T10:43:56+01:00\"}},{\"node\":{\"id\":\"357319651\",\"name\":\"Obadimu\",\"memberUrl\":\"https://www.meetup.com/members/357319651\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-11T18:13:22+01:00\",\"mostRecentVisitDate\":\"2022-03-11T18:13:22+01:00\"}},{\"node\":{\"id\":\"357381826\",\"name\":\"Efosa + Edegbe\",\"memberUrl\":\"https://www.meetup.com/members/357381826\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-12T16:01:42+01:00\",\"mostRecentVisitDate\":\"2022-03-12T16:01:42+01:00\"}},{\"node\":{\"id\":\"267619226\",\"name\":\"Amina + Amos Isah\",\"memberUrl\":\"https://www.meetup.com/members/267619226\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-13T13:02:17+01:00\",\"mostRecentVisitDate\":\"2022-03-13T13:02:17+01:00\"}},{\"node\":{\"id\":\"357498663\",\"name\":\"Victor + Okofu\",\"memberUrl\":\"https://www.meetup.com/members/357498663\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-14T08:54:28+01:00\",\"mostRecentVisitDate\":\"2022-04-02T04:05:25+01:00\"}},{\"node\":{\"id\":\"357513517\",\"name\":\"DebbyD\",\"memberUrl\":\"https://www.meetup.com/members/357513517\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-14T12:38:13+01:00\",\"mostRecentVisitDate\":\"2022-03-14T12:38:13+01:00\"}},{\"node\":{\"id\":\"357568693\",\"name\":\"Genevieve\",\"memberUrl\":\"https://www.meetup.com/members/357568693\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-15T06:55:19+01:00\",\"mostRecentVisitDate\":\"2022-03-15T06:55:19+01:00\"}},{\"node\":{\"id\":\"357582600\",\"name\":\"Ayodele + Jolasun\",\"memberUrl\":\"https://www.meetup.com/members/357582600\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-15T11:13:08+01:00\",\"mostRecentVisitDate\":\"2022-03-15T11:13:08+01:00\"}},{\"node\":{\"id\":\"341509554\",\"name\":\"Sea + Novaa\",\"memberUrl\":\"https://www.meetup.com/members/341509554\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-15T21:01:52+01:00\",\"mostRecentVisitDate\":\"2022-03-15T21:01:52+01:00\"}},{\"node\":{\"id\":\"357627097\",\"name\":\"Confidence + Amos\",\"memberUrl\":\"https://www.meetup.com/members/357627097\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-15T23:24:12+01:00\",\"mostRecentVisitDate\":\"2022-03-15T23:24:12+01:00\"}},{\"node\":{\"id\":\"357632457\",\"name\":\"Olatoye + Oluwaseun\",\"memberUrl\":\"https://www.meetup.com/members/357632457\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-16T01:54:45+01:00\",\"mostRecentVisitDate\":\"2022-03-16T01:54:45+01:00\"}},{\"node\":{\"id\":\"357639030\",\"name\":\"Mfoniso + Udoh\",\"memberUrl\":\"https://www.meetup.com/members/357639030\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-16T04:48:28+01:00\",\"mostRecentVisitDate\":\"2022-03-16T04:48:28+01:00\"}},{\"node\":{\"id\":\"357754876\",\"name\":\"Pretty\",\"memberUrl\":\"https://www.meetup.com/members/357754876\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-17T17:11:35+01:00\",\"mostRecentVisitDate\":\"2022-03-17T17:11:35+01:00\"}},{\"node\":{\"id\":\"357851393\",\"name\":\"Precious + Opeyemi\",\"memberUrl\":\"https://www.meetup.com/members/357851393\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-19T01:06:10+01:00\",\"mostRecentVisitDate\":\"2022-03-19T01:06:10+01:00\"}},{\"node\":{\"id\":\"357862505\",\"name\":\"Debby + \ James \",\"memberUrl\":\"https://www.meetup.com/members/357862505\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-19T07:30:47+01:00\",\"mostRecentVisitDate\":\"2022-03-19T07:30:47+01:00\"}},{\"node\":{\"id\":\"357942177\",\"name\":\"funmilola + ogunkoya\",\"memberUrl\":\"https://www.meetup.com/members/357942177\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-20T09:40:18+01:00\",\"mostRecentVisitDate\":\"2022-03-20T09:40:18+01:00\"}},{\"node\":{\"id\":\"299614214\",\"name\":\"Maybelle\",\"memberUrl\":\"https://www.meetup.com/members/299614214\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-20T15:24:51+01:00\",\"mostRecentVisitDate\":\"2022-03-20T15:24:51+01:00\"}},{\"node\":{\"id\":\"358014363\",\"name\":\"Fatimah\",\"memberUrl\":\"https://www.meetup.com/members/358014363\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-21T08:03:35+01:00\",\"mostRecentVisitDate\":\"2022-03-21T08:03:35+01:00\"}},{\"node\":{\"id\":\"357942612\",\"name\":\"Akande + Tunmise\",\"memberUrl\":\"https://www.meetup.com/members/357942612\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-21T19:28:52+01:00\",\"mostRecentVisitDate\":\"2022-03-21T19:28:52+01:00\"}},{\"node\":{\"id\":\"344357213\",\"name\":\"Glory + Archibong\",\"memberUrl\":\"https://www.meetup.com/members/344357213\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-21T23:22:20+01:00\",\"mostRecentVisitDate\":\"2022-03-21T23:22:20+01:00\"}},{\"node\":{\"id\":\"246008029\",\"name\":\"Hope + Ngerebara\",\"memberUrl\":\"https://www.meetup.com/members/246008029\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-22T02:45:19+01:00\",\"mostRecentVisitDate\":\"2022-03-22T02:45:19+01:00\"}},{\"node\":{\"id\":\"358101334\",\"name\":\"Victoria\",\"memberUrl\":\"https://www.meetup.com/members/358101334\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-22T11:02:51+01:00\",\"mostRecentVisitDate\":\"2022-03-22T11:02:51+01:00\"}},{\"node\":{\"id\":\"321864638\",\"name\":\"Prophet + Daniel\",\"memberUrl\":\"https://www.meetup.com/members/321864638\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-22T15:10:31+01:00\",\"mostRecentVisitDate\":\"2022-03-22T15:10:31+01:00\"}},{\"node\":{\"id\":\"358134213\",\"name\":\"Oghenerukevwe + Egbaivwie \",\"memberUrl\":\"https://www.meetup.com/members/358134213\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-23T11:24:13+01:00\",\"mostRecentVisitDate\":\"2022-03-23T11:24:13+01:00\"}},{\"node\":{\"id\":\"356028860\",\"name\":\"Tahirih + Atanga\",\"memberUrl\":\"https://www.meetup.com/members/356028860\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-24T05:59:16+01:00\",\"mostRecentVisitDate\":\"2022-03-24T05:59:16+01:00\"}},{\"node\":{\"id\":\"358245206\",\"name\":\"Comfort\",\"memberUrl\":\"https://www.meetup.com/members/358245206\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-24T09:09:41+01:00\",\"mostRecentVisitDate\":\"2022-03-24T09:09:41+01:00\"}},{\"node\":{\"id\":\"358401017\",\"name\":\"Roberta + Okorie\",\"memberUrl\":\"https://www.meetup.com/members/358401017\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-26T13:11:46+01:00\",\"mostRecentVisitDate\":\"2022-03-26T13:11:46+01:00\"}},{\"node\":{\"id\":\"358442873\",\"name\":\"Reuben + Ekong\",\"memberUrl\":\"https://www.meetup.com/members/358442873\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-27T01:40:05+01:00\",\"mostRecentVisitDate\":\"2022-03-27T01:40:05+01:00\"}},{\"node\":{\"id\":\"274379696\",\"name\":\"Mouna + Belaid\",\"memberUrl\":\"https://www.meetup.com/members/274379696\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-27T15:44:56+01:00\",\"mostRecentVisitDate\":\"2022-03-27T15:44:56+01:00\"}},{\"node\":{\"id\":\"358539321\",\"name\":\"Sandra + Ngozika\",\"memberUrl\":\"https://www.meetup.com/members/358539321\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-28T11:19:26+01:00\",\"mostRecentVisitDate\":\"2022-03-28T11:19:26+01:00\"}},{\"node\":{\"id\":\"358584664\",\"name\":\"suliat + ikudaisi\",\"memberUrl\":\"https://www.meetup.com/members/358584664\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-29T00:48:54+01:00\",\"mostRecentVisitDate\":\"2022-03-29T00:48:54+01:00\"}},{\"node\":{\"id\":\"317401637\",\"name\":\"Naimul + Islam\",\"memberUrl\":\"https://www.meetup.com/members/317401637\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-29T16:09:37+01:00\",\"mostRecentVisitDate\":\"2022-03-29T16:09:37+01:00\"}},{\"node\":{\"id\":\"358641460\",\"name\":\"Angela\",\"memberUrl\":\"https://www.meetup.com/members/358641460\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-29T18:57:24+01:00\",\"mostRecentVisitDate\":\"2022-03-29T18:57:24+01:00\"}},{\"node\":{\"id\":\"358687353\",\"name\":\"Felicienne + Laura\",\"memberUrl\":\"https://www.meetup.com/members/358687353\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-30T12:36:41+01:00\",\"mostRecentVisitDate\":\"2022-04-04T11:40:39+01:00\"}},{\"node\":{\"id\":\"358762542\",\"name\":\"Mary + Opeyemi Joshua\",\"memberUrl\":\"https://www.meetup.com/members/358762542\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-03-31T11:04:10+01:00\",\"mostRecentVisitDate\":\"2022-03-31T11:04:10+01:00\"}},{\"node\":{\"id\":\"357569364\",\"name\":\" + Adedoyin\",\"memberUrl\":\"https://www.meetup.com/members/357569364\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-01T05:48:33+01:00\",\"mostRecentVisitDate\":\"2022-04-01T05:48:33+01:00\"}},{\"node\":{\"id\":\"358976603\",\"name\":\"Charles + De General\",\"memberUrl\":\"https://www.meetup.com/members/358976603\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-03T08:06:55+01:00\",\"mostRecentVisitDate\":\"2022-04-03T08:06:55+01:00\"}},{\"node\":{\"id\":\"359040111\",\"name\":\"Kenneth\",\"memberUrl\":\"https://www.meetup.com/members/359040111\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-04T02:28:36+01:00\",\"mostRecentVisitDate\":\"2022-04-04T02:28:36+01:00\"}},{\"node\":{\"id\":\"359047904\",\"name\":\"Mhiz + hamidat Onize\",\"memberUrl\":\"https://www.meetup.com/members/359047904\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-04T05:37:02+01:00\",\"mostRecentVisitDate\":\"2022-04-04T05:37:02+01:00\"}},{\"node\":{\"id\":\"359058144\",\"name\":\"Judy + Clone\",\"memberUrl\":\"https://www.meetup.com/members/359058144\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-04T08:58:29+01:00\",\"mostRecentVisitDate\":\"2022-04-04T08:58:29+01:00\"}},{\"node\":{\"id\":\"359062503\",\"name\":\"Love + Queen\",\"memberUrl\":\"https://www.meetup.com/members/359062503\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-04T10:12:58+01:00\",\"mostRecentVisitDate\":\"2022-04-04T10:12:58+01:00\"}},{\"node\":{\"id\":\"359065816\",\"name\":\"Elly + Elisha \",\"memberUrl\":\"https://www.meetup.com/members/359065816\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-04T10:59:59+01:00\",\"mostRecentVisitDate\":\"2022-04-04T10:59:59+01:00\"}},{\"node\":{\"id\":\"359207349\",\"name\":\"OMOLEWA + Iyanuoluwa\",\"memberUrl\":\"https://www.meetup.com/members/359207349\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-06T06:32:29+01:00\",\"mostRecentVisitDate\":\"2022-04-06T06:32:29+01:00\"}},{\"node\":{\"id\":\"359244832\",\"name\":\"Ify + Phy\",\"memberUrl\":\"https://www.meetup.com/members/359244832\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-06T16:49:16+01:00\",\"mostRecentVisitDate\":\"2022-04-06T16:49:16+01:00\"}},{\"node\":{\"id\":\"359273426\",\"name\":\"McCourt + Johnmills\",\"memberUrl\":\"https://www.meetup.com/members/359273426\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-07T02:41:24+01:00\",\"mostRecentVisitDate\":\"2022-04-07T02:41:24+01:00\"}},{\"node\":{\"id\":\"359355880\",\"name\":\"OG + Monac\",\"memberUrl\":\"https://www.meetup.com/members/359355880\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-08T05:50:27+01:00\",\"mostRecentVisitDate\":\"2022-04-08T05:50:27+01:00\"}},{\"node\":{\"id\":\"359456164\",\"name\":\"Dolapo + Olalekan\",\"memberUrl\":\"https://www.meetup.com/members/359456164\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-09T14:53:39+01:00\",\"mostRecentVisitDate\":\"2022-04-09T14:53:39+01:00\"}},{\"node\":{\"id\":\"359468563\",\"name\":\"Vee\",\"memberUrl\":\"https://www.meetup.com/members/359468563\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-09T17:54:11+01:00\",\"mostRecentVisitDate\":\"2022-04-09T17:54:11+01:00\"}},{\"node\":{\"id\":\"359519851\",\"name\":\"Affordable + Utensils\",\"memberUrl\":\"https://www.meetup.com/members/359519851\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-10T12:33:12+01:00\",\"mostRecentVisitDate\":\"2022-04-10T12:33:12+01:00\"}},{\"node\":{\"id\":\"359524516\",\"name\":\"Yinka + AKINTOMIWA\",\"memberUrl\":\"https://www.meetup.com/members/359524516\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-10T13:45:39+01:00\",\"mostRecentVisitDate\":\"2022-04-10T13:45:39+01:00\"}},{\"node\":{\"id\":\"359537596\",\"name\":\"Kat + Wizzy\",\"memberUrl\":\"https://www.meetup.com/members/359537596\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-10T17:11:33+01:00\",\"mostRecentVisitDate\":\"2022-04-10T17:11:33+01:00\"}},{\"node\":{\"id\":\"359547970\",\"name\":\"Chigirl\",\"memberUrl\":\"https://www.meetup.com/members/359547970\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-10T20:09:13+01:00\",\"mostRecentVisitDate\":\"2022-04-10T20:09:13+01:00\"}},{\"node\":{\"id\":\"359574803\",\"name\":\"Chidinma + \ iheaturu\",\"memberUrl\":\"https://www.meetup.com/members/359574803\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-11T06:23:54+01:00\",\"mostRecentVisitDate\":\"2022-04-11T06:23:54+01:00\"}},{\"node\":{\"id\":\"359582998\",\"name\":\"Cee + \",\"memberUrl\":\"https://www.meetup.com/members/359582998\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-11T09:05:49+01:00\",\"mostRecentVisitDate\":\"2022-04-11T09:05:49+01:00\"}},{\"node\":{\"id\":\"359657118\",\"name\":\"Gerard + maduabuchi\",\"memberUrl\":\"https://www.meetup.com/members/359657118\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-12T08:28:24+01:00\",\"mostRecentVisitDate\":\"2022-04-12T08:28:24+01:00\"}},{\"node\":{\"id\":\"359751501\",\"name\":\"Opeyemi + Ekundayo\",\"memberUrl\":\"https://www.meetup.com/members/359751501\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-13T14:37:27+01:00\",\"mostRecentVisitDate\":\"2022-04-13T14:37:27+01:00\"}},{\"node\":{\"id\":\"359754511\",\"name\":\"hazar + maveth\",\"memberUrl\":\"https://www.meetup.com/members/359754511\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-13T15:31:40+01:00\",\"mostRecentVisitDate\":\"2022-04-13T15:31:40+01:00\"}},{\"node\":{\"id\":\"328485658\",\"name\":\"tosin + george\",\"memberUrl\":\"https://www.meetup.com/members/328485658\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-15T08:21:52+01:00\",\"mostRecentVisitDate\":\"2022-04-15T08:21:52+01:00\"}},{\"node\":{\"id\":\"360018953\",\"name\":\"Chiderah + Okechukwu\",\"memberUrl\":\"https://www.meetup.com/members/360018953\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-17T10:39:16+01:00\",\"mostRecentVisitDate\":\"2022-04-17T10:39:16+01:00\"}},{\"node\":{\"id\":\"360022623\",\"name\":\"Anthony + Christopher\",\"memberUrl\":\"https://www.meetup.com/members/360022623\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-17T11:47:57+01:00\",\"mostRecentVisitDate\":\"2022-04-17T11:47:57+01:00\"}},{\"node\":{\"id\":\"360028922\",\"name\":\"Tayanna\",\"memberUrl\":\"https://www.meetup.com/members/360028922\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-17T13:34:40+01:00\",\"mostRecentVisitDate\":\"2022-04-17T13:34:40+01:00\"}},{\"node\":{\"id\":\"359935879\",\"name\":\"Mary + Jonhson\",\"memberUrl\":\"https://www.meetup.com/members/359935879\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-19T07:27:36+01:00\",\"mostRecentVisitDate\":\"2022-04-19T07:27:36+01:00\"}},{\"node\":{\"id\":\"360198105\",\"name\":\"Schopacific\",\"memberUrl\":\"https://www.meetup.com/members/360198105\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-19T17:53:59+01:00\",\"mostRecentVisitDate\":\"2022-04-19T17:53:59+01:00\"}},{\"node\":{\"id\":\"350716557\",\"name\":\"prisca\",\"memberUrl\":\"https://www.meetup.com/members/350716557\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-20T16:34:02+01:00\",\"mostRecentVisitDate\":\"2022-04-20T16:34:02+01:00\"}},{\"node\":{\"id\":\"360360495\",\"name\":\"Temi\",\"memberUrl\":\"https://www.meetup.com/members/360360495\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-22T01:41:28+01:00\",\"mostRecentVisitDate\":\"2022-04-22T01:41:28+01:00\"}},{\"node\":{\"id\":\"360413553\",\"name\":\"Edel\",\"memberUrl\":\"https://www.meetup.com/members/360413553\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-22T17:52:52+01:00\",\"mostRecentVisitDate\":\"2022-04-22T17:52:52+01:00\"}},{\"node\":{\"id\":\"360446359\",\"name\":\"Morgan\",\"memberUrl\":\"https://www.meetup.com/members/360446359\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-23T06:48:46+01:00\",\"mostRecentVisitDate\":\"2022-04-23T06:48:46+01:00\"}},{\"node\":{\"id\":\"360507050\",\"name\":\"Prince + Fabajo Adegbenga\",\"memberUrl\":\"https://www.meetup.com/members/360507050\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-24T01:57:22+01:00\",\"mostRecentVisitDate\":\"2022-05-13T15:16:37+01:00\"}},{\"node\":{\"id\":\"360528086\",\"name\":\"Promise\",\"memberUrl\":\"https://www.meetup.com/members/360528086\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-24T10:41:48+01:00\",\"mostRecentVisitDate\":\"2022-04-24T10:41:48+01:00\"}},{\"node\":{\"id\":\"360466541\",\"name\":\"Blaise + Derge\",\"memberUrl\":\"https://www.meetup.com/members/360466541\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-24T17:28:45+01:00\",\"mostRecentVisitDate\":\"2022-04-24T17:28:45+01:00\"}},{\"node\":{\"id\":\"360640157\",\"name\":\"Harry + Steve\",\"memberUrl\":\"https://www.meetup.com/members/360640157\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-25T19:52:42+01:00\",\"mostRecentVisitDate\":\"2022-04-25T19:52:42+01:00\"}},{\"node\":{\"id\":\"360641668\",\"name\":\"Zaynab + Kareem\",\"memberUrl\":\"https://www.meetup.com/members/360641668\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-25T20:15:16+01:00\",\"mostRecentVisitDate\":\"2022-04-25T20:15:16+01:00\"}},{\"node\":{\"id\":\"360660784\",\"name\":\"Adenike + Akinbade\",\"memberUrl\":\"https://www.meetup.com/members/360660784\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-26T03:57:56+01:00\",\"mostRecentVisitDate\":\"2022-04-26T03:57:56+01:00\"}},{\"node\":{\"id\":\"360667997\",\"name\":\"Tina + Okonkwo\",\"memberUrl\":\"https://www.meetup.com/members/360667997\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-26T06:56:35+01:00\",\"mostRecentVisitDate\":\"2022-04-26T06:56:35+01:00\"}},{\"node\":{\"id\":\"360884600\",\"name\":\"Anointed + Yemit\",\"memberUrl\":\"https://www.meetup.com/members/360884600\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-29T07:59:43+01:00\",\"mostRecentVisitDate\":\"2022-04-29T07:59:43+01:00\"}},{\"node\":{\"id\":\"360941997\",\"name\":\"Victoria\",\"memberUrl\":\"https://www.meetup.com/members/360941997\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-04-30T03:35:06+01:00\",\"mostRecentVisitDate\":\"2022-04-30T03:35:06+01:00\"}},{\"node\":{\"id\":\"360930609\",\"name\":\"fikky + concept\",\"memberUrl\":\"https://www.meetup.com/members/360930609\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-01T08:53:12+01:00\",\"mostRecentVisitDate\":\"2022-05-01T08:53:12+01:00\"}},{\"node\":{\"id\":\"361022757\",\"name\":\"Ene + Anyogo\",\"memberUrl\":\"https://www.meetup.com/members/361022757\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-01T09:48:20+01:00\",\"mostRecentVisitDate\":\"2022-07-25T05:25:32+01:00\"}},{\"node\":{\"id\":\"361111331\",\"name\":\"Grace\",\"memberUrl\":\"https://www.meetup.com/members/361111331\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-02T13:40:48+01:00\",\"mostRecentVisitDate\":\"2022-05-02T13:40:48+01:00\"}},{\"node\":{\"id\":\"361159366\",\"name\":\"Precious + Edwards\",\"memberUrl\":\"https://www.meetup.com/members/361159366\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-03T06:18:05+01:00\",\"mostRecentVisitDate\":\"2022-05-03T06:18:05+01:00\"}},{\"node\":{\"id\":\"361221478\",\"name\":\"Esther + Oreva\",\"memberUrl\":\"https://www.meetup.com/members/361221478\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-04T02:47:34+01:00\",\"mostRecentVisitDate\":\"2022-05-04T02:47:34+01:00\"}},{\"node\":{\"id\":\"347950900\",\"name\":\"Federica + Gazzelloni\",\"memberUrl\":\"https://www.meetup.com/members/347950900\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-05T19:24:44+01:00\",\"mostRecentVisitDate\":\"2022-05-05T19:24:44+01:00\"}},{\"node\":{\"id\":\"361352370\",\"name\":\"Okonkwo + Ruth\",\"memberUrl\":\"https://www.meetup.com/members/361352370\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-05T23:35:20+01:00\",\"mostRecentVisitDate\":\"2022-05-05T23:35:20+01:00\"}},{\"node\":{\"id\":\"327788872\",\"name\":\"Federica + Gazzelloni\",\"memberUrl\":\"https://www.meetup.com/members/327788872\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-07T10:53:19+01:00\",\"mostRecentVisitDate\":\"2022-05-07T10:53:19+01:00\"}},{\"node\":{\"id\":\"361461588\",\"name\":\"Nina + North\",\"memberUrl\":\"https://www.meetup.com/members/361461588\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-07T15:20:56+01:00\",\"mostRecentVisitDate\":\"2022-05-07T15:20:56+01:00\"}},{\"node\":{\"id\":\"361497737\",\"name\":\"Kema + Morenike\",\"memberUrl\":\"https://www.meetup.com/members/361497737\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-08T05:50:37+01:00\",\"mostRecentVisitDate\":\"2022-05-08T05:50:37+01:00\"}},{\"node\":{\"id\":\"361672961\",\"name\":\"Adedoyin\",\"memberUrl\":\"https://www.meetup.com/members/361672961\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-10T16:06:40+01:00\",\"mostRecentVisitDate\":\"2022-05-10T16:06:40+01:00\"}},{\"node\":{\"id\":\"361808718\",\"name\":\"Bibee\",\"memberUrl\":\"https://www.meetup.com/members/361808718\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-11T19:59:25+01:00\",\"mostRecentVisitDate\":\"2022-05-11T19:59:25+01:00\"}},{\"node\":{\"id\":\"361888183\",\"name\":\"I.d + Bella\",\"memberUrl\":\"https://www.meetup.com/members/361888183\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-12T13:06:46+01:00\",\"mostRecentVisitDate\":\"2022-05-12T13:06:46+01:00\"}},{\"node\":{\"id\":\"362138138\",\"name\":\"Brittany + Leeany\",\"memberUrl\":\"https://www.meetup.com/members/362138138\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-15T15:08:53+01:00\",\"mostRecentVisitDate\":\"2022-05-15T15:08:53+01:00\"}},{\"node\":{\"id\":\"362157260\",\"name\":\"Igboanu + \",\"memberUrl\":\"https://www.meetup.com/members/362157260\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-15T20:18:14+01:00\",\"mostRecentVisitDate\":\"2022-05-15T20:18:14+01:00\"}},{\"node\":{\"id\":\"362137628\",\"name\":\"Glory + Okpegboro\",\"memberUrl\":\"https://www.meetup.com/members/362137628\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-16T02:53:17+01:00\",\"mostRecentVisitDate\":\"2022-05-16T02:53:17+01:00\"}},{\"node\":{\"id\":\"362192781\",\"name\":\"amaka + eze\",\"memberUrl\":\"https://www.meetup.com/members/362192781\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-16T09:14:18+01:00\",\"mostRecentVisitDate\":\"2022-05-16T09:14:18+01:00\"}},{\"node\":{\"id\":\"362216540\",\"name\":\"Perosola + pearl\",\"memberUrl\":\"https://www.meetup.com/members/362216540\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-16T14:27:39+01:00\",\"mostRecentVisitDate\":\"2022-05-16T14:27:39+01:00\"}},{\"node\":{\"id\":\"362272950\",\"name\":\"Lara\",\"memberUrl\":\"https://www.meetup.com/members/362272950\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-17T08:33:46+01:00\",\"mostRecentVisitDate\":\"2022-05-17T08:33:46+01:00\"}},{\"node\":{\"id\":\"362430793\",\"name\":\"Pretty + P\",\"memberUrl\":\"https://www.meetup.com/members/362430793\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-19T07:17:35+01:00\",\"mostRecentVisitDate\":\"2022-05-19T07:17:35+01:00\"}},{\"node\":{\"id\":\"362499449\",\"name\":\"Peculiar + Presh\",\"memberUrl\":\"https://www.meetup.com/members/362499449\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-20T03:57:15+01:00\",\"mostRecentVisitDate\":\"2022-05-20T03:57:15+01:00\"}},{\"node\":{\"id\":\"362586793\",\"name\":\"Sure + Savage\",\"memberUrl\":\"https://www.meetup.com/members/362586793\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-21T09:35:25+01:00\",\"mostRecentVisitDate\":\"2022-05-21T09:35:25+01:00\"}},{\"node\":{\"id\":\"303378955\",\"name\":\"Ilinus + Brown\",\"memberUrl\":\"https://www.meetup.com/members/303378955\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-21T16:14:26+01:00\",\"mostRecentVisitDate\":\"2022-05-22T01:12:27+01:00\"}},{\"node\":{\"id\":\"362617219\",\"name\":\"Kayinebi + francisca nwabueze\",\"memberUrl\":\"https://www.meetup.com/members/362617219\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-21T18:13:43+01:00\",\"mostRecentVisitDate\":\"2022-05-21T18:13:43+01:00\"}},{\"node\":{\"id\":\"274447266\",\"name\":\"Amara + Udo-Obia\",\"memberUrl\":\"https://www.meetup.com/members/274447266\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-21T19:50:07+01:00\",\"mostRecentVisitDate\":\"2022-05-21T19:50:07+01:00\"}},{\"node\":{\"id\":\"362913730\",\"name\":\"Favour + Effiong\",\"memberUrl\":\"https://www.meetup.com/members/362913730\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-25T19:13:08+01:00\",\"mostRecentVisitDate\":\"2022-05-25T19:13:08+01:00\"}},{\"node\":{\"id\":\"362925190\",\"name\":\"Alexzandro\",\"memberUrl\":\"https://www.meetup.com/members/362925190\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-25T23:30:55+01:00\",\"mostRecentVisitDate\":\"2022-05-25T23:30:55+01:00\"}},{\"node\":{\"id\":\"363082682\",\"name\":\"Bukola + Bowoto\",\"memberUrl\":\"https://www.meetup.com/members/363082682\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-28T04:22:52+01:00\",\"mostRecentVisitDate\":\"2022-05-28T04:22:52+01:00\"}},{\"node\":{\"id\":\"363127763\",\"name\":\"Moses + Prince\",\"memberUrl\":\"https://www.meetup.com/members/363127763\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-28T19:14:31+01:00\",\"mostRecentVisitDate\":\"2022-05-28T19:14:31+01:00\"}},{\"node\":{\"id\":\"363158117\",\"name\":\"Ijeoma + Onwuasoanya\",\"memberUrl\":\"https://www.meetup.com/members/363158117\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-29T07:57:42+01:00\",\"mostRecentVisitDate\":\"2022-05-29T07:57:42+01:00\"}},{\"node\":{\"id\":\"363216576\",\"name\":\"Ebosetale + Abhulimen Agbons\",\"memberUrl\":\"https://www.meetup.com/members/363216576\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-05-30T03:04:04+01:00\",\"mostRecentVisitDate\":\"2022-05-30T03:04:04+01:00\"}},{\"node\":{\"id\":\"363438906\",\"name\":\"AY + Ogundele\",\"memberUrl\":\"https://www.meetup.com/members/363438906\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-02T04:18:51+01:00\",\"mostRecentVisitDate\":\"2022-06-02T04:18:51+01:00\"}},{\"node\":{\"id\":\"363904821\",\"name\":\"Jay\",\"memberUrl\":\"https://www.meetup.com/members/363904821\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-08T11:51:25+01:00\",\"mostRecentVisitDate\":\"2022-06-08T11:51:25+01:00\"}},{\"node\":{\"id\":\"354888121\",\"name\":\"Oluwaseun + Aregbesola\",\"memberUrl\":\"https://www.meetup.com/members/354888121\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-08T19:55:23+01:00\",\"mostRecentVisitDate\":\"2022-06-08T19:55:23+01:00\"}},{\"node\":{\"id\":\"364026071\",\"name\":\"Ubah + Emmanuel osinachi \",\"memberUrl\":\"https://www.meetup.com/members/364026071\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-10T06:27:04+01:00\",\"mostRecentVisitDate\":\"2022-06-10T06:27:04+01:00\"}},{\"node\":{\"id\":\"364085347\",\"name\":\"Janiees\",\"memberUrl\":\"https://www.meetup.com/members/364085347\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-11T00:25:33+01:00\",\"mostRecentVisitDate\":\"2022-06-11T00:25:33+01:00\"}},{\"node\":{\"id\":\"364291709\",\"name\":\"caye + GODFREY\",\"memberUrl\":\"https://www.meetup.com/members/364291709\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-13T20:34:16+01:00\",\"mostRecentVisitDate\":\"2022-06-13T20:34:16+01:00\"}},{\"node\":{\"id\":\"364341194\",\"name\":\"Adediran + Adedoyin\",\"memberUrl\":\"https://www.meetup.com/members/364341194\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-14T12:55:14+01:00\",\"mostRecentVisitDate\":\"2022-06-14T12:55:14+01:00\"}},{\"node\":{\"id\":\"364399017\",\"name\":\"Chioma + Chioma\",\"memberUrl\":\"https://www.meetup.com/members/364399017\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-15T07:56:37+01:00\",\"mostRecentVisitDate\":\"2022-06-15T07:56:37+01:00\"}},{\"node\":{\"id\":\"364423544\",\"name\":\"Osborn + Elizabeth#\",\"memberUrl\":\"https://www.meetup.com/members/364423544\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-15T14:38:06+01:00\",\"mostRecentVisitDate\":\"2022-06-15T14:38:06+01:00\"}},{\"node\":{\"id\":\"364452732\",\"name\":\"Ace + Boi\",\"memberUrl\":\"https://www.meetup.com/members/364452732\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-16T00:27:28+01:00\",\"mostRecentVisitDate\":\"2022-06-16T00:27:28+01:00\"}},{\"node\":{\"id\":\"364474203\",\"name\":\"Nsima + Okon\",\"memberUrl\":\"https://www.meetup.com/members/364474203\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-16T09:21:33+01:00\",\"mostRecentVisitDate\":\"2022-06-16T09:21:33+01:00\"}},{\"node\":{\"id\":\"364538767\",\"name\":\"Folake\",\"memberUrl\":\"https://www.meetup.com/members/364538767\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-17T06:38:38+01:00\",\"mostRecentVisitDate\":\"2022-06-17T06:38:38+01:00\"}},{\"node\":{\"id\":\"364703707\",\"name\":\"OLAITAN + OLADELE\",\"memberUrl\":\"https://www.meetup.com/members/364703707\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-19T15:55:23+01:00\",\"mostRecentVisitDate\":\"2022-06-19T15:55:23+01:00\"}},{\"node\":{\"id\":\"364738478\",\"name\":\"Lucia + Ogunleye\",\"memberUrl\":\"https://www.meetup.com/members/364738478\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-20T04:53:25+01:00\",\"mostRecentVisitDate\":\"2022-06-20T04:53:25+01:00\"}},{\"node\":{\"id\":\"364743543\",\"name\":\"Just + Zahra\",\"memberUrl\":\"https://www.meetup.com/members/364743543\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-20T06:52:16+01:00\",\"mostRecentVisitDate\":\"2022-06-20T06:52:16+01:00\"}},{\"node\":{\"id\":\"364751785\",\"name\":\"Robert + Gloria\",\"memberUrl\":\"https://www.meetup.com/members/364751785\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-20T09:23:47+01:00\",\"mostRecentVisitDate\":\"2022-06-20T09:23:47+01:00\"}},{\"node\":{\"id\":\"364753141\",\"name\":\"Ibitayo + John Iyanuoluwa\",\"memberUrl\":\"https://www.meetup.com/members/364753141\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-20T09:50:18+01:00\",\"mostRecentVisitDate\":\"2022-06-20T09:50:18+01:00\"}},{\"node\":{\"id\":\"364803784\",\"name\":\"daniel + taiwo\",\"memberUrl\":\"https://www.meetup.com/members/364803784\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-20T23:19:39+01:00\",\"mostRecentVisitDate\":\"2022-06-20T23:19:39+01:00\"}},{\"node\":{\"id\":\"295972144\",\"name\":\"Cynthia + omovoiye\",\"memberUrl\":\"https://www.meetup.com/members/295972144\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-23T17:45:38+01:00\",\"mostRecentVisitDate\":\"2022-06-23T17:45:38+01:00\"}},{\"node\":{\"id\":\"365091311\",\"name\":\"Laura + Goldie\",\"memberUrl\":\"https://www.meetup.com/members/365091311\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-25T02:47:11+01:00\",\"mostRecentVisitDate\":\"2022-06-25T02:47:11+01:00\"}},{\"node\":{\"id\":\"365247219\",\"name\":\"Gift + Monday\",\"memberUrl\":\"https://www.meetup.com/members/365247219\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-27T10:30:59+01:00\",\"mostRecentVisitDate\":\"2022-06-27T10:30:59+01:00\"}},{\"node\":{\"id\":\"365310256\",\"name\":\"Gloria + Ajani\",\"memberUrl\":\"https://www.meetup.com/members/365310256\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-28T07:12:43+01:00\",\"mostRecentVisitDate\":\"2022-06-28T07:12:43+01:00\"}},{\"node\":{\"id\":\"365424753\",\"name\":\"Deborah\",\"memberUrl\":\"https://www.meetup.com/members/365424753\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-29T18:16:38+01:00\",\"mostRecentVisitDate\":\"2022-06-29T18:16:38+01:00\"}},{\"node\":{\"id\":\"365453300\",\"name\":\"Miracle + Okechukwu\",\"memberUrl\":\"https://www.meetup.com/members/365453300\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-30T09:16:37+01:00\",\"mostRecentVisitDate\":\"2022-06-30T09:16:37+01:00\"}},{\"node\":{\"id\":\"365467928\",\"name\":\"Cynthia + Osita\",\"memberUrl\":\"https://www.meetup.com/members/365467928\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-30T11:13:36+01:00\",\"mostRecentVisitDate\":\"2022-06-30T11:13:36+01:00\"}},{\"node\":{\"id\":\"365478786\",\"name\":\"Adeoye + Ayomide Davicrane\",\"memberUrl\":\"https://www.meetup.com/members/365478786\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-06-30T14:34:42+01:00\",\"mostRecentVisitDate\":\"2022-06-30T14:34:42+01:00\"}},{\"node\":{\"id\":\"365708903\",\"name\":\"Vivian + Desmond\",\"memberUrl\":\"https://www.meetup.com/members/365708903\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-04T00:42:58+01:00\",\"mostRecentVisitDate\":\"2022-07-04T00:42:58+01:00\"}},{\"node\":{\"id\":\"365759073\",\"name\":\"Favour + Horgan\",\"memberUrl\":\"https://www.meetup.com/members/365759073\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-04T16:34:57+01:00\",\"mostRecentVisitDate\":\"2022-07-04T16:34:57+01:00\"}},{\"node\":{\"id\":\"365782571\",\"name\":\"Johnson + ebah Israel\",\"memberUrl\":\"https://www.meetup.com/members/365782571\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-05T01:08:39+01:00\",\"mostRecentVisitDate\":\"2022-07-05T01:08:39+01:00\"}},{\"node\":{\"id\":\"365898102\",\"name\":\"Bohlar + Berryz\",\"memberUrl\":\"https://www.meetup.com/members/365898102\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-06T15:17:21+01:00\",\"mostRecentVisitDate\":\"2022-07-06T15:17:21+01:00\"}},{\"node\":{\"id\":\"365911650\",\"name\":\"Abimbola\",\"memberUrl\":\"https://www.meetup.com/members/365911650\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-06T19:08:51+01:00\",\"mostRecentVisitDate\":\"2022-07-06T19:08:51+01:00\"}},{\"node\":{\"id\":\"366070557\",\"name\":\"Barine + Wealth\",\"memberUrl\":\"https://www.meetup.com/members/366070557\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-11T02:39:20+01:00\",\"mostRecentVisitDate\":\"2022-07-11T02:39:20+01:00\"}},{\"node\":{\"id\":\"366312288\",\"name\":\"Ashley\",\"memberUrl\":\"https://www.meetup.com/members/366312288\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-12T14:16:46+01:00\",\"mostRecentVisitDate\":\"2022-07-12T14:16:46+01:00\"}},{\"node\":{\"id\":\"366329624\",\"name\":\"QuintTechDiva\",\"memberUrl\":\"https://www.meetup.com/members/366329624\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-13T06:40:17+01:00\",\"mostRecentVisitDate\":\"2022-07-13T06:40:17+01:00\"}},{\"node\":{\"id\":\"366525776\",\"name\":\"Bimbo\",\"memberUrl\":\"https://www.meetup.com/members/366525776\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-15T12:07:28+01:00\",\"mostRecentVisitDate\":\"2022-07-15T12:07:28+01:00\"}},{\"node\":{\"id\":\"366818293\",\"name\":\"Oluwaseyi + Deborah\",\"memberUrl\":\"https://www.meetup.com/members/366818293\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-19T12:23:01+01:00\",\"mostRecentVisitDate\":\"2022-07-19T12:23:01+01:00\"}},{\"node\":{\"id\":\"367096351\",\"name\":\"Kim + Ewa\U0001F49C\",\"memberUrl\":\"https://www.meetup.com/members/367096351\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-23T07:47:45+01:00\",\"mostRecentVisitDate\":\"2022-07-23T07:47:45+01:00\"}},{\"node\":{\"id\":\"367165918\",\"name\":\"Adebukola + Anifowose\",\"memberUrl\":\"https://www.meetup.com/members/367165918\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-24T08:12:52+01:00\",\"mostRecentVisitDate\":\"2022-07-24T08:12:52+01:00\"}},{\"node\":{\"id\":\"367210513\",\"name\":\"Hannahspecial + Isaac\",\"memberUrl\":\"https://www.meetup.com/members/367210513\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-24T21:32:38+01:00\",\"mostRecentVisitDate\":\"2022-07-24T21:32:38+01:00\"}},{\"node\":{\"id\":\"367402797\",\"name\":\"Tamunotonye + Kalio\",\"memberUrl\":\"https://www.meetup.com/members/367402797\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-27T11:40:53+01:00\",\"mostRecentVisitDate\":\"2022-07-27T11:40:53+01:00\"}},{\"node\":{\"id\":\"367464369\",\"name\":\"tabby + philips\",\"memberUrl\":\"https://www.meetup.com/members/367464369\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-28T08:03:25+01:00\",\"mostRecentVisitDate\":\"2022-07-28T08:03:25+01:00\"}},{\"node\":{\"id\":\"365510227\",\"name\":\"olusola + fatimah\",\"memberUrl\":\"https://www.meetup.com/members/365510227\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-30T06:48:27+01:00\",\"mostRecentVisitDate\":\"2022-07-30T06:48:27+01:00\"}},{\"node\":{\"id\":\"367616267\",\"name\":\"Funmi + Ade\",\"memberUrl\":\"https://www.meetup.com/members/367616267\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-30T11:50:17+01:00\",\"mostRecentVisitDate\":\"2022-07-30T11:50:17+01:00\"}},{\"node\":{\"id\":\"367689567\",\"name\":\"Doris + nwakigwe\",\"memberUrl\":\"https://www.meetup.com/members/367689567\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-07-31T13:14:56+01:00\",\"mostRecentVisitDate\":\"2022-09-24T01:19:59+01:00\"}},{\"node\":{\"id\":\"367836200\",\"name\":\"Ibrahim + Abdulazeez\",\"memberUrl\":\"https://www.meetup.com/members/367836200\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-02T12:36:20+01:00\",\"mostRecentVisitDate\":\"2022-08-02T12:36:20+01:00\"}},{\"node\":{\"id\":\"367874545\",\"name\":\"Ayobami + Oluwaponmile\",\"memberUrl\":\"https://www.meetup.com/members/367874545\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-03T01:43:51+01:00\",\"mostRecentVisitDate\":\"2022-08-03T01:43:51+01:00\"}},{\"node\":{\"id\":\"368086056\",\"name\":\"Esther\",\"memberUrl\":\"https://www.meetup.com/members/368086056\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-06T08:29:18+01:00\",\"mostRecentVisitDate\":\"2022-08-06T08:29:18+01:00\"}},{\"node\":{\"id\":\"368146487\",\"name\":\"Top + Universe\",\"memberUrl\":\"https://www.meetup.com/members/368146487\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-07T04:40:41+01:00\",\"mostRecentVisitDate\":\"2022-08-07T04:40:41+01:00\"}},{\"node\":{\"id\":\"368807125\",\"name\":\"Bukola + Ola\",\"memberUrl\":\"https://www.meetup.com/members/368807125\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-16T17:08:38+01:00\",\"mostRecentVisitDate\":\"2022-08-16T17:08:38+01:00\"}},{\"node\":{\"id\":\"368991315\",\"name\":\"Joy + Ugonma Okechukwu\",\"memberUrl\":\"https://www.meetup.com/members/368991315\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-19T12:25:13+01:00\",\"mostRecentVisitDate\":\"2022-08-19T12:25:13+01:00\"}},{\"node\":{\"id\":\"131927992\",\"name\":\"Blessing\",\"memberUrl\":\"https://www.meetup.com/members/131927992\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-08-26T14:48:51+01:00\",\"mostRecentVisitDate\":\"2022-08-26T14:48:51+01:00\"}},{\"node\":{\"id\":\"369918483\",\"name\":\"Busy + Brain\",\"memberUrl\":\"https://www.meetup.com/members/369918483\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-09-02T01:32:59+01:00\",\"mostRecentVisitDate\":\"2022-09-02T01:32:59+01:00\"}},{\"node\":{\"id\":\"370607162\",\"name\":\"Damilola + Tope\",\"memberUrl\":\"https://www.meetup.com/members/370607162\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-09-12T02:15:54+01:00\",\"mostRecentVisitDate\":\"2022-09-12T02:15:54+01:00\"}},{\"node\":{\"id\":\"370757575\",\"name\":\"The + best powerful Herbalist\",\"memberUrl\":\"https://www.meetup.com/members/370757575\",\"memberPhoto\":{\"baseUrl\":\"https://secure-content.meetupstatic.com/images/classic-member/\"}},\"metadata\":{\"status\":\"ACTIVE\",\"role\":\"MEMBER\",\"joinedDate\":\"2022-09-14T08:28:09+01:00\",\"mostRecentVisitDate\":\"2022-09-14T08:28:09+01:00\"}}]}}}}\n" + recorded_at: 2022-09-29 18:31:51 GMT recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/get_pro_events.yml b/tests/fixtures/get_pro_events.yml deleted file mode 100644 index f4084be5..00000000 --- a/tests/fixtures/get_pro_events.yml +++ /dev/null @@ -1,1886 +0,0 @@ -http_interactions: -- request: - method: get - uri: https://api.meetup.com/pro/rladies/events?offset=0 - body: - encoding: '' - string: '' - headers: - Accept: application/json, text/xml, application/xml, */* - Authorization: not my bearer token - response: - status: - status_code: 200 - category: Success - reason: OK - message: 'Success: (200) OK' - headers: - content-type: application/json; charset=utf-8 - server: Apache/2.4.39 (Unix) OpenSSL/1.1.1c - x-meetup-server: ip-10-192-3-13 - x-meetup-request-id: fd70606b-64e3-4c58-8a6b-a9503b16fca8 - x-oauth-scopes: basic - x-accepted-oauth-scopes: basic - x-ratelimit-limit: '30' - x-ratelimit-remaining: '29' - x-ratelimit-reset: '10' - etag: '"cdd262e2771b9d13be48a9a34fef0e10-gzip"' - content-encoding: gzip - accept-ranges: bytes - date: Sat, 30 Jan 2021 14:08:56 GMT - via: 1.1 varnish - x-served-by: cache-cdg20735-CDG - x-cache: MISS - x-cache-hits: '0' - x-timer: S1612015736.225341,VS0,VE751 - vary: Accept-Encoding,User-Agent,Accept-Language - body: - encoding: UTF-8 - file: no - string: '[{"event":{"created":1608376162000,"duration":7200000,"id":"275264114","name":"{R-Ladies - Toolbox Series} Part 2: Presenting Results ","rsvp_sample":[{"id":1859009123,"created":1608380622000,"updated":1608380622000,"member":{"id":235598538,"name":"Hédia - T.","photo":{"id":299059042,"highres_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/highres_299059042.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/member_299059042.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/thumb_299059042.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28062692,"urlname":"rladies-guayaquil","name":"R-Ladies - Guayaquil","status":"grace","who":"Members","members":544,"join_mode":"open"},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28706674,"urlname":"rladies-niteroi","name":"R-Ladies - Niterói","status":"grace","who":"R-Ladies","members":747,"join_mode":"open","group_photo":{"id":471751036,"highres_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/highres_471751036.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/600_471751036.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/thumb_471751036.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29332380,"urlname":"rladies-salvador","name":"R-Ladies - Salvador","status":"grace","who":"R-Ladies","members":230,"join_mode":"open","group_photo":{"id":473155144,"highres_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/highres_473155144.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/600_473155144.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/thumb_473155144.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33409736,"urlname":"rladies-aguascalientes","name":"R-Ladies - Aguascalientes","status":"grace","who":"R-Ladies","members":313,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859205759,"created":1608638757000,"updated":1608638757000,"member":{"id":9222629,"name":"Amélie - G.","photo":{"id":290857016,"highres_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/highres_290857016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/member_290857016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/thumb_290857016.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22066895,"urlname":"rladies-budapest","name":"R-Ladies - Budapest","status":"grace","who":"Members","members":862,"join_mode":"open","group_photo":{"id":457814146,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/highres_457814146.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/600_457814146.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/thumb_457814146.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22202405,"urlname":"rladies-adelaide","name":"R-Ladies - Adelaide","status":"grace","who":"Members","members":310,"join_mode":"open","group_photo":{"id":460145107,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/highres_460145107.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/600_460145107.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/thumb_460145107.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25492745,"urlname":"rladies-brussels","name":"R-Ladies - Brussels","status":"grace","who":"Members","members":231,"join_mode":"open","group_photo":{"id":463737873,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/highres_463737873.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/600_463737873.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/thumb_463737873.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653718,"urlname":"rladies-copenhagen","name":"R-Ladies - Copenhagen","status":"grace","who":"R-Ladies","members":451,"join_mode":"open","group_photo":{"id":478307928,"highres_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/highres_478307928.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/600_478307928.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/thumb_478307928.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26765765,"urlname":"rladies-lausanne","name":"R-Ladies - Lausanne","status":"grace","who":"R-Ladies","members":317,"join_mode":"open","group_photo":{"id":466577828,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/highres_466577828.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/600_466577828.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/thumb_466577828.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29734242,"urlname":"rladies-helsinki","name":"R-Ladies - Helsinki","status":"grace","who":"R-Ladies","members":381,"join_mode":"open","group_photo":{"id":474392073,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/highres_474392073.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/600_474392073.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/thumb_474392073.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29783351,"urlname":"rladies-lancaster","name":"R-Ladies - Lancaster","status":"grace","who":"R-Ladies","members":129,"join_mode":"open","group_photo":{"id":474536781,"highres_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/highres_474536781.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/600_474536781.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/thumb_474536781.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375344,"urlname":"rladies-perth","name":"R-Ladies - Perth","status":"grace","who":"R-Ladies","members":250,"join_mode":"open","group_photo":{"id":475694425,"highres_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/highres_475694425.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/600_475694425.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/thumb_475694425.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31174585,"urlname":"rladies-kyiv","name":"R-Ladies - Kyiv","status":"grace","who":"R-Ladies","members":300,"join_mode":"open","group_photo":{"id":478697566,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/highres_478697566.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/600_478697566.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/thumb_478697566.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264590,"urlname":"rladies-newcastle","name":"R-Ladies - Newcastle","status":"grace","who":"R-Ladies","members":260,"join_mode":"open","group_photo":{"id":479041411,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/3/highres_479041411.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/3/600_479041411.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/3/thumb_479041411.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264653,"urlname":"rladies-bilbao","name":"R-Ladies - Bilbao","status":"grace","who":"R-Ladies","members":188,"join_mode":"open"},{"id":31807417,"urlname":"rladies-christchurch","name":"R-Ladies - Christchurch","status":"grace","who":"R-Ladies","members":89,"join_mode":"open","group_photo":{"id":480992659,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/highres_480992659.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/600_480992659.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/thumb_480992659.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32612004,"urlname":"rladies-lagos","name":"R-Ladies - Lagos","status":"grace","who":"R-Ladies","members":290,"join_mode":"open","group_photo":{"id":484042436,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/highres_484042436.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/600_484042436.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/thumb_484042436.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702177,"urlname":"rladies-lviv","name":"R-Ladies - L''viv","status":"grace","who":"R-Ladies","members":34,"join_mode":"open","group_photo":{"id":484462327,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/highres_484462327.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/600_484462327.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/thumb_484462327.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32783356,"urlname":"rladies-podgorica","name":"R-Ladies - Podgorica","status":"grace","who":"R-Ladies","members":25,"join_mode":"open","group_photo":{"id":485004751,"highres_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/highres_485004751.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/600_485004751.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/thumb_485004751.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33061717,"urlname":"rladies-new-orleans","name":"R-Ladies - New Orleans","status":"grace","who":"R-Ladies","members":37,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33880125,"urlname":"rladies-glasgow","name":"R-Ladies - Glasgow","status":"grace","who":"R-Ladies","members":41,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859013568,"created":1608387411000,"updated":1608387411000,"member":{"id":9342634,"name":"Pavitra - C.","photo":{"id":298860696,"highres_link":"https://secure.meetupstatic.com/photos/member/2/b/8/highres_298860696.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/2/b/8/member_298860696.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/2/b/8/thumb_298860696.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20493986,"urlname":"rladies-nashville","name":"R-Ladies - Nashville","status":"grace","who":"Members","members":508,"join_mode":"open","group_photo":{"id":469393648,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/highres_469393648.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/600_469393648.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/thumb_469393648.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24292488,"urlname":"rladies-orlando","name":"R-Ladies - Orlando","status":"grace","who":"Members","members":326,"join_mode":"open","group_photo":{"id":477647316,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/highres_477647316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/600_477647316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/thumb_477647316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32327430,"urlname":"rladies-jakarta","name":"R-Ladies - Jakarta","status":"grace","who":"R-Ladies","members":546,"join_mode":"open","group_photo":{"id":482869276,"highres_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/highres_482869276.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/600_482869276.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/thumb_482869276.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041359,"urlname":"rladies-mumbai","name":"R-Ladies - Mumbai","status":"grace","who":"R-Ladies","members":77,"join_mode":"open"},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717527,"urlname":"rladies-cordoba","name":"R-Ladies - Cordoba","status":"grace","who":"R-Ladies","members":32,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33725126,"urlname":"rladies-ushuaia","name":"R-Ladies - Ushuaia","status":"grace","who":"R-Ladies","members":29,"join_mode":"approval"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859088447,"created":1608487841000,"updated":1608487841000,"member":{"id":274379696,"name":"Mouna - B.","photo":{"id":285059599,"highres_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/highres_285059599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/member_285059599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/thumb_285059599.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31338096,"urlname":"Thames-Valley-Artificial-Intelligence-Meetup","name":"Thames - Valley Artificial Intelligence Meetup","status":"grace","who":"Members","members":832,"join_mode":"open","group_photo":{"id":480927776,"highres_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/highres_480927776.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/600_480927776.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/thumb_480927776.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859023557,"created":1608398833000,"updated":1608398833000,"member":{"id":292263395,"name":"Eva_R","photo":{"id":301514461,"highres_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/highres_301514461.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/member_301514461.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/thumb_301514461.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26203679,"urlname":"rladies-san-jose","name":"R-Ladies - San Jose","status":"grace","who":"Participantes","members":618,"join_mode":"open","group_photo":{"id":465216756,"highres_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/highres_465216756.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/600_465216756.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/thumb_465216756.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27456719,"urlname":"rladies-sao-paulo","name":"R-Ladies - São Paulo","status":"grace","who":"Members","members":1148,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717562,"urlname":"rladies-talca","name":"R-Ladies - Talca","status":"grace","who":"R-Ladies","members":123,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1612371600000,"local_date":"2021-02-03","local_time":"18:00","updated":1611821320000,"utc_offset":3600000,"waitlist_count":0,"yes_rsvp_count":83,"is_online_event":true,"group":{"created":1548261185000,"name":"R-Ladies - Freiburg","id":30994180,"join_mode":"open","lat":47.9900016784668,"lon":7.849999904632568,"urlname":"rladies-freiburg","who":"R-Ladies","localized_location":"Freiburg, - Germany","state":"","country":"de","region":"en_US","timezone":"Europe/Berlin"},"link":"https://www.meetup.com/rladies-freiburg/events/275264114/"},"event_image":{"id":494003447,"highres_link":"https://secure.meetupstatic.com/photos/event/5/b/9/7/highres_494003447.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/b/9/7/600_494003447.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/b/9/7/thumb_494003447.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":30994180,"name":"R-Ladies - Freiburg","description":"

R-Ladies Freiburg welcomes members of all R proficiency - levels, whether you''re a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our community - is designed to develop our members'' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!
A local chapter of R-Ladies Global, R-Ladies - Freiburg exists to promote gender diversity in the R community worldwide. - We are pro-actively inclusive of queer, trans, and all minority identities, - with additional sensitivity to intersectional identities. Our priority is - to provide a safe community space for anyone identifying as a minority gender - who is interested in and/or working with R. As a founding principle, there - is no cost or charge to participate in any of our R-Ladies communities around - the world. 

\n


We are part of Global R-Ladies group. You can - access our presentations, R scripts, and Projects on our Github account and - follow us on twitter to stay up to date about R-Ladies news!

\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: https://github.com/rladies -

\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team''s discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Freiburg is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Freiburg event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community\u2019s aims. This might include (but is not - limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

","lat":47.9900016784668,"lon":7.849999904632568,"city":"Freiburg","country":"Germany","urlname":"rladies-freiburg","member_count":417,"average_age":31.867599487304688,"founded_date":1548261185000,"pro_join_date":1548262707463,"last_event":1611162000000,"next_event":1612371600000,"past_events":32,"upcoming_events":8,"past_rsvps":639,"rsvps_per_event":19.96875,"repeat_rsvpers":152,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":24553,"name":"Natural - Language Processing","urlkey":"natural-language-processing","lang":"en_US"},{"id":29971,"name":"Machine - Learning","urlkey":"machine-learning","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":38458,"name":"Predictive - Analytics","urlkey":"predictive-analytics","lang":"en_US"},{"id":55324,"name":"Data - Mining","urlkey":"data-mining","lang":"en_US"},{"id":102811,"name":"Data Science","urlkey":"data-science","lang":"en_US"},{"id":1335552,"name":"R - Programming Language","urlkey":"r-programming-language","lang":"en_US"},{"id":1456952,"name":"Deep - Learning","urlkey":"deep-learning","lang":"en_US"},{"id":1512213,"name":"Data - Science using R","urlkey":"data-science-using-r","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.125827819108963,"gender_female":0.6556291580200195,"gender_male":0.20529800653457642,"gender_other":0.013245033100247383,"organizers":[{"name":"Elisa - Schneider","member_id":247890553,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"},{"name":"Divya Seernani","member_id":267617953,"permission":"coorganizer"},{"name":"Kyla - McConnell","member_id":297236335,"permission":"coorganizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1610089264000,"duration":7200000,"id":"275622681","name":"[2021 - Feb] Voice of Data 如何為你手中的數據發聲","rsvp_limit":50,"rsvp_sample":[{"id":1861664644,"created":1611111762000,"updated":1611111762000,"member":{"id":110970552,"name":"Summit - S.","photo":{"id":287606346,"highres_link":"https://secure.meetupstatic.com/photos/member/6/6/e/a/highres_287606346.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/6/6/e/a/member_287606346.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/6/6/e/a/thumb_287606346.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20871369,"urlname":"rladies-taipei","name":"R-Ladies - Taipei","status":"grace","who":"Members","members":1746,"join_mode":"open","group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":true}}},{"id":1861664643,"created":1611111762000,"updated":1611111762000,"member":{"id":186518724,"name":"Kristen - C.","photo":{"id":255657732,"highres_link":"https://secure.meetupstatic.com/photos/member/e/1/8/4/highres_255657732.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/e/1/8/4/member_255657732.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/e/1/8/4/thumb_255657732.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"role":"coorganizer","self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20871369,"urlname":"rladies-taipei","name":"R-Ladies - Taipei","status":"grace","who":"Members","members":1746,"join_mode":"open","group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":true}}},{"id":1861664716,"created":1611111843000,"updated":1611111843000,"member":{"id":240282947,"name":"MINYU - W.","photo":{"id":272057212,"highres_link":"https://secure.meetupstatic.com/photos/member/4/3/3/c/highres_272057212.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/4/3/3/c/member_272057212.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/4/3/3/c/thumb_272057212.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20871369,"urlname":"rladies-taipei","name":"R-Ladies - Taipei","status":"grace","who":"Members","members":1746,"join_mode":"open","group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1861666039,"created":1611112837000,"updated":1611112837000,"member":{"id":261616813,"name":"Fish - L.","photo":{"id":279974168,"highres_link":"https://secure.meetupstatic.com/photos/member/3/7/5/8/highres_279974168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/7/5/8/member_279974168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/7/5/8/thumb_279974168.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20871369,"urlname":"rladies-taipei","name":"R-Ladies - Taipei","status":"grace","who":"Members","members":1746,"join_mode":"open","group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1861668098,"created":1611114356000,"updated":1611114356000,"member":{"id":324780418,"name":"張瀞婷","photo":{"id":303182700,"highres_link":"https://secure.meetupstatic.com/photos/member/a/8/c/highres_303182700.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/a/8/c/member_303182700.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/a/8/c/thumb_303182700.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20871369,"urlname":"rladies-taipei","name":"R-Ladies - Taipei","status":"grace","who":"Members","members":1746,"join_mode":"open","group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1613993400000,"local_date":"2021-02-22","local_time":"19:30","updated":1611214777000,"utc_offset":28800000,"waitlist_count":39,"yes_rsvp_count":50,"is_online_event":false,"group":{"created":1477246235000,"name":"R-Ladies - Taipei","id":20871369,"join_mode":"open","lat":25.020000457763672,"lon":121.44999694824219,"urlname":"rladies-taipei","who":"Members","localized_location":"Taipei, - Taiwan","state":"","country":"tw","region":"en_US","timezone":"Asia/Taipei"},"link":"https://www.meetup.com/rladies-taipei/events/275622681/"},"chapter":{"id":20871369,"name":"R-Ladies - Taipei","description":"

Hi R-Ladies,

\n

經過兩年的學習與歷練,R-Ladies Taipei - 已經長大茁壯,可以獨立 meetup 頁面囉! 從 2016 年 10 月起,相關活動的報名都會在這個頁面。我們仍在搬家中,如果你想了解以前的活動,請參考以下網址:http://www.meetup.com/Taiwan-R/。當然,各種月會、讀書會、技術新知等訊息,我們照舊同步發佈在 - Facebook 社團上喔。

\n

\u2022 官方網站 (附有投影片連結): https://rladiestaipei.github.io/R-Ladies-Taipei/

\n

\u2022 - Meetup

\n
\n

\u2022 after 2016.10: https://www.meetup.com/R-Ladies-Taipei

- \n

\u2022 before 2016.10: http://www.meetup.com/Taiwan-R/

- \n
\n

\u2022 Facebook 社團: https://www.facebook.com/groups/twrladies/

\n

\u2022 - 認識我們過去的活動:goo.gl/HbHNeP

\n

\u2022 - 2017 Go, Kaggle 大賽:http://rladiestaipei-kaggle.strikingly.com/

\n

另外,因為最近我們發現實體聚會中,經常出現非女性的會眾,而且比例比我們預料的還要高許多。因此,我們希望提出 - R-Ladies Taipei Code of Conduct,呼籲大家一起遵守,維繫良性的社群生態。

\n

Code of Conduct - 基本上這是一個女性學習社群,因此若你不是女性,但出現在我們的實體聚會的話,你很可能被要求以下行為:

\n

\u2022 發言的機會請優先留給女生 -

\n

\u2022 座位請優先保留給女生

\n

\u2022 必須對 R-Ladies Taipei 有貢獻,例如:提供高品質的 - 3分鐘技術閃電秀

\n


\n

最後,祝大家學習 R 的過程中都充滿喜悅 :)

\n

R-Ladies Taipei - Officer

","lat":25.020000457763672,"lon":121.44999694824219,"city":"Taipei","country":"Taiwan","urlname":"rladies-taipei","member_count":1746,"average_age":33.43470001220703,"founded_date":1477246235000,"pro_join_date":1553937819818,"last_event":1578309600000,"next_event":1613993400000,"past_events":45,"upcoming_events":1,"past_rsvps":1866,"rsvps_per_event":41.46666717529297,"repeat_rsvpers":330,"topics":[{"id":9696,"name":"New - Technology","urlkey":"newtech","lang":"en_US"},{"id":15280,"name":"Statistical - Computing","urlkey":"statistical-computing","lang":"en_US"},{"id":30928,"name":"Data - Analytics","urlkey":"data-analytics","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":48471,"name":"Computer - programming","urlkey":"computer-programming","lang":"en_US"},{"id":98380,"name":"R - Project for Statistical Computing","urlkey":"r-project-for-statistical-computing","lang":"en_US"},{"id":102811,"name":"Data - Science","urlkey":"data-science","lang":"en_US"},{"id":115768,"name":"Programming - in R","urlkey":"programming-in-r","lang":"en_US"},{"id":115913,"name":"Applied - Statistics","urlkey":"applied-statistics","lang":"en_US"},{"id":1452302,"name":"Statistical - Modeling","urlkey":"statistical-modeling","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.06848306208848953,"gender_female":0.7113401889801025,"gender_male":0.2120765894651413,"gender_other":0.008100147359073162,"organizers":[{"name":"Li - Cheng En","member_id":77792962,"permission":"coorganizer"},{"name":"Huai-Wen - Mia Chang","member_id":87829312,"permission":"coorganizer"},{"name":"Ju-Yin - Tang","member_id":117729762,"permission":"coorganizer"},{"name":"Rachael Pai","member_id":165296472,"permission":"coorganizer"},{"name":"Mindy - Huang","member_id":171295762,"permission":"coorganizer"},{"name":"Dana Huang","member_id":185891132,"permission":"coorganizer"},{"name":"Ning/Ivy - Chen","member_id":186518282,"permission":"coorganizer"},{"name":"Kristen Chan","member_id":186518724,"permission":"coorganizer"},{"name":"Lucy - Chen","member_id":195941380,"permission":"coorganizer"},{"name":"Angie","member_id":203934773,"permission":"coorganizer"},{"name":"Chiayi - Yen","member_id":215480790,"permission":"coorganizer"},{"name":"Pei Lee","member_id":222952530,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"group_photo":{"id":456452141,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/highres_456452141.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/600_456452141.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/8/d/thumb_456452141.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1608749813000,"duration":7200000,"id":"275334017","name":"From - learn-R to teach-R: An expert panel on effective R instruction","rsvp_sample":[{"id":1859949456,"created":1609604362000,"updated":1609604362000,"member":{"id":235598538,"name":"Hédia - T.","photo":{"id":299059042,"highres_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/highres_299059042.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/member_299059042.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/thumb_299059042.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28062692,"urlname":"rladies-guayaquil","name":"R-Ladies - Guayaquil","status":"grace","who":"Members","members":544,"join_mode":"open"},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28706674,"urlname":"rladies-niteroi","name":"R-Ladies - Niterói","status":"grace","who":"R-Ladies","members":747,"join_mode":"open","group_photo":{"id":471751036,"highres_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/highres_471751036.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/600_471751036.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/thumb_471751036.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29332380,"urlname":"rladies-salvador","name":"R-Ladies - Salvador","status":"grace","who":"R-Ladies","members":230,"join_mode":"open","group_photo":{"id":473155144,"highres_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/highres_473155144.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/600_473155144.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/thumb_473155144.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33409736,"urlname":"rladies-aguascalientes","name":"R-Ladies - Aguascalientes","status":"grace","who":"R-Ladies","members":313,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859955075,"created":1609608737000,"updated":1609608737000,"member":{"id":9222629,"name":"Amélie - G.","photo":{"id":290857016,"highres_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/highres_290857016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/member_290857016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/thumb_290857016.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22066895,"urlname":"rladies-budapest","name":"R-Ladies - Budapest","status":"grace","who":"Members","members":862,"join_mode":"open","group_photo":{"id":457814146,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/highres_457814146.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/600_457814146.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/thumb_457814146.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22202405,"urlname":"rladies-adelaide","name":"R-Ladies - Adelaide","status":"grace","who":"Members","members":310,"join_mode":"open","group_photo":{"id":460145107,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/highres_460145107.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/600_460145107.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/thumb_460145107.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25492745,"urlname":"rladies-brussels","name":"R-Ladies - Brussels","status":"grace","who":"Members","members":231,"join_mode":"open","group_photo":{"id":463737873,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/highres_463737873.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/600_463737873.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/thumb_463737873.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653718,"urlname":"rladies-copenhagen","name":"R-Ladies - Copenhagen","status":"grace","who":"R-Ladies","members":451,"join_mode":"open","group_photo":{"id":478307928,"highres_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/highres_478307928.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/600_478307928.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/thumb_478307928.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26765765,"urlname":"rladies-lausanne","name":"R-Ladies - Lausanne","status":"grace","who":"R-Ladies","members":317,"join_mode":"open","group_photo":{"id":466577828,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/highres_466577828.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/600_466577828.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/thumb_466577828.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29734242,"urlname":"rladies-helsinki","name":"R-Ladies - Helsinki","status":"grace","who":"R-Ladies","members":381,"join_mode":"open","group_photo":{"id":474392073,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/highres_474392073.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/600_474392073.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/thumb_474392073.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29783351,"urlname":"rladies-lancaster","name":"R-Ladies - Lancaster","status":"grace","who":"R-Ladies","members":129,"join_mode":"open","group_photo":{"id":474536781,"highres_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/highres_474536781.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/600_474536781.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/thumb_474536781.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375344,"urlname":"rladies-perth","name":"R-Ladies - Perth","status":"grace","who":"R-Ladies","members":250,"join_mode":"open","group_photo":{"id":475694425,"highres_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/highres_475694425.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/600_475694425.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/thumb_475694425.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31174585,"urlname":"rladies-kyiv","name":"R-Ladies - Kyiv","status":"grace","who":"R-Ladies","members":300,"join_mode":"open","group_photo":{"id":478697566,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/highres_478697566.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/600_478697566.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/thumb_478697566.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264590,"urlname":"rladies-newcastle","name":"R-Ladies - Newcastle","status":"grace","who":"R-Ladies","members":260,"join_mode":"open","group_photo":{"id":479041411,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/3/highres_479041411.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/3/600_479041411.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/3/thumb_479041411.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264653,"urlname":"rladies-bilbao","name":"R-Ladies - Bilbao","status":"grace","who":"R-Ladies","members":188,"join_mode":"open"},{"id":31807417,"urlname":"rladies-christchurch","name":"R-Ladies - Christchurch","status":"grace","who":"R-Ladies","members":89,"join_mode":"open","group_photo":{"id":480992659,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/highres_480992659.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/600_480992659.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/thumb_480992659.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32612004,"urlname":"rladies-lagos","name":"R-Ladies - Lagos","status":"grace","who":"R-Ladies","members":290,"join_mode":"open","group_photo":{"id":484042436,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/highres_484042436.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/600_484042436.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/thumb_484042436.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702177,"urlname":"rladies-lviv","name":"R-Ladies - L''viv","status":"grace","who":"R-Ladies","members":34,"join_mode":"open","group_photo":{"id":484462327,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/highres_484462327.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/600_484462327.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/thumb_484462327.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32783356,"urlname":"rladies-podgorica","name":"R-Ladies - Podgorica","status":"grace","who":"R-Ladies","members":25,"join_mode":"open","group_photo":{"id":485004751,"highres_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/highres_485004751.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/600_485004751.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/thumb_485004751.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33061717,"urlname":"rladies-new-orleans","name":"R-Ladies - New Orleans","status":"grace","who":"R-Ladies","members":37,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33880125,"urlname":"rladies-glasgow","name":"R-Ladies - Glasgow","status":"grace","who":"R-Ladies","members":41,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859949797,"created":1609604725000,"updated":1609604725000,"member":{"id":9342634,"name":"Pavitra - C.","photo":{"id":298860696,"highres_link":"https://secure.meetupstatic.com/photos/member/2/b/8/highres_298860696.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/2/b/8/member_298860696.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/2/b/8/thumb_298860696.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20493986,"urlname":"rladies-nashville","name":"R-Ladies - Nashville","status":"grace","who":"Members","members":508,"join_mode":"open","group_photo":{"id":469393648,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/highres_469393648.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/600_469393648.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/thumb_469393648.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24292488,"urlname":"rladies-orlando","name":"R-Ladies - Orlando","status":"grace","who":"Members","members":326,"join_mode":"open","group_photo":{"id":477647316,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/highres_477647316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/600_477647316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/thumb_477647316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32327430,"urlname":"rladies-jakarta","name":"R-Ladies - Jakarta","status":"grace","who":"R-Ladies","members":546,"join_mode":"open","group_photo":{"id":482869276,"highres_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/highres_482869276.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/600_482869276.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/thumb_482869276.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041359,"urlname":"rladies-mumbai","name":"R-Ladies - Mumbai","status":"grace","who":"R-Ladies","members":77,"join_mode":"open"},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717527,"urlname":"rladies-cordoba","name":"R-Ladies - Cordoba","status":"grace","who":"R-Ladies","members":32,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33725126,"urlname":"rladies-ushuaia","name":"R-Ladies - Ushuaia","status":"grace","who":"R-Ladies","members":29,"join_mode":"approval"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859950409,"created":1609605207000,"updated":1609605207000,"member":{"id":299575248,"name":"Sofía - C.","photo":{"id":295980958,"highres_link":"https://secure.meetupstatic.com/photos/member/3/b/e/highres_295980958.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/b/e/member_295980958.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/b/e/thumb_295980958.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21280054,"urlname":"rladies-ames","name":"R-Ladies - Ames","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":456624551,"highres_link":"https://secure.meetupstatic.com/photos/event/5/f/e/7/highres_456624551.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/f/e/7/600_456624551.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/f/e/7/thumb_456624551.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24820200,"urlname":"rladies-cdmx","name":"R-Ladies - CDMX","status":"grace","who":"Miembrxs","members":1793,"join_mode":"open","group_photo":{"id":462521862,"highres_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/highres_462521862.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/600_462521862.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/thumb_462521862.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29865126,"urlname":"rladies-iowa-city","name":"R-Ladies - Iowa City","status":"grace","who":"R-Ladies","members":109,"join_mode":"open","group_photo":{"id":474712039,"highres_link":"https://secure.meetupstatic.com/photos/event/c/b/4/7/highres_474712039.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/b/4/7/600_474712039.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/b/4/7/thumb_474712039.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31858594,"urlname":"rladies-highland-park","name":"R-Ladies - Highland Park","status":"grace","who":"R-Ladies","members":70,"join_mode":"open","group_photo":{"id":481175022,"highres_link":"https://secure.meetupstatic.com/photos/event/8/8/c/e/highres_481175022.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/8/c/e/600_481175022.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/8/c/e/thumb_481175022.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32012873,"urlname":"rladies-novi-sad","name":"R-Ladies - Novi Sad","status":"grace","who":"R-Ladies","members":138,"join_mode":"open","group_photo":{"id":481606218,"highres_link":"https://secure.meetupstatic.com/photos/event/b/4/8/a/highres_481606218.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/4/8/a/600_481606218.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/4/8/a/thumb_481606218.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32426344,"urlname":"rladies-puebla","name":"R-Ladies - Puebla","status":"grace","who":"R-Ladies","members":210,"join_mode":"open","group_photo":{"id":492134764,"highres_link":"https://secure.meetupstatic.com/photos/event/3/9/a/c/highres_492134764.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/9/a/c/600_492134764.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/9/a/c/thumb_492134764.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32478325,"urlname":"rladies-fayetteville","name":"R-Ladies - Fayetteville","status":"grace","who":"R-Ladies","members":118,"join_mode":"open","group_photo":{"id":483467349,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/highres_483467349.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/600_483467349.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/thumb_483467349.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32823667,"urlname":"rladies-medellin","name":"R-Ladies - Medellín","status":"grace","who":"R-Ladies","members":439,"join_mode":"open"},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34142165,"urlname":"rladies-tijuana","name":"R-Ladies - Tijuana","status":"grace","who":"R-Ladies","members":47,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1860119347,"created":1609764313000,"updated":1609764313000,"member":{"id":292263395,"name":"Eva_R","photo":{"id":301514461,"highres_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/highres_301514461.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/member_301514461.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/thumb_301514461.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26203679,"urlname":"rladies-san-jose","name":"R-Ladies - San Jose","status":"grace","who":"Participantes","members":618,"join_mode":"open","group_photo":{"id":465216756,"highres_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/highres_465216756.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/600_465216756.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/thumb_465216756.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27456719,"urlname":"rladies-sao-paulo","name":"R-Ladies - São Paulo","status":"grace","who":"Members","members":1148,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717562,"urlname":"rladies-talca","name":"R-Ladies - Talca","status":"grace","who":"R-Ladies","members":123,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1613689200000,"local_date":"2021-02-18","local_time":"18:00","updated":1609801340000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":74,"is_online_event":true,"group":{"created":1507729015000,"name":"R-Ladies - Philly","id":26229746,"join_mode":"open","lat":40.119998931884766,"lon":-75.01000213623047,"urlname":"rladies-philly","who":"R-Ladies","localized_location":"Philadelphia, - PA","state":"PA","country":"us","region":"en_US","timezone":"US/Eastern"},"link":"https://www.meetup.com/rladies-philly/events/275334017/"},"event_image":{"id":494067738,"highres_link":"https://secure.meetupstatic.com/photos/event/6/c/5/a/highres_494067738.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/c/5/a/600_494067738.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/c/5/a/thumb_494067738.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":26229746,"name":"R-Ladies - Philly","description":"

Mission: R-Ladies is a worldwide organization whose - mission is to promote gender diversity in the R community

\n
\n

R-Ladies - Philly is a group for people in Philadelphia interested in the R programming - language to get together and learn about R! As a diversity initiative, the - mission of R-Ladies is to achieve proportionate representation by encouraging, - inspiring, and empowering people of genders currently underrepresented in - the R community. R-Ladies\u2019 primary focus, therefore, is on supporting - minority gender R enthusiasts to achieve their programming potential, by building - a collaborative global network of R leaders, mentors, learners, and developers - to facilitate individual and collective progress worldwide.

\n
\n

How - can you get involved? Join our meetup, but then also join our slack workspace - at: rladies-philly.slack.com, follow us on twitter @RLadiesPhilly, and check - out our website at rladiesphilly.org.

\n
\n

Contact us at philly@rladies.org - if you want to learn more about supporting our group.

\n
","lat":40.119998931884766,"lon":-75.01000213623047,"city":"Philadelphia","state":"PA","country":"USA","urlname":"rladies-philly","member_count":1368,"average_age":35.07979965209961,"founded_date":1507729015000,"pro_join_date":1540769140366,"last_event":1610578800000,"next_event":1613689200000,"past_events":55,"upcoming_events":1,"past_rsvps":2691,"rsvps_per_event":48.92727279663086,"repeat_rsvpers":478,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":10494,"name":"Data Management","urlkey":"datamanagement","lang":"en_US"},{"id":18062,"name":"Big - Data","urlkey":"big-data","lang":"en_US"},{"id":30928,"name":"Data Analytics","urlkey":"data-analytics","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":38458,"name":"Predictive - Analytics","urlkey":"predictive-analytics","lang":"en_US"},{"id":55324,"name":"Data - Mining","urlkey":"data-mining","lang":"en_US"},{"id":87186,"name":"R Language","urlkey":"r-language","lang":"en_US"},{"id":98380,"name":"R - Project for Statistical Computing","urlkey":"r-project-for-statistical-computing","lang":"en_US"},{"id":102811,"name":"Data - Science","urlkey":"data-science","lang":"en_US"},{"id":115768,"name":"Programming - in R","urlkey":"programming-in-r","lang":"en_US"},{"id":243491,"name":"Biostatistics","urlkey":"biostatistics","lang":"en_US"},{"id":383411,"name":"Big - Data Analytics","urlkey":"big-data-analytics","lang":"en_US"},{"id":1511155,"name":"Women - R Programmers","urlkey":"women-r-programmers","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.0963687151670456,"gender_female":0.6452513933181763,"gender_male":0.25,"gender_other":0.008379888720810413,"organizers":[{"name":"Jessie - Pluto","member_id":10861170,"permission":"coorganizer"},{"name":"Karla","member_id":28073702,"permission":"coorganizer"},{"name":"Amy - Goodwin Davies","member_id":91184072,"permission":"coorganizer"},{"name":"Chun - Su","member_id":110914202,"permission":"coorganizer"},{"name":"Alice W","member_id":155170142,"permission":"coorganizer"},{"name":"Darina","member_id":191828072,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1611333744000,"duration":7200000,"id":"275910059","name":"[ONLINE]- - Introduction to Network analysis in R","rsvp_limit":100,"rsvp_sample":[{"id":1862109725,"created":1611518206000,"updated":1611518206000,"member":{"id":9342634,"name":"Pavitra - C.","photo":{"id":6872895,"highres_link":"https://secure.meetupstatic.com/photos/member/8/0/7/f/highres_6872895.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/8/0/7/f/member_6872895.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/8/0/7/f/thumb_6872895.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20493986,"urlname":"rladies-nashville","name":"R-Ladies - Nashville","status":"grace","who":"Members","members":508,"join_mode":"open","group_photo":{"id":469393648,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/highres_469393648.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/600_469393648.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/thumb_469393648.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24292488,"urlname":"rladies-orlando","name":"R-Ladies - Orlando","status":"grace","who":"Members","members":326,"join_mode":"open","group_photo":{"id":477647316,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/highres_477647316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/600_477647316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/thumb_477647316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32327430,"urlname":"rladies-jakarta","name":"R-Ladies - Jakarta","status":"grace","who":"R-Ladies","members":546,"join_mode":"open","group_photo":{"id":482869276,"highres_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/highres_482869276.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/600_482869276.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/thumb_482869276.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041359,"urlname":"rladies-mumbai","name":"R-Ladies - Mumbai","status":"grace","who":"R-Ladies","members":77,"join_mode":"open"},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717527,"urlname":"rladies-cordoba","name":"R-Ladies - Cordoba","status":"grace","who":"R-Ladies","members":32,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33725126,"urlname":"rladies-ushuaia","name":"R-Ladies - Ushuaia","status":"grace","who":"R-Ladies","members":29,"join_mode":"approval"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1862607487,"created":1611942524000,"updated":1611942524000,"member":{"id":252927873,"name":"Rocio","photo":{"id":276600315,"highres_link":"https://secure.meetupstatic.com/photos/member/1/3/b/highres_276600315.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/1/3/b/member_276600315.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/1/3/b/thumb_276600315.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18529799,"urlname":"rladies-tc","name":"R-Ladies - Twin Cities","status":"grace","who":"Rmateys","members":399,"join_mode":"approval","group_photo":{"id":465677381,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/highres_465677381.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/600_465677381.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/thumb_465677381.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24820200,"urlname":"rladies-cdmx","name":"R-Ladies - CDMX","status":"grace","who":"Miembrxs","members":1793,"join_mode":"open","group_photo":{"id":462521862,"highres_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/highres_462521862.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/600_462521862.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/thumb_462521862.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28706674,"urlname":"rladies-niteroi","name":"R-Ladies - Niterói","status":"grace","who":"R-Ladies","members":747,"join_mode":"open","group_photo":{"id":471751036,"highres_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/highres_471751036.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/600_471751036.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/thumb_471751036.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33717562,"urlname":"rladies-talca","name":"R-Ladies - Talca","status":"grace","who":"R-Ladies","members":123,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":34516330,"urlname":"rladies-jujuy","name":"R-Ladies - Jujuy","status":"grace","who":"R-Ladies","members":120,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1862119004,"created":1611524985000,"updated":1611524985000,"member":{"id":80673732,"name":"Shamsuddeen - Hassan M.","photo":{"id":263204245,"highres_link":"https://secure.meetupstatic.com/photos/member/a/c/d/5/highres_263204245.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/a/c/d/5/member_263204245.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/a/c/d/5/thumb_263204245.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32612004,"urlname":"rladies-lagos","name":"R-Ladies - Lagos","status":"grace","who":"R-Ladies","members":290,"join_mode":"open","group_photo":{"id":484042436,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/highres_484042436.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/600_484042436.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/thumb_484042436.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1862162513,"created":1611569053000,"updated":1611569053000,"member":{"id":247302742,"name":"Martine","photo":{"id":291530667,"highres_link":"https://secure.meetupstatic.com/photos/member/c/5/e/b/highres_291530667.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/c/5/e/b/member_291530667.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/c/5/e/b/thumb_291530667.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1862620495,"created":1611952268000,"updated":1611952268000,"member":{"id":269107641,"name":"Seo-young - Silvia K.","photo":{"id":282930124,"highres_link":"https://secure.meetupstatic.com/photos/member/7/5/a/c/highres_282930124.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/5/a/c/member_282930124.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/5/a/c/thumb_282930124.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28280039,"urlname":"rladies-pasadena","name":"R-Ladies - Pasadena","status":"grace","who":"Members","members":95,"join_mode":"open","group_photo":{"id":470511288,"highres_link":"https://secure.meetupstatic.com/photos/event/c/8/5/8/highres_470511288.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/8/5/8/600_470511288.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/8/5/8/thumb_470511288.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1612978200000,"local_date":"2021-02-10","local_time":"18:30","updated":1611560272000,"utc_offset":3600000,"waitlist_count":0,"yes_rsvp_count":73,"is_online_event":true,"group":{"created":1518232937000,"name":"R-Ladies - Amsterdam","id":27443387,"join_mode":"open","lat":52.369998931884766,"lon":4.889999866485596,"urlname":"rladies-amsterdam","who":"R-Ladies","localized_location":"Amsterdam, - Netherlands","state":"","country":"nl","region":"en_US","timezone":"Europe/Amsterdam"},"link":"https://www.meetup.com/rladies-amsterdam/events/275910059/"},"event_image":{"id":494478386,"highres_link":"https://secure.meetupstatic.com/photos/event/4/7/d/2/highres_494478386.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/7/d/2/600_494478386.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/7/d/2/thumb_494478386.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":27443387,"name":"R-Ladies - Amsterdam","description":"

A local chapter of R-Ladies Global, R-Ladies - Amsterdam exists to promote diversity in the R community worldwide. We are - pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities - our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. As a founding principle, there is no - cost or charge to participate in any of our R-Ladies communities around the - world.

\n

R-Ladies Amsterdam welcomes members of all R proficiency levels, - whether you''re a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our non-profit, civil society - community is designed to develop our members'' R skills & knowledge through - social, collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing to - the global R community! 

\n


\n

@RLadiesGlobal | info [at] - rladies.org (email) | rladies.org (website) | github.com/rladies

\n

PS - Community Policies & Code of Conduct: the leadership, mentoring & teaching - roles within this Community are held exclusively by minority genders (majority - gender speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team''s discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we, therefore, reserve the right to guard this interest through - whatever measures the leadership team deem appropriate. Anyone involved with - R-Ladies Amsterdam is expected to fully respect each other, the mandate of - this community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team. Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\n

PPS - Photos, Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Amsterdam event you grant the community organizers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community\u2019s aims. This might include (but - is not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

","lat":52.369998931884766,"lon":4.889999866485596,"city":"Amsterdam","country":"Netherlands","urlname":"rladies-amsterdam","member_count":918,"average_age":32.679500579833984,"founded_date":1518232937000,"pro_join_date":1522343661978,"last_event":1608228000000,"next_event":1612978200000,"past_events":26,"upcoming_events":1,"past_rsvps":1334,"rsvps_per_event":51.30769348144531,"repeat_rsvpers":265,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":18062,"name":"Big Data","urlkey":"big-data","lang":"en_US"},{"id":29971,"name":"Machine - Learning","urlkey":"machine-learning","lang":"en_US"},{"id":30928,"name":"Data - Analytics","urlkey":"data-analytics","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":102811,"name":"Data - Science","urlkey":"data-science","lang":"en_US"},{"id":1512213,"name":"Data - Science using R","urlkey":"data-science-using-r","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.05620155110955238,"gender_female":0.815891444683075,"gender_male":0.12209302186965942,"gender_other":0.0058139534667134285,"organizers":[{"name":"Margaux","member_id":96935202,"permission":"coorganizer"},{"name":"Janine - Khuc","member_id":217504537,"permission":"coorganizer"},{"name":"Melissa Gurcan","member_id":241812692,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"},{"name":"Sarah S","member_id":251749035,"permission":"coorganizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1608049984000,"duration":7200000,"id":"275193790","name":"{Part - 2: Tidy data} From Zero to (s)Hero: Multi-part intro to R","rsvp_sample":[{"id":1859009159,"created":1608380713000,"updated":1608380713000,"member":{"id":235598538,"name":"Hédia - T.","photo":{"id":299059042,"highres_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/highres_299059042.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/member_299059042.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/thumb_299059042.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28062692,"urlname":"rladies-guayaquil","name":"R-Ladies - Guayaquil","status":"grace","who":"Members","members":544,"join_mode":"open"},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28706674,"urlname":"rladies-niteroi","name":"R-Ladies - Niterói","status":"grace","who":"R-Ladies","members":747,"join_mode":"open","group_photo":{"id":471751036,"highres_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/highres_471751036.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/600_471751036.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/thumb_471751036.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29332380,"urlname":"rladies-salvador","name":"R-Ladies - Salvador","status":"grace","who":"R-Ladies","members":230,"join_mode":"open","group_photo":{"id":473155144,"highres_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/highres_473155144.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/600_473155144.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/thumb_473155144.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33409736,"urlname":"rladies-aguascalientes","name":"R-Ladies - Aguascalientes","status":"grace","who":"R-Ladies","members":313,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859013577,"created":1608387425000,"updated":1608387425000,"member":{"id":9342634,"name":"Pavitra - C.","photo":{"id":298860696,"highres_link":"https://secure.meetupstatic.com/photos/member/2/b/8/highres_298860696.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/2/b/8/member_298860696.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/2/b/8/thumb_298860696.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20493986,"urlname":"rladies-nashville","name":"R-Ladies - Nashville","status":"grace","who":"Members","members":508,"join_mode":"open","group_photo":{"id":469393648,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/highres_469393648.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/600_469393648.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/thumb_469393648.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24292488,"urlname":"rladies-orlando","name":"R-Ladies - Orlando","status":"grace","who":"Members","members":326,"join_mode":"open","group_photo":{"id":477647316,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/highres_477647316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/600_477647316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/thumb_477647316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32327430,"urlname":"rladies-jakarta","name":"R-Ladies - Jakarta","status":"grace","who":"R-Ladies","members":546,"join_mode":"open","group_photo":{"id":482869276,"highres_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/highres_482869276.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/600_482869276.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/thumb_482869276.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041359,"urlname":"rladies-mumbai","name":"R-Ladies - Mumbai","status":"grace","who":"R-Ladies","members":77,"join_mode":"open"},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717527,"urlname":"rladies-cordoba","name":"R-Ladies - Cordoba","status":"grace","who":"R-Ladies","members":32,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33725126,"urlname":"rladies-ushuaia","name":"R-Ladies - Ushuaia","status":"grace","who":"R-Ladies","members":29,"join_mode":"approval"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1859088464,"created":1608487860000,"updated":1608487860000,"member":{"id":274379696,"name":"Mouna - B.","photo":{"id":285059599,"highres_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/highres_285059599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/member_285059599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/thumb_285059599.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31338096,"urlname":"Thames-Valley-Artificial-Intelligence-Meetup","name":"Thames - Valley Artificial Intelligence Meetup","status":"grace","who":"Members","members":832,"join_mode":"open","group_photo":{"id":480927776,"highres_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/highres_480927776.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/600_480927776.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/thumb_480927776.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1860119315,"created":1609764288000,"updated":1609764288000,"member":{"id":292263395,"name":"Eva_R","photo":{"id":301514461,"highres_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/highres_301514461.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/member_301514461.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/thumb_301514461.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26203679,"urlname":"rladies-san-jose","name":"R-Ladies - San Jose","status":"grace","who":"Participantes","members":618,"join_mode":"open","group_photo":{"id":465216756,"highres_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/highres_465216756.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/600_465216756.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/thumb_465216756.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27456719,"urlname":"rladies-sao-paulo","name":"R-Ladies - São Paulo","status":"grace","who":"Members","members":1148,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717562,"urlname":"rladies-talca","name":"R-Ladies - Talca","status":"grace","who":"R-Ladies","members":123,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1861735601,"created":1611177148000,"updated":1611177148000,"member":{"id":311367752,"name":"Gökhan - K.","photo":{"id":302641726,"highres_link":"https://secure.meetupstatic.com/photos/member/6/b/e/highres_302641726.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/6/b/e/member_302641726.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/6/b/e/thumb_302641726.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20394109,"urlname":"rladies-istanbul","name":"R-Ladies - Istanbul","status":"grace","who":"R-Ladies","members":1909,"join_mode":"open"},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22066895,"urlname":"rladies-budapest","name":"R-Ladies - Budapest","status":"grace","who":"Members","members":862,"join_mode":"open","group_photo":{"id":457814146,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/highres_457814146.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/600_457814146.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/thumb_457814146.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32299165,"urlname":"rladies-ankara","name":"R-Ladies - Ankara","status":"grace","who":"R-Ladies","members":545,"join_mode":"open","group_photo":{"id":482758254,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/highres_482758254.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/600_482758254.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/thumb_482758254.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33007398,"urlname":"rladies-eskisehir","name":"R-Ladies - Eskisehir","status":"grace","who":"R-Ladies Eskişehir","members":115,"join_mode":"approval"}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1613581200000,"local_date":"2021-02-17","local_time":"18:00","updated":1611673739000,"utc_offset":3600000,"waitlist_count":0,"yes_rsvp_count":69,"is_online_event":true,"group":{"created":1548261185000,"name":"R-Ladies - Freiburg","id":30994180,"join_mode":"open","lat":47.9900016784668,"lon":7.849999904632568,"urlname":"rladies-freiburg","who":"R-Ladies","localized_location":"Freiburg, - Germany","state":"","country":"de","region":"en_US","timezone":"Europe/Berlin"},"link":"https://www.meetup.com/rladies-freiburg/events/275193790/"},"event_image":{"id":493966163,"highres_link":"https://secure.meetupstatic.com/photos/event/b/4/5/3/highres_493966163.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/4/5/3/600_493966163.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/4/5/3/thumb_493966163.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":30994180,"name":"R-Ladies - Freiburg","description":"

R-Ladies Freiburg welcomes members of all R proficiency - levels, whether you''re a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our community - is designed to develop our members'' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!
A local chapter of R-Ladies Global, R-Ladies - Freiburg exists to promote gender diversity in the R community worldwide. - We are pro-actively inclusive of queer, trans, and all minority identities, - with additional sensitivity to intersectional identities. Our priority is - to provide a safe community space for anyone identifying as a minority gender - who is interested in and/or working with R. As a founding principle, there - is no cost or charge to participate in any of our R-Ladies communities around - the world. 

\n


We are part of Global R-Ladies group. You can - access our presentations, R scripts, and Projects on our Github account and - follow us on twitter to stay up to date about R-Ladies news!

\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: https://github.com/rladies -

\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team''s discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Freiburg is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Freiburg event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community\u2019s aims. This might include (but is not - limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

","lat":47.9900016784668,"lon":7.849999904632568,"city":"Freiburg","country":"Germany","urlname":"rladies-freiburg","member_count":417,"average_age":31.867599487304688,"founded_date":1548261185000,"pro_join_date":1548262707463,"last_event":1611162000000,"next_event":1612371600000,"past_events":32,"upcoming_events":8,"past_rsvps":639,"rsvps_per_event":19.96875,"repeat_rsvpers":152,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":24553,"name":"Natural - Language Processing","urlkey":"natural-language-processing","lang":"en_US"},{"id":29971,"name":"Machine - Learning","urlkey":"machine-learning","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":38458,"name":"Predictive - Analytics","urlkey":"predictive-analytics","lang":"en_US"},{"id":55324,"name":"Data - Mining","urlkey":"data-mining","lang":"en_US"},{"id":102811,"name":"Data Science","urlkey":"data-science","lang":"en_US"},{"id":1335552,"name":"R - Programming Language","urlkey":"r-programming-language","lang":"en_US"},{"id":1456952,"name":"Deep - Learning","urlkey":"deep-learning","lang":"en_US"},{"id":1512213,"name":"Data - Science using R","urlkey":"data-science-using-r","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.125827819108963,"gender_female":0.6556291580200195,"gender_male":0.20529800653457642,"gender_other":0.013245033100247383,"organizers":[{"name":"Elisa - Schneider","member_id":247890553,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"},{"name":"Divya Seernani","member_id":267617953,"permission":"coorganizer"},{"name":"Kyla - McConnell","member_id":297236335,"permission":"coorganizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1610790160000,"duration":7200000,"id":"275784778","name":"Getting - the most out of text - Using supervised & unsupervised approaches in NLP","rsvp_sample":[{"id":1861304683,"created":1610791361000,"updated":1610791361000,"member":{"id":9222629,"name":"Amélie - G.","photo":{"id":290857016,"highres_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/highres_290857016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/member_290857016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/thumb_290857016.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22066895,"urlname":"rladies-budapest","name":"R-Ladies - Budapest","status":"grace","who":"Members","members":862,"join_mode":"open","group_photo":{"id":457814146,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/highres_457814146.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/600_457814146.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/thumb_457814146.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22202405,"urlname":"rladies-adelaide","name":"R-Ladies - Adelaide","status":"grace","who":"Members","members":310,"join_mode":"open","group_photo":{"id":460145107,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/highres_460145107.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/600_460145107.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/thumb_460145107.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25492745,"urlname":"rladies-brussels","name":"R-Ladies - Brussels","status":"grace","who":"Members","members":231,"join_mode":"open","group_photo":{"id":463737873,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/highres_463737873.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/600_463737873.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/thumb_463737873.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653718,"urlname":"rladies-copenhagen","name":"R-Ladies - Copenhagen","status":"grace","who":"R-Ladies","members":451,"join_mode":"open","group_photo":{"id":478307928,"highres_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/highres_478307928.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/600_478307928.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/thumb_478307928.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26765765,"urlname":"rladies-lausanne","name":"R-Ladies - Lausanne","status":"grace","who":"R-Ladies","members":317,"join_mode":"open","group_photo":{"id":466577828,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/highres_466577828.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/600_466577828.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/thumb_466577828.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29734242,"urlname":"rladies-helsinki","name":"R-Ladies - Helsinki","status":"grace","who":"R-Ladies","members":381,"join_mode":"open","group_photo":{"id":474392073,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/highres_474392073.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/600_474392073.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/thumb_474392073.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29783351,"urlname":"rladies-lancaster","name":"R-Ladies - Lancaster","status":"grace","who":"R-Ladies","members":129,"join_mode":"open","group_photo":{"id":474536781,"highres_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/highres_474536781.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/600_474536781.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/thumb_474536781.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375344,"urlname":"rladies-perth","name":"R-Ladies - Perth","status":"grace","who":"R-Ladies","members":250,"join_mode":"open","group_photo":{"id":475694425,"highres_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/highres_475694425.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/600_475694425.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/thumb_475694425.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31174585,"urlname":"rladies-kyiv","name":"R-Ladies - Kyiv","status":"grace","who":"R-Ladies","members":300,"join_mode":"open","group_photo":{"id":478697566,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/highres_478697566.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/600_478697566.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/thumb_478697566.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264590,"urlname":"rladies-newcastle","name":"R-Ladies - Newcastle","status":"grace","who":"R-Ladies","members":260,"join_mode":"open","group_photo":{"id":479041411,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/3/highres_479041411.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/3/600_479041411.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/3/thumb_479041411.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264653,"urlname":"rladies-bilbao","name":"R-Ladies - Bilbao","status":"grace","who":"R-Ladies","members":188,"join_mode":"open"},{"id":31807417,"urlname":"rladies-christchurch","name":"R-Ladies - Christchurch","status":"grace","who":"R-Ladies","members":89,"join_mode":"open","group_photo":{"id":480992659,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/highres_480992659.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/600_480992659.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/thumb_480992659.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32612004,"urlname":"rladies-lagos","name":"R-Ladies - Lagos","status":"grace","who":"R-Ladies","members":290,"join_mode":"open","group_photo":{"id":484042436,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/highres_484042436.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/600_484042436.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/thumb_484042436.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702177,"urlname":"rladies-lviv","name":"R-Ladies - L''viv","status":"grace","who":"R-Ladies","members":34,"join_mode":"open","group_photo":{"id":484462327,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/highres_484462327.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/600_484462327.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/thumb_484462327.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32783356,"urlname":"rladies-podgorica","name":"R-Ladies - Podgorica","status":"grace","who":"R-Ladies","members":25,"join_mode":"open","group_photo":{"id":485004751,"highres_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/highres_485004751.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/600_485004751.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/thumb_485004751.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33061717,"urlname":"rladies-new-orleans","name":"R-Ladies - New Orleans","status":"grace","who":"R-Ladies","members":37,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33880125,"urlname":"rladies-glasgow","name":"R-Ladies - Glasgow","status":"grace","who":"R-Ladies","members":41,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1861322614,"created":1610812598000,"updated":1610812598000,"member":{"id":9342634,"name":"Pavitra - C.","photo":{"id":298860696,"highres_link":"https://secure.meetupstatic.com/photos/member/2/b/8/highres_298860696.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/2/b/8/member_298860696.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/2/b/8/thumb_298860696.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20493986,"urlname":"rladies-nashville","name":"R-Ladies - Nashville","status":"grace","who":"Members","members":508,"join_mode":"open","group_photo":{"id":469393648,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/highres_469393648.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/600_469393648.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/5/0/thumb_469393648.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24292488,"urlname":"rladies-orlando","name":"R-Ladies - Orlando","status":"grace","who":"Members","members":326,"join_mode":"open","group_photo":{"id":477647316,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/highres_477647316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/600_477647316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/d/4/thumb_477647316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26598934,"urlname":"rladies-tucson-az","name":"R-Ladies - Tucson AZ","status":"grace","who":"Members","members":355,"join_mode":"open","group_photo":{"id":466167558,"highres_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/highres_466167558.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/600_466167558.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/b/a/6/thumb_466167558.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29096058,"urlname":"rladies-gainesville","name":"R-Ladies - Gainesville","status":"grace","who":"R-Ladies","members":347,"join_mode":"open","group_photo":{"id":472600995,"highres_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/highres_472600995.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/600_472600995.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/0/2/3/thumb_472600995.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32327430,"urlname":"rladies-jakarta","name":"R-Ladies - Jakarta","status":"grace","who":"R-Ladies","members":546,"join_mode":"open","group_photo":{"id":482869276,"highres_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/highres_482869276.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/600_482869276.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/0/7/c/thumb_482869276.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32611075,"urlname":"rladies-lexington-park","name":"R-Ladies - Lexington Park","status":"grace","who":"R-Ladies","members":35,"join_mode":"open","group_photo":{"id":484038859,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/highres_484038859.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/600_484038859.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/a/b/thumb_484038859.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702266,"urlname":"rladies-athens-ga","name":"R-Ladies - Athens","status":"grace","who":"R-Ladies","members":43,"join_mode":"open","group_photo":{"id":484462690,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/highres_484462690.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/600_484462690.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/a/2/thumb_484462690.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041359,"urlname":"rladies-mumbai","name":"R-Ladies - Mumbai","status":"grace","who":"R-Ladies","members":77,"join_mode":"open"},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717527,"urlname":"rladies-cordoba","name":"R-Ladies - Cordoba","status":"grace","who":"R-Ladies","members":32,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33725126,"urlname":"rladies-ushuaia","name":"R-Ladies - Ushuaia","status":"grace","who":"R-Ladies","members":29,"join_mode":"approval"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33917673,"urlname":"rladies-waltham","name":"R-Ladies - Waltham","status":"grace","who":"R-Ladies","members":25,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1861303833,"created":1610790161000,"updated":1610790161000,"member":{"id":310047102,"name":"R-Ladies - T.","photo":{"id":299088985,"highres_link":"https://secure.meetupstatic.com/photos/member/b/f/5/9/highres_299088985.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/b/f/5/9/member_299088985.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/b/f/5/9/thumb_299088985.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"role":"coorganizer","self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22180445,"urlname":"rladies-austin","name":"R-Ladies - Austin","status":"grace","who":"R-Ladies","members":628,"join_mode":"open"},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264536,"urlname":"rladies-frankfurt","name":"R-Ladies - Frankfurt","status":"grace","who":"R-Ladies","members":99,"join_mode":"approval","group_photo":{"id":479041273,"highres_link":"https://secure.meetupstatic.com/photos/event/4/f/9/highres_479041273.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/f/9/600_479041273.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/f/9/thumb_479041273.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32299165,"urlname":"rladies-ankara","name":"R-Ladies - Ankara","status":"grace","who":"R-Ladies","members":545,"join_mode":"open","group_photo":{"id":482758254,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/highres_482758254.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/600_482758254.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/8/e/thumb_482758254.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194933,"urlname":"rladies-oxford","name":"R-Ladies - Oxford","status":"grace","who":"R-Ladies","members":30,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"}]},"friends":false},"event_context":{"host":true}}},{"id":1861303969,"created":1610790428000,"updated":1610790428000,"member":{"id":274379696,"name":"Mouna - B.","photo":{"id":285059599,"highres_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/highres_285059599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/member_285059599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/e/8/c/f/thumb_285059599.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"role":"coorganizer","self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31338096,"urlname":"Thames-Valley-Artificial-Intelligence-Meetup","name":"Thames - Valley Artificial Intelligence Meetup","status":"grace","who":"Members","members":832,"join_mode":"open","group_photo":{"id":480927776,"highres_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/highres_480927776.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/600_480927776.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/c/8/0/thumb_480927776.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1862507019,"created":1611853247000,"updated":1611853247000,"member":{"id":282394625,"name":"Sandy - R. M.","photo":{"id":299167512,"highres_link":"https://secure.meetupstatic.com/photos/member/1/d/5/8/highres_299167512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/1/d/5/8/member_299167512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/1/d/5/8/thumb_299167512.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18529799,"urlname":"rladies-tc","name":"R-Ladies - Twin Cities","status":"grace","who":"Rmateys","members":399,"join_mode":"approval","group_photo":{"id":465677381,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/highres_465677381.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/600_465677381.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/e/5/thumb_465677381.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22180445,"urlname":"rladies-austin","name":"R-Ladies - Austin","status":"grace","who":"R-Ladies","members":628,"join_mode":"open"},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24820200,"urlname":"rladies-cdmx","name":"R-Ladies - CDMX","status":"grace","who":"Miembrxs","members":1793,"join_mode":"open","group_photo":{"id":462521862,"highres_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/highres_462521862.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/600_462521862.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/3/8/6/thumb_462521862.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27797804,"urlname":"rladies-tampa","name":"R-Ladies - Tampa","status":"grace","who":"R-Ladies","members":314,"join_mode":"open","group_photo":{"id":469162009,"highres_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/highres_469162009.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/600_469162009.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/5/f/9/thumb_469162009.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32478325,"urlname":"rladies-fayetteville","name":"R-Ladies - Fayetteville","status":"grace","who":"R-Ladies","members":118,"join_mode":"open","group_photo":{"id":483467349,"highres_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/highres_483467349.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/600_483467349.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/8/f/5/thumb_483467349.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1612022400000,"local_date":"2021-01-30","local_time":"17:00","rsvp_close_offset":"PT2H","updated":1610820177000,"utc_offset":3600000,"waitlist_count":0,"yes_rsvp_count":69,"is_online_event":true,"group":{"created":1589502641000,"name":"R-Ladies - Tunis","id":33719616,"join_mode":"open","lat":36.84000015258789,"lon":10.220000267028809,"urlname":"rladies-tunis","who":"R-Ladies","localized_location":"Tunis, - Tunisia","state":"","country":"tn","region":"en_US","timezone":"Africa/Tunis"},"link":"https://www.meetup.com/rladies-tunis/events/275784778/"},"event_image":{"id":494346482,"highres_link":"https://secure.meetupstatic.com/photos/event/1/9/5/2/highres_494346482.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/9/5/2/600_494346482.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/9/5/2/thumb_494346482.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":33719616,"name":"R-Ladies - Tunis","description":"

This is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that promotes - gender diversity in the R community worldwide. We meetup in person or virtually - to learn about the R programming language, algorithms and advanced tools. -

\n

R-Ladies welcomes members of all R proficiency levels, whether you''re - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members'' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!

\n

We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in working with R. As a founding principle, there is no cost or - charge to participate in any of our R-Ladies communities around the world. - You can access our presentations, R scripts, and Projects on our Github account - (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community\u2019s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

","lat":36.84000015258789,"lon":10.220000267028809,"city":"Tunis","country":"Tunisia","urlname":"rladies-tunis","member_count":555,"average_age":32.76250076293945,"founded_date":1589502641000,"pro_join_date":1589502822588,"last_event":1611333000000,"next_event":1612022400000,"past_events":20,"upcoming_events":2,"past_rsvps":768,"rsvps_per_event":38.400001525878906,"repeat_rsvpers":165,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":659,"name":"Web Design","urlkey":"webdesign","lang":"en_US"},{"id":3833,"name":"Software - Development","urlkey":"softwaredev","lang":"en_US"},{"id":9696,"name":"New - Technology","urlkey":"newtech","lang":"en_US"},{"id":10102,"name":"Internet - Professionals","urlkey":"internetpro","lang":"en_US"},{"id":10209,"name":"Web - Technology","urlkey":"web","lang":"en_US"},{"id":10579,"name":"Technology","urlkey":"technology","lang":"en_US"},{"id":15582,"name":"Web - Development","urlkey":"web-development","lang":"en_US"},{"id":48471,"name":"Computer - programming","urlkey":"computer-programming","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.056179776787757874,"gender_female":0.47191011905670166,"gender_male":0.4606741666793823,"gender_other":0.01123595517128706,"organizers":[{"name":"Haifa - Ben Messaoud","member_id":216250232,"permission":"coorganizer"},{"name":"Hédia - Tnani","member_id":235598538,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"},{"name":"Mouna Belaid","member_id":274379696,"permission":"coorganizer"},{"name":"R-Ladies - Tunis","member_id":310047102,"permission":"coorganizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1610996223000,"duration":5400000,"id":"275828535","name":"Taller: - reporta con RMarkdown","rsvp_limit":50,"rsvp_sample":[{"id":1861580712,"created":1611046155000,"updated":1611046155000,"member":{"id":235598538,"name":"Hédia - T.","photo":{"id":299059042,"highres_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/highres_299059042.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/member_299059042.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/4/a/6/2/thumb_299059042.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26004745,"urlname":"rladies-charlottesville","name":"R-Ladies - Charlottesville","status":"grace","who":"Members","members":414,"join_mode":"open","group_photo":{"id":472609582,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/highres_472609582.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/600_472609582.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/a/e/thumb_472609582.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26537030,"urlname":"rladies-seattle","name":"R-Ladies - Seattle","status":"grace","who":"R-Ladies","members":825,"join_mode":"open","group_photo":{"id":466005353,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/highres_466005353.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/600_466005353.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/2/9/thumb_466005353.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27819387,"urlname":"rladies-irvine","name":"R-Ladies - Irvine","status":"grace","who":"R-Ladies","members":462,"join_mode":"open","group_photo":{"id":469232437,"highres_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/highres_469232437.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/600_469232437.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/e/b/5/thumb_469232437.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28062692,"urlname":"rladies-guayaquil","name":"R-Ladies - Guayaquil","status":"grace","who":"Members","members":544,"join_mode":"open"},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28706674,"urlname":"rladies-niteroi","name":"R-Ladies - Niterói","status":"grace","who":"R-Ladies","members":747,"join_mode":"open","group_photo":{"id":471751036,"highres_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/highres_471751036.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/600_471751036.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/9/3/c/thumb_471751036.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29332380,"urlname":"rladies-salvador","name":"R-Ladies - Salvador","status":"grace","who":"R-Ladies","members":230,"join_mode":"open","group_photo":{"id":473155144,"highres_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/highres_473155144.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/600_473155144.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/7/6/8/thumb_473155144.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33107363,"urlname":"rladies-mid-mo","name":"R-Ladies - Mid-Mo","status":"grace","who":"R-Ladies","members":93,"join_mode":"open","group_photo":{"id":487437903,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/highres_487437903.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/600_487437903.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/2/f/thumb_487437903.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194871,"urlname":"rladies-galapagos-islands","name":"R-Ladies - Galapagos Islands","status":"grace","who":"R-Ladies","members":237,"join_mode":"open","group_photo":{"id":489378592,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/highres_489378592.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/600_489378592.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/a/0/thumb_489378592.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33194964,"urlname":"rladies-monterrey","name":"R-Ladies - Monterrey","status":"grace","who":"R-Ladies","members":310,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33409736,"urlname":"rladies-aguascalientes","name":"R-Ladies - Aguascalientes","status":"grace","who":"R-Ladies","members":313,"join_mode":"open"},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":34086060,"urlname":"rladies-bangalore","name":"R-Ladies - Bangalore","status":"grace","who":"R-Ladies","members":109,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34516206,"urlname":"rladies-dammam","name":"R-Ladies - Saudi Arabia (Dammam)","status":"grace","who":"R-Ladies","members":102,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1861582767,"created":1611048842000,"updated":1611048842000,"member":{"id":9222629,"name":"Amélie - G.","photo":{"id":290857016,"highres_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/highres_290857016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/member_290857016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/9/0/9/8/thumb_290857016.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":5190472,"urlname":"rladies-san-francisco","name":"R-Ladies - San Francisco","status":"grace","who":"R-Ladies","members":1642,"join_mode":"open","group_photo":{"id":468911645,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/highres_468911645.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/600_468911645.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/7/d/thumb_468911645.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":18427958,"urlname":"Oslo-useR-Group","name":"Oslo - useR! Group","status":"grace","who":"R-tisans","members":1364,"join_mode":"open","group_photo":{"id":481807062,"highres_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/highres_481807062.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/600_481807062.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/b/9/6/thumb_481807062.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":19474893,"urlname":"rladies-london","name":"R-Ladies - London","status":"grace","who":"R-Ladies","members":1551,"join_mode":"approval","group_photo":{"id":456634391,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/highres_456634391.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/600_456634391.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/5/7/thumb_456634391.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20317472,"urlname":"rladies-rtp","name":"R-Ladies - RTP","status":"grace","who":"Members","members":805,"join_mode":"open","group_photo":{"id":464516342,"highres_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/highres_464516342.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/600_464516342.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/c/1/6/thumb_464516342.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20378903,"urlname":"rladies-melbourne","name":"R-Ladies - Melbourne","status":"grace","who":"Members","members":1740,"join_mode":"open","group_photo":{"id":461413639,"highres_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/highres_461413639.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/600_461413639.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/5/4/7/thumb_461413639.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20382018,"urlname":"rladies-la","name":"R-Ladies - Los Angeles","status":"grace","who":"R Ladies","members":620,"join_mode":"open","group_photo":{"id":468911684,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/highres_468911684.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/600_468911684.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/a/4/thumb_468911684.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20443056,"urlname":"rladies-paris","name":"R-Ladies - Paris","status":"grace","who":"Members","members":584,"join_mode":"open","group_photo":{"id":457265016,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/highres_457265016.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/600_457265016.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/9/8/thumb_457265016.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20851840,"urlname":"rladies-barcelona","name":"R-Ladies - Barcelona","status":"grace","who":"R-Ladies","members":595,"join_mode":"open","group_photo":{"id":456616405,"highres_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/highres_456616405.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/600_456616405.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/0/1/5/thumb_456616405.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20977178,"urlname":"rladies-berlin","name":"R-Ladies - Berlin","status":"grace","who":"R-Ladies","members":646,"join_mode":"open","group_photo":{"id":459410599,"highres_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/highres_459410599.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/600_459410599.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/5/a/7/thumb_459410599.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21313292,"urlname":"rladies-tbilisi","name":"R-Ladies - Tbilisi","status":"grace","who":"Member","members":292,"join_mode":"open","group_photo":{"id":456617728,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/highres_456617728.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/600_456617728.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/0/thumb_456617728.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21314716,"urlname":"rladies-manchester","name":"R-Ladies - Manchester","status":"grace","who":"Members","members":479,"join_mode":"open","group_photo":{"id":458408537,"highres_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/highres_458408537.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/600_458408537.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/1/5/9/thumb_458408537.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21510971,"urlname":"rladies-dc","name":"R-Ladies - Washington D.C.","status":"grace","who":"R-Ladies","members":2078,"join_mode":"open","group_photo":{"id":456689963,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/highres_456689963.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/600_456689963.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/0/b/thumb_456689963.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21965959,"urlname":"rladies-ldnont","name":"R-Ladies - London, Ontario","status":"grace","who":"R-Ladies","members":463,"join_mode":"open","group_photo":{"id":458602600,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/highres_458602600.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/600_458602600.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/4/8/thumb_458602600.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22066895,"urlname":"rladies-budapest","name":"R-Ladies - Budapest","status":"grace","who":"Members","members":862,"join_mode":"open","group_photo":{"id":457814146,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/highres_457814146.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/600_457814146.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/4/2/thumb_457814146.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22202405,"urlname":"rladies-adelaide","name":"R-Ladies - Adelaide","status":"grace","who":"Members","members":310,"join_mode":"open","group_photo":{"id":460145107,"highres_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/highres_460145107.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/600_460145107.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/3/f/3/thumb_460145107.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":22790744,"urlname":"rladies-cape-town","name":"R-Ladies - Cape Town","status":"grace","who":"Members","members":717,"join_mode":"open","group_photo":{"id":462164139,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/highres_462164139.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/600_462164139.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/6/b/thumb_462164139.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24259185,"urlname":"rladies-miami","name":"R-Ladies - Miami","status":"grace","who":"Members","members":1106,"join_mode":"open","group_photo":{"id":462190983,"highres_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/highres_462190983.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/600_462190983.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/a/e/7/thumb_462190983.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24506595,"urlname":"rladies-san-diego","name":"R-Ladies - San Diego","status":"grace","who":"San Diegan R-Ladies","members":610,"join_mode":"open","group_photo":{"id":461992901,"highres_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/highres_461992901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/600_461992901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/e/a/5/thumb_461992901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25492745,"urlname":"rladies-brussels","name":"R-Ladies - Brussels","status":"grace","who":"Members","members":231,"join_mode":"open","group_photo":{"id":463737873,"highres_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/highres_463737873.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/600_463737873.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/2/1/1/thumb_463737873.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25925303,"urlname":"rladies-montreal","name":"R-Ladies - Montreal","status":"grace","who":"Members","members":522,"join_mode":"open"},{"id":25935651,"urlname":"rladies-belgrade","name":"R-Ladies - Belgrade","status":"grace","who":"Members","members":457,"join_mode":"open","group_photo":{"id":464575316,"highres_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/highres_464575316.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/600_464575316.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/8/1/4/thumb_464575316.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26068732,"urlname":"rladies-strasbourg","name":"R-Ladies - Strasbourg","status":"grace","who":"Members","members":74,"join_mode":"approval","group_photo":{"id":464882911,"highres_link":"https://secure.meetupstatic.com/photos/event/b/5/f/highres_464882911.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/5/f/600_464882911.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/5/f/thumb_464882911.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26169684,"urlname":"rladies-vancouver","name":"R-Ladies - Vancouver","status":"grace","who":"Members","members":521,"join_mode":"open"},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26556368,"urlname":"rladies-cambridge","name":"R-Ladies - Cambridge","status":"grace","who":"R-Ladies Cambridge","members":284,"join_mode":"open","group_photo":{"id":468566668,"highres_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/highres_468566668.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/600_468566668.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/8/2/c/thumb_468566668.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653718,"urlname":"rladies-copenhagen","name":"R-Ladies - Copenhagen","status":"grace","who":"R-Ladies","members":451,"join_mode":"open","group_photo":{"id":478307928,"highres_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/highres_478307928.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/600_478307928.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/b/3/8/thumb_478307928.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26653882,"urlname":"rladies-auckland","name":"R-Ladies - Auckland","status":"grace","who":"Members","members":727,"join_mode":"open","group_photo":{"id":466318901,"highres_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/highres_466318901.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/600_466318901.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/6/1/5/thumb_466318901.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26765765,"urlname":"rladies-lausanne","name":"R-Ladies - Lausanne","status":"grace","who":"R-Ladies","members":317,"join_mode":"open","group_photo":{"id":466577828,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/highres_466577828.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/600_466577828.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/a/4/thumb_466577828.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28436046,"urlname":"rladies-sydney","name":"R-Ladies - Sydney","status":"grace","who":"R-Ladies","members":801,"join_mode":"approval","group_photo":{"id":470960173,"highres_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/highres_470960173.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/600_470960173.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/e/c/d/thumb_470960173.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28448818,"urlname":"rladies-brisbane","name":"R-Ladies - Brisbane","status":"grace","who":"R-Ladies","members":478,"join_mode":"open","group_photo":{"id":470990699,"highres_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/highres_470990699.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/600_470990699.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/6/0/b/thumb_470990699.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29540437,"urlname":"rladies-stockholm","name":"R-Ladies - Stockholm","status":"grace","who":"R-Ladies","members":379,"join_mode":"open","group_photo":{"id":473797555,"highres_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/highres_473797555.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/600_473797555.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/2/b/3/thumb_473797555.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29734242,"urlname":"rladies-helsinki","name":"R-Ladies - Helsinki","status":"grace","who":"R-Ladies","members":381,"join_mode":"open","group_photo":{"id":474392073,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/highres_474392073.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/600_474392073.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/4/9/thumb_474392073.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29783351,"urlname":"rladies-lancaster","name":"R-Ladies - Lancaster","status":"grace","who":"R-Ladies","members":129,"join_mode":"open","group_photo":{"id":474536781,"highres_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/highres_474536781.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/600_474536781.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/d/c/d/thumb_474536781.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29862217,"urlname":"rladies-toronto","name":"R-Ladies - Toronto","status":"grace","who":"R-Ladies","members":619,"join_mode":"open","group_photo":{"id":474705312,"highres_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/highres_474705312.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/600_474705312.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/1/0/0/thumb_474705312.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30339934,"urlname":"rladies-montpellier","name":"R-Ladies - Montpellier","status":"grace","who":"R-Ladies","members":133,"join_mode":"approval","group_photo":{"id":475530096,"highres_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/highres_475530096.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/600_475530096.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/5/9/0/thumb_475530096.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375344,"urlname":"rladies-perth","name":"R-Ladies - Perth","status":"grace","who":"R-Ladies","members":250,"join_mode":"open","group_photo":{"id":475694425,"highres_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/highres_475694425.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/600_475694425.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/8/5/9/thumb_475694425.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30421186,"urlname":"rladies-lyon","name":"R-Ladies - Lyon","status":"grace","who":"R-Ladies","members":78,"join_mode":"open","group_photo":{"id":475922158,"highres_link":"https://secure.meetupstatic.com/photos/event/8/6/e/highres_475922158.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/6/e/600_475922158.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/6/e/thumb_475922158.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30655714,"urlname":"rladies-ottawa","name":"R-Ladies - Ottawa","status":"grace","who":"R-Ladies","members":226,"join_mode":"open","group_photo":{"id":476869591,"highres_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/highres_476869591.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/600_476869591.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/1/b/7/thumb_476869591.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30680825,"urlname":"rladies-canberra","name":"R-Ladies - Canberra","status":"grace","who":"R-Ladies","members":207,"join_mode":"approval","group_photo":{"id":476988583,"highres_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/highres_476988583.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/600_476988583.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/d/c/7/thumb_476988583.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31174585,"urlname":"rladies-kyiv","name":"R-Ladies - Kyiv","status":"grace","who":"R-Ladies","members":300,"join_mode":"open","group_photo":{"id":478697566,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/highres_478697566.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/600_478697566.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/9/e/thumb_478697566.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264590,"urlname":"rladies-newcastle","name":"R-Ladies - Newcastle","status":"grace","who":"R-Ladies","members":260,"join_mode":"open","group_photo":{"id":479041411,"highres_link":"https://secure.meetupstatic.com/photos/event/5/8/3/highres_479041411.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/8/3/600_479041411.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/8/3/thumb_479041411.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31264653,"urlname":"rladies-bilbao","name":"R-Ladies - Bilbao","status":"grace","who":"R-Ladies","members":188,"join_mode":"open"},{"id":31807417,"urlname":"rladies-christchurch","name":"R-Ladies - Christchurch","status":"grace","who":"R-Ladies","members":89,"join_mode":"open","group_photo":{"id":480992659,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/highres_480992659.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/600_480992659.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/3/thumb_480992659.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32144791,"urlname":"rladies-utrecht","name":"R-Ladies - Utrecht","status":"grace","who":"R-Ladies","members":175,"join_mode":"open","group_photo":{"id":482139076,"highres_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/highres_482139076.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/600_482139076.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/8/a/4/thumb_482139076.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32612004,"urlname":"rladies-lagos","name":"R-Ladies - Lagos","status":"grace","who":"R-Ladies","members":290,"join_mode":"open","group_photo":{"id":484042436,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/highres_484042436.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/600_484042436.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/a/4/thumb_484042436.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32702177,"urlname":"rladies-lviv","name":"R-Ladies - L''viv","status":"grace","who":"R-Ladies","members":34,"join_mode":"open","group_photo":{"id":484462327,"highres_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/highres_484462327.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/600_484462327.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/7/3/7/thumb_484462327.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32783356,"urlname":"rladies-podgorica","name":"R-Ladies - Podgorica","status":"grace","who":"R-Ladies","members":25,"join_mode":"open","group_photo":{"id":485004751,"highres_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/highres_485004751.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/600_485004751.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/0/a/f/thumb_485004751.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33061717,"urlname":"rladies-new-orleans","name":"R-Ladies - New Orleans","status":"grace","who":"R-Ladies","members":37,"join_mode":"open"},{"id":33291403,"urlname":"rladies-abuja","name":"R-Ladies - Abuja","status":"grace","who":"R-Ladies","members":176,"join_mode":"open","group_photo":{"id":489088061,"highres_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/highres_489088061.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/600_489088061.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/6/d/9/d/thumb_489088061.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33683539,"urlname":"rladies-algiers","name":"R-Ladies - Algiers","status":"grace","who":"R-Ladies","members":133,"join_mode":"open"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33827845,"urlname":"rladies-nairobi","name":"R-Ladies - Nairobi","status":"grace","who":"R-Ladies","members":431,"join_mode":"open"},{"id":33880125,"urlname":"rladies-glasgow","name":"R-Ladies - Glasgow","status":"grace","who":"R-Ladies","members":41,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1861590282,"created":1611057501000,"updated":1611062560000,"member":{"id":292263395,"name":"Eva_R","photo":{"id":301514461,"highres_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/highres_301514461.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/member_301514461.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/8/7/d/thumb_301514461.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20346526,"urlname":"rladies-newyork","name":"R-Ladies - New York","status":"grace","who":"Rladies","members":1983,"join_mode":"open","group_photo":{"id":457397168,"highres_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/highres_457397168.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/600_457397168.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/3/1/0/thumb_457397168.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20600376,"urlname":"rladies-columbus","name":"R-Ladies - Columbus","status":"grace","who":"Members","members":894,"join_mode":"open","group_photo":{"id":456757046,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/highres_456757046.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/600_456757046.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/b/6/thumb_456757046.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":23174619,"urlname":"rladies-santa-rosa","name":"R-Ladies - Santa Rosa","status":"grace","who":"R-Ladies","members":136,"join_mode":"approval","group_photo":{"id":459979618,"highres_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/highres_459979618.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/600_459979618.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/c/a/2/thumb_459979618.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24222373,"urlname":"rladies-montevideo","name":"R-Ladies - Montevideo","status":"grace","who":"R-Ladies","members":377,"join_mode":"approval","group_photo":{"id":461538494,"highres_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/highres_461538494.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/600_461538494.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/8/3/e/thumb_461538494.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":24848073,"urlname":"rladies-chicago","name":"R-Ladies - Chicago","status":"grace","who":"R-Ladies","members":1258,"join_mode":"open","group_photo":{"id":462768143,"highres_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/highres_462768143.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/600_462768143.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/c/0/f/thumb_462768143.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25681976,"urlname":"rladies-st-louis","name":"R-Ladies - St. Louis","status":"grace","who":"R-Ladies of St. Louis","members":731,"join_mode":"open"},{"id":26203679,"urlname":"rladies-san-jose","name":"R-Ladies - San Jose","status":"grace","who":"Participantes","members":618,"join_mode":"open","group_photo":{"id":465216756,"highres_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/highres_465216756.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/600_465216756.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/f/9/4/thumb_465216756.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27269070,"urlname":"rladies-lima","name":"R-Ladies - Lima","status":"grace","who":"R-Ladies","members":1441,"join_mode":"open"},{"id":27283931,"urlname":"rladies-santa-barbara","name":"R-Ladies - Santa Barbara","status":"grace","who":"R-Ladies","members":440,"join_mode":"open","group_photo":{"id":467924711,"highres_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/highres_467924711.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/600_467924711.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/e/a/7/thumb_467924711.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27456719,"urlname":"rladies-sao-paulo","name":"R-Ladies - São Paulo","status":"grace","who":"Members","members":1148,"join_mode":"open"},{"id":27651345,"urlname":"rladies-mendoza","name":"R-Ladies - Mendoza","status":"grace","who":"R-Ladies","members":290,"join_mode":"approval","group_photo":{"id":468798021,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/highres_468798021.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/600_468798021.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/6/5/thumb_468798021.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27651457,"urlname":"rladies-oslo","name":"R-Ladies - Oslo","status":"grace","who":"R-Ladies","members":535,"join_mode":"open"},{"id":27651490,"urlname":"rladies-johannesburg","name":"R-Ladies - Johannesburg","status":"grace","who":"R-Ladies","members":757,"join_mode":"open","group_photo":{"id":468798870,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/highres_468798870.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/600_468798870.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/b/6/thumb_468798870.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28424845,"urlname":"rladies-santa-fe","name":"R-Ladies - Santa Fe","status":"grace","who":"R-Ladies","members":214,"join_mode":"approval","group_photo":{"id":474465863,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/highres_474465863.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/600_474465863.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/2/7/thumb_474465863.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28441250,"urlname":"rladies-bariloche","name":"R-Ladies - Bariloche","status":"grace","who":"R-Ladies","members":279,"join_mode":"open","group_photo":{"id":470972081,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/highres_470972081.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/600_470972081.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/5/1/thumb_470972081.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28530966,"urlname":"rladies-valparaiso","name":"R-Ladies - Valparaíso","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":471212185,"highres_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/highres_471212185.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/600_471212185.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/d/b/9/thumb_471212185.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31457077,"urlname":"rladies-den-bosch","name":"R-Ladies - Den Bosch","status":"grace","who":"R-Ladies","members":110,"join_mode":"open","group_photo":{"id":479940504,"highres_link":"https://secure.meetupstatic.com/photos/event/1/f/8/highres_479940504.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/1/f/8/600_479940504.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/1/f/8/thumb_479940504.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31514006,"urlname":"rladies-queretaro","name":"R-Ladies - Queretaro","status":"grace","who":"R-Ladies","members":524,"join_mode":"open","group_photo":{"id":479940191,"highres_link":"https://secure.meetupstatic.com/photos/event/b/f/highres_479940191.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/f/600_479940191.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/f/thumb_479940191.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31653468,"urlname":"rladies-concepcion","name":"R-Ladies - Concepción","status":"grace","who":"R-Ladies Concepción","members":501,"join_mode":"open","group_photo":{"id":480490251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/highres_480490251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/600_480490251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/0/b/thumb_480490251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31829495,"urlname":"rladies-goiania","name":"R-Ladies - Goiânia","status":"grace","who":"R-Ladies","members":342,"join_mode":"open","group_photo":{"id":481092693,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/highres_481092693.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/600_481092693.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/9/5/thumb_481092693.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32522592,"urlname":"rladies-riverside","name":"R-Ladies - Riverside","status":"grace","who":"R-Ladies","members":352,"join_mode":"open"},{"id":32604355,"urlname":"rladies-cuernavaca","name":"R-Ladies - Cuernavaca","status":"grace","who":"R-Ladies","members":477,"join_mode":"open","group_photo":{"id":484014899,"highres_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/highres_484014899.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/600_484014899.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/6/7/3/thumb_484014899.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33554403,"urlname":"rladies-general-pico","name":"R-Ladies - General Pico","status":"grace","who":"R-Ladies","members":62,"join_mode":"open"},{"id":33717562,"urlname":"rladies-talca","name":"R-Ladies - Talca","status":"grace","who":"R-Ladies","members":123,"join_mode":"approval"},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":33801315,"urlname":"rladies-natal","name":"R-Ladies - Natal","status":"grace","who":"R-Ladies","members":348,"join_mode":"open"},{"id":34099620,"urlname":"rladies-guadalajara","name":"R-Ladies - Guadalajara","status":"grace","who":"R-Ladies","members":267,"join_mode":"open","group_photo":{"id":492137737,"highres_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/highres_492137737.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/600_492137737.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/5/4/9/thumb_492137737.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1861586489,"created":1611053594000,"updated":1611053594000,"member":{"id":318661292,"name":"Laura - P.","photo":{"id":301942010,"highres_link":"https://secure.meetupstatic.com/photos/member/5/5/f/a/highres_301942010.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/5/5/f/a/member_301942010.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/5/5/f/a/thumb_301942010.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21760043,"urlname":"rladies-buenos-aires","name":"R-Ladies - Buenos Aires","status":"grace","who":"R Ladies","members":1266,"join_mode":"approval","group_photo":{"id":457292665,"highres_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/highres_457292665.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/600_457292665.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/f/9/9/thumb_457292665.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26229746,"urlname":"rladies-philly","name":"R-Ladies - Philly","status":"grace","who":"R-Ladies","members":1368,"join_mode":"open","group_photo":{"id":465344154,"highres_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/highres_465344154.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/600_465344154.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/a/c/7/a/thumb_465344154.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":26829576,"urlname":"rladies-east-lansing","name":"R-Ladies - East Lansing","status":"grace","who":"R-Ladies","members":510,"join_mode":"open","group_photo":{"id":472210416,"highres_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/highres_472210416.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/600_472210416.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/8/b/0/thumb_472210416.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27651413,"urlname":"rladies-baltimore","name":"R-Ladies - Baltimore","status":"grace","who":"R-Ladies","members":685,"join_mode":"open"},{"id":27724373,"urlname":"rladies-dallas","name":"R-Ladies - Dallas","status":"grace","who":"R-Ladies","members":540,"join_mode":"open","group_photo":{"id":468973852,"highres_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/highres_468973852.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/600_468973852.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/6/1/c/thumb_468973852.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":29397372,"urlname":"rladies-xalapa","name":"R-Ladies - Xalapa","status":"grace","who":"R-Ladies","members":402,"join_mode":"approval","group_photo":{"id":473357986,"highres_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/highres_473357986.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/600_473357986.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/6/4/2/thumb_473357986.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30994180,"urlname":"rladies-freiburg","name":"R-Ladies - Freiburg","status":"grace","who":"R-Ladies","members":417,"join_mode":"open","group_photo":{"id":478065919,"highres_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/highres_478065919.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/600_478065919.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/3/5/f/thumb_478065919.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":32946570,"urlname":"rladies-bergen","name":"R-Ladies - Bergen","status":"grace","who":"R-Ladies","members":249,"join_mode":"approval","group_photo":{"id":486192779,"highres_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/highres_486192779.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/600_486192779.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/1/e/b/thumb_486192779.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33041322,"urlname":"rladies-goteborg","name":"R-Ladies - Göteborg","status":"grace","who":"R-Ladies","members":156,"join_mode":"open"},{"id":33106550,"urlname":"rladies-colombo","name":"R-Ladies - Colombo","status":"grace","who":"R-Ladies","members":142,"join_mode":"open","group_photo":{"id":487521652,"highres_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/highres_487521652.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/600_487521652.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/5/4/9/4/thumb_487521652.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33409671,"urlname":"rladies-coventry","name":"R-Ladies - Coventry","status":"grace","who":"R-Ladies","members":145,"join_mode":"open"},{"id":33504173,"urlname":"rladies-ribeirao-preto","name":"R-Ladies - Ribeirão Preto","status":"grace","who":"R-Ladies Ribeirão Preto","members":112,"join_mode":"open","group_photo":{"id":493312310,"highres_link":"https://secure.meetupstatic.com/photos/event/c/c/5/6/highres_493312310.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/c/5/6/600_493312310.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/c/5/6/thumb_493312310.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"},{"id":34516330,"urlname":"rladies-jujuy","name":"R-Ladies - Jujuy","status":"grace","who":"R-Ladies","members":120,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}},{"id":1861590250,"created":1611057456000,"updated":1611057456000,"member":{"id":236417549,"name":"Illak - Z.","photo":{"id":283346406,"highres_link":"https://secure.meetupstatic.com/photos/member/6/7/2/6/highres_283346406.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/6/7/2/6/member_283346406.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/6/7/2/6/thumb_283346406.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":20381623,"urlname":"rladies-madrid","name":"R-Ladies - Madrid","status":"grace","who":"R-Ladies","members":1627,"join_mode":"open","group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":20433637,"urlname":"rladies-boston","name":"R-Ladies - Boston","status":"grace","who":"R-ladies","members":952,"join_mode":"approval","group_photo":{"id":456618742,"highres_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/highres_456618742.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/600_456618742.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/9/3/6/thumb_456618742.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":21149852,"urlname":"rladies-dublin","name":"R-Ladies - Dublin","status":"grace","who":"Members","members":820,"join_mode":"open","group_photo":{"id":456480723,"highres_link":"https://secure.meetupstatic.com/photos/event/2/d/3/highres_456480723.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/d/3/600_456480723.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/d/3/thumb_456480723.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28753666,"urlname":"rladies-resistencia-corrientes","name":"R-Ladies - Resistencia-Corrientes","status":"grace","who":"R-Ladies","members":143,"join_mode":"approval"},{"id":29370129,"urlname":"rladies-edinburgh","name":"R-Ladies - Edinburgh","status":"grace","who":"R-Ladies","members":568,"join_mode":"open","group_photo":{"id":473251512,"highres_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/highres_473251512.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/600_473251512.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/7/b/1/8/thumb_473251512.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":30375244,"urlname":"rladies-la-paz","name":"R-Ladies - La Paz","status":"grace","who":"R-Ladies","members":287,"join_mode":"open","group_photo":{"id":475694098,"highres_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/highres_475694098.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/600_475694098.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/3/7/1/2/thumb_475694098.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":34516330,"urlname":"rladies-jujuy","name":"R-Ladies - Jujuy","status":"grace","who":"R-Ladies","members":120,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1612461600000,"local_date":"2021-02-04","local_time":"19:00","updated":1611045887000,"utc_offset":3600000,"waitlist_count":66,"yes_rsvp_count":50,"is_online_event":true,"group":{"created":1472848175000,"name":"R-Ladies - Madrid","id":20381623,"join_mode":"open","lat":40.41999816894531,"lon":-3.7100000381469727,"urlname":"rladies-madrid","who":"R-Ladies","localized_location":"Madrid, - Spain","state":"","country":"es","region":"en_US","timezone":"Europe/Madrid"},"link":"https://www.meetup.com/rladies-madrid/events/275828535/"},"event_image":{"id":494387461,"highres_link":"https://secure.meetupstatic.com/photos/event/b/9/6/5/highres_494387461.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/b/9/6/5/600_494387461.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/b/9/6/5/thumb_494387461.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":20381623,"name":"R-Ladies - Madrid","description":"

¡La primera comunidad de España de R para mujeres! - Aquí encontrarás compañeras en el mundo de la programación en R, desde profesionales - que tienen R como herramienta principal de trabajo hasta aficionadas que quieren - aprender y seguir mejorando. ¡Unete, te esperamos! 

\n

R-Ladies - Madrid es una rama local parte de R-Ladies Global, una comunidad open source - donde mujeres nos apoyamos y nos ayudamos a crecer dentro de la comunidad - de R. Además R-Ladies Global es un proyecto financiado por el R - Consortium-Linux Foundation.

\n

Si alguien está interesada - en impartir un taller o dar una charla en un evento de R-Ladies escribid a  -

\n

madrid[at]rladies[dot]org

\n

https://www.r-consortium.org/news/blogs/201...

\n

Spain''s - first R programming community for women! Building a social network of female - R practitioners and learners in Madrid to support knowledge sharing and collaborative - learning! Join us!

\n

R-Ladies Madrid is a local chapter of a global - open source community promoting female R practitioners and learners, R-Ladies - Global, which is an R Consortium-Linux Foundation supported project.

\n

-

\n

Políticas y Código de Conducta

\n

En la - comunidad R-Ladies los puestos de responsabilidad como speakers y orientadoras - son exclusivamente para mujeres, aún así la asistencia a las reuniones está - abierta a gente de todos los géneros. Siempre se dará prioridad a la participación - femenina ya que este grupo nació con la intención de animar y apoyar a mujeres - en los trabajos STEM (Science, Technology, Engineering & Math) y en la - comunidad de R por lo que las organizadoras de R-Ladies Madrid tienen la responsabilidad - y el derecho de tomar las acciones oportunas para salvaguardar los intereses - de la comunidad.

\n

Todos los miembros y asistentes tienen que - ser respetuosos tanto en la comunidad online como en los eventos, si no es - así la penalización es la expulsión del evento o de la comunidad, dependiendo - del caso. 

\n

Esta comunidad es una iniciativa social por - lo que no hay ninguna clase de recargo y todos los eventos serán gratuitos.

\n

Código - de conducta completo.

","lat":40.41999816894531,"lon":-3.7100000381469727,"city":"Madrid","country":"Spain","urlname":"rladies-madrid","member_count":1627,"average_age":35.94219970703125,"founded_date":1472848175000,"pro_join_date":1540768473214,"last_event":1605807000000,"next_event":1612461600000,"past_events":40,"upcoming_events":1,"past_rsvps":1536,"rsvps_per_event":38.400001525878906,"repeat_rsvpers":268,"topics":[{"id":563,"name":"Open - Source","urlkey":"opensource","lang":"en_US"},{"id":10296,"name":"Women in - Technology","urlkey":"witi","lang":"en_US"},{"id":15280,"name":"Statistical - Computing","urlkey":"statistical-computing","lang":"en_US"},{"id":22076,"name":"Women - Coders","urlkey":"women-coders","lang":"en_US"},{"id":29971,"name":"Machine - Learning","urlkey":"machine-learning","lang":"en_US"},{"id":30928,"name":"Data - Analytics","urlkey":"data-analytics","lang":"en_US"},{"id":37381,"name":"Data - Visualization","urlkey":"data-visualization","lang":"en_US"},{"id":45181,"name":"Women - Programmers","urlkey":"women-programmers","lang":"en_US"},{"id":90286,"name":"Social - Coding","urlkey":"social-coding","lang":"en_US"},{"id":98380,"name":"R Project - for Statistical Computing","urlkey":"r-project-for-statistical-computing","lang":"en_US"},{"id":102811,"name":"Data - Science","urlkey":"data-science","lang":"en_US"},{"id":115768,"name":"Programming - in R","urlkey":"programming-in-r","lang":"en_US"},{"id":1335552,"name":"R - Programming Language","urlkey":"r-programming-language","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.07399576902389526,"gender_female":0.669133186340332,"gender_male":0.24418604373931885,"gender_other":0.012684989720582962,"organizers":[{"name":"Inés - Huertas","member_id":130630162,"permission":"coorganizer"},{"name":"Leticia - Martín-Fuertes","member_id":185513227,"permission":"coorganizer"},{"name":"Bea - Hernández","member_id":199151887,"permission":"coorganizer"},{"name":"Elen - Irazabal","member_id":239726117,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"group_photo":{"id":456617448,"highres_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/highres_456617448.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/600_456617448.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/4/4/2/8/thumb_456617448.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}},{"event":{"created":1611092381000,"duration":7200000,"id":"275850692","name":"LinkedIn - & le sue (quasi) infinite potenzialità","rsvp_sample":[{"id":1861686496,"created":1611138548000,"updated":1611138548000,"member":{"id":247158872,"name":"Sara - I.","photo":{"id":274295239,"highres_link":"https://secure.meetupstatic.com/photos/member/8/9/a/7/highres_274295239.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/8/9/a/7/member_274295239.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/8/9/a/7/thumb_274295239.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":26792997,"urlname":"rladies-rotterdam","name":"R-Ladies - Rotterdam","status":"grace","who":"R-Ladies","members":500,"join_mode":"open","group_photo":{"id":466678345,"highres_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/highres_466678345.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/600_466678345.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/e/3/e/9/thumb_466678345.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":27443387,"urlname":"rladies-amsterdam","name":"R-Ladies - Amsterdam","status":"grace","who":"R-Ladies","members":918,"join_mode":"open"},{"id":28393787,"urlname":"rladies-nijmegen","name":"R-Ladies - Nijmegen","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":470814472,"highres_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/highres_470814472.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/600_470814472.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/4/c/8/thumb_470814472.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":31859491,"urlname":"rladies-bucharest","name":"R-Ladies - Bucharest","status":"grace","who":"R-Ladies","members":234,"join_mode":"open","group_photo":{"id":483953815,"highres_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/highres_483953815.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/600_483953815.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/d/2/3/7/thumb_483953815.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":true}}},{"id":1861686494,"created":1611138548000,"updated":1611138548000,"member":{"id":118029672,"name":"Parvane - S.","photo":{"id":259768799,"highres_link":"https://secure.meetupstatic.com/photos/member/7/0/7/f/highres_259768799.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/0/7/f/member_259768799.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/0/7/f/thumb_259768799.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"role":"coorganizer","self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":25039094,"urlname":"rladies-scl","name":"R-Ladies - Santiago","status":"grace","who":"RLadies","members":2203,"join_mode":"open","group_photo":{"id":469954748,"highres_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/highres_469954748.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/600_469954748.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/8/7/b/c/thumb_469954748.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":25039212,"urlname":"rladies-quito","name":"R-Ladies - Quito","status":"grace","who":"R-Ladies","members":809,"join_mode":"open","group_photo":{"id":463717001,"highres_link":"https://secure.meetupstatic.com/photos/event/9/0/8/9/highres_463717001.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/9/0/8/9/600_463717001.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/9/0/8/9/thumb_463717001.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":true}}},{"id":1861686493,"created":1611138548000,"updated":1611138548000,"member":{"id":187142904,"name":"Giovanna - de V.","photo":{"id":246037360,"highres_link":"https://secure.meetupstatic.com/photos/member/9/1/f/0/highres_246037360.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/9/1/f/0/member_246037360.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/9/1/f/0/thumb_246037360.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":28887085,"urlname":"rladies-remote","name":"R-Ladies - Remote","status":"grace","who":"R-Ladies","members":345,"join_mode":"open","group_photo":{"id":472189772,"highres_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/highres_472189772.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/600_472189772.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/2/6/c/thumb_472189772.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":true}}},{"id":1861700708,"created":1611152236000,"updated":1611152236000,"member":{"id":295401358,"name":"Valentina - A.","photo":{"id":294154857,"highres_link":"https://secure.meetupstatic.com/photos/member/8/8/2/9/highres_294154857.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/8/8/2/9/member_294154857.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/8/8/2/9/thumb_294154857.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}}]},"friends":false},"event_context":{"host":false}}},{"id":1861796970,"created":1611235815000,"updated":1611235815000,"member":{"id":199976230,"name":"Daniele - M.","photo":{"id":253992361,"highres_link":"https://secure.meetupstatic.com/photos/member/3/0/4/9/highres_253992361.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/3/0/4/9/member_253992361.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/3/0/4/9/thumb_253992361.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"},"self":{"blocks":false,"actions":["message"],"common":{"groups":[{"id":24752511,"urlname":"rladies-milan","name":"R-Ladies - Milan","status":"grace","who":"Members","members":965,"join_mode":"open"},{"id":28519562,"urlname":"rladies-bari","name":"R-Ladies - Bari","status":"grace","who":"R-Ladies","members":96,"join_mode":"open","group_photo":{"id":471188251,"highres_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/highres_471188251.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/600_471188251.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/2/0/3/b/thumb_471188251.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"}},{"id":33719616,"urlname":"rladies-tunis","name":"R-Ladies - Tunis","status":"grace","who":"R-Ladies","members":555,"join_mode":"open"}]},"friends":false},"event_context":{"host":false}}}],"date_in_series_pattern":false,"status":"upcoming","time":1612287000000,"local_date":"2021-02-02","local_time":"18:30","updated":1611138548000,"utc_offset":3600000,"waitlist_count":0,"yes_rsvp_count":46,"is_online_event":true,"group":{"created":1498774567000,"name":"R-Ladies - Milan","id":24752511,"join_mode":"open","lat":45.459999084472656,"lon":9.1899995803833,"urlname":"rladies-milan","who":"Members","localized_location":"Milano, - Italy","state":"MI","country":"it","region":"en_US","timezone":"Europe/Rome"},"link":"https://www.meetup.com/rladies-milan/events/275850692/"},"event_image":{"id":494403147,"highres_link":"https://secure.meetupstatic.com/photos/event/c/4/b/highres_494403147.jpeg","photo_link":"https://secure.meetupstatic.com/photos/event/c/4/b/600_494403147.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/event/c/4/b/thumb_494403147.jpeg","type":"event","base_url":"https://secure.meetupstatic.com"},"chapter":{"id":24752511,"name":"R-Ladies - Milan","description":"

R-Ladies is a worldwide organization whose mission - is to promote gender diversity in the R community. We are setting up this - community for the first time in Milan! Whether you are an experienced R programmmer - or new to R or just have a passion for data science, this will be a community - for you (No gender restrication). 

\n

To get the latest updates - about our event, please follow us on any of these channels: 

\n

\u2022 - Twitter page: https://twitter.com/RladiesMilan

\n

\u2022 - Facebook page: - https://www.facebook.com/rladiesmilan

\n

\u2022 Linkedin page: https://www.linkedin.com/company/25167785/ -

\n

\u2022 Github account: https://github.com/parvanesh/rladies-milan

\n

\u2022 - Slack group: https://join.slack.com/t/rladiesmilan/share...

\n

Come - & join us!

\n


\n

Community Policies - & Code of Conduct: The leadership and mentoring roles within this community - are held exclusively by women (trans and cis) and gender-variant people. Men - are welcome to attend as long as they come as a guest of a specific female - member who is also in attendance. However, the stated priority of this meetup - is the development and support of its female members acting in whichever roles, - and we therefore reserve the right to guard this interest through whatever - measures we deem appropriate. All members and event attendees are expected - to fully respect each other and the mandate of this Meetup, or face expulsion - of any form, whether from events, Meetup membership, or any other community - participation. This community is a social initiative, hence will never involve - charges or fees to participate.

","lat":45.459999084472656,"lon":9.1899995803833,"city":"Milano","state":"MI","country":"Italy","urlname":"rladies-milan","member_count":965,"average_age":34.8927001953125,"founded_date":1498774567000,"pro_join_date":1528206178423,"last_event":1611250200000,"next_event":1612287000000,"past_events":25,"upcoming_events":1,"past_rsvps":700,"rsvps_per_event":28.0,"repeat_rsvpers":149,"topics":[{"id":4422,"name":"Social - Networking","urlkey":"socialnetwork","lang":"en_US"},{"id":9696,"name":"New - Technology","urlkey":"newtech","lang":"en_US"},{"id":10102,"name":"Internet - Professionals","urlkey":"internetpro","lang":"en_US"},{"id":10538,"name":"Business - Intelligence","urlkey":"businessintell","lang":"en_US"},{"id":10579,"name":"Technology","urlkey":"technology","lang":"en_US"},{"id":15582,"name":"Web - Development","urlkey":"web-development","lang":"en_US"},{"id":15720,"name":"Professional - Networking","urlkey":"professional-networking","lang":"en_US"},{"id":30928,"name":"Data - Analytics","urlkey":"data-analytics","lang":"en_US"},{"id":55324,"name":"Data - Mining","urlkey":"data-mining","lang":"en_US"},{"id":1448582,"name":"Artificial - Intelligence Machine Learning Robotics","urlkey":"artificial-intelligence-machine-learning-robotics","lang":"en_US"},{"id":1513883,"name":"R-Ladies","urlkey":"r-ladies","lang":"en_US"}],"category":[{"id":34,"name":"Tech","shortname":"tech","sort_name":"Tech"}],"gender_unknown":0.11773940175771713,"gender_female":0.610675036907196,"gender_male":0.2715855538845062,"gender_other":0.0,"organizers":[{"name":"Parvane - Sh","member_id":118029672,"permission":"coorganizer"},{"name":"Erica_Yu","member_id":183481301,"permission":"coorganizer"},{"name":"R-Ladies - Global","member_id":251470805,"permission":"organizer"}],"status":"Active","organizer_photo":{"id":276031161,"highres_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/highres_276031161.jpeg","photo_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/member_276031161.jpeg","thumb_link":"https://secure.meetupstatic.com/photos/member/7/9/b/9/thumb_276031161.jpeg","type":"member","base_url":"https://secure.meetupstatic.com"}}}]' - recorded_at: 2021-01-30 14:08:57 GMT - recorded_with: vcr/0.6.0, webmockr/0.7.4 diff --git a/tests/fixtures/get_pro_groups.yml b/tests/fixtures/get_pro_groups.yml deleted file mode 100644 index 7d1c7c7c..00000000 --- a/tests/fixtures/get_pro_groups.yml +++ /dev/null @@ -1,9048 +0,0 @@ -http_interactions: -- request: - method: get - uri: https://api.meetup.com/pro/rladies/groups?offset=0 - body: - encoding: '' - string: '' - headers: - Accept: application/json, text/xml, application/xml, */* - Authorization: not my bearer token - response: - status: - status_code: 200 - category: Success - reason: OK - message: 'Success: (200) OK' - headers: - content-type: application/json - x-amzn-requestid: c0c5c826-df82-4e0a-bdb4-648518268c23 - access-control-allow-origin: '*' - content-encoding: gzip - x-amzn-remapped-content-length: '876169' - x-amzn-remapped-connection: Close - x-total-count: '191' - x-amz-apigw-id: ZB4ecFO9IAMFgoQ= - x-amzn-trace-id: Root=1-5ffd6df5-491174ff1390c8f91d12f644 - access-control-allow-credentials: 'true' - via: 1.1 c7ffc8c2f7641416c27e36a054b5f74a.cloudfront.net (CloudFront), 1.1 varnish - x-amz-cf-pop: CDG50-C1 - x-amz-cf-id: _4KIFjN8zeBqqaeAYkvglK9hEdGRxDnp3PKxoUTpHqAzR2SOpiNAaQ== - accept-ranges: bytes - date: Tue, 12 Jan 2021 09:37:58 GMT - x-served-by: cache-cdg20761-CDG - x-cache: Miss from cloudfront, MISS - x-cache-hits: '0' - x-timer: S1610444278.945220,VS0,VE1045 - content-length: '124204' - body: - encoding: UTF-8 - file: no - string: "[{\"average_age\":37.33330154418945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Kuala - Lumpur\",\"country\":\"Malaysia\",\"description\":\"

This is a local chapter - of R-Ladies Global (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1606103209000,\"gender_female\":0.625,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.375,\"id\":34524973,\"lat\":3.1600000858306885,\"lon\":101.70999908447266,\"member_count\":10,\"name\":\"R-Ladies - Kuala Lumpur\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1606103331481,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-kuala-lumpur\",\"status\":\"Active\",\"cursor\":\"[['1606103331481'],['34524973']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":230374424,\"name\":\"Anuradha - Yerukola\",\"permission\":\"coorganizer\"}]},{\"average_age\":37.5,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Jujuy\",\"country\":\"Argentina\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1605846097000,\"gender_female\":0.6666666865348816,\"gender_male\":0.190476194024086,\"gender_other\":0,\"gender_unknown\":0.1428571492433548,\"id\":34516330,\"last_event\":1608580800000,\"lat\":-24.190000534057617,\"lon\":-65.30000305175781,\"member_count\":119,\"name\":\"R-Ladies - Jujuy\",\"past_events\":1,\"past_rsvps\":100,\"pro_join_date\":1605846180984,\"repeat_rsvpers\":0,\"rsvps_per_event\":100,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":65428,\"name\":\"Free - software\",\"urlkey\":\"free-software\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"}],\"upcoming_events\":0,\"urlname\":\"rladies-jujuy\",\"status\":\"Active\",\"cursor\":\"[['1605846180984'],['34516330']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":78973362,\"name\":\"Florencia - D'Andrea\",\"permission\":\"coorganizer\"},{\"member_id\":318661292,\"name\":\"Laura - Pereyra\",\"permission\":\"coorganizer\"},{\"member_id\":321247413,\"name\":\"Ana - Boggio\",\"permission\":\"coorganizer\"}]},{\"average_age\":27.33329963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Aarhus\",\"country\":\"Denmark\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1605845010000,\"gender_female\":0.75,\"gender_male\":0.25,\"gender_other\":0,\"gender_unknown\":0,\"id\":34516308,\"lat\":56.15999984741211,\"lon\":10.199999809265137,\"member_count\":7,\"name\":\"R - Ladies Aarhus\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1605845156265,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":65428,\"name\":\"Free - software\",\"urlkey\":\"free-software\"},{\"id\":77318,\"name\":\"Minority - Professionals\",\"urlkey\":\"minority-professionals\"},{\"id\":79827,\"name\":\"Minority - Entrepreneurs\",\"urlkey\":\"minority-entrepreneurs\"},{\"id\":111155,\"name\":\"Algorithms\",\"urlkey\":\"algorithms\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"}],\"upcoming_events\":0,\"urlname\":\"rladies-aarhus\",\"status\":\"Active\",\"cursor\":\"[['1605845156265'],['34516308']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":229681591,\"name\":\"Belen\",\"permission\":\"coorganizer\"},{\"member_id\":237629230,\"name\":\"Elena - Dudukina\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.86669921875,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Dammam\",\"country\":\"Saudi - Arabia\",\"description\":\"

This is a local chapter of R-Ladies Global (https://www.rladies.org) - in Saudi Arabia (Dammam), an organisation that promotes gender diversity in - the R community worldwide. We meetup in person or virtually to learn about - the R programming language, algorithms and advanced tools.

\\n

R-Ladies - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!

\\n

We - are pro-actively inclusive of all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1605841265000,\"gender_female\":0.4399999976158142,\"gender_male\":0.4000000059604645,\"gender_other\":0,\"gender_unknown\":0.1599999964237213,\"id\":34516206,\"last_event\":1607839200000,\"lat\":26.420000076293945,\"lon\":50.09000015258789,\"member_count\":67,\"name\":\"R-Ladies - Saudi Arabia (Dammam)\",\"next_event\":1610812800000,\"past_events\":1,\"past_rsvps\":8,\"pro_join_date\":1605841489172,\"repeat_rsvpers\":8,\"rsvps_per_event\":8,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10232,\"name\":\"Women's - Social\",\"urlkey\":\"women\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":116476,\"name\":\"Sharing - Knowledge\",\"urlkey\":\"sharing-knowledge\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":1504786,\"name\":\"Sharing - Knowledge and Skills\",\"urlkey\":\"sharing-knowledge-and-skills\"}],\"upcoming_events\":1,\"urlname\":\"rladies-dammam\",\"status\":\"Active\",\"cursor\":\"[['1605841489172'],['34516206']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":288167227,\"name\":\"Batool - Almarzouq\",\"permission\":\"coorganizer\"},{\"member_id\":321245158,\"name\":\"mariam\",\"permission\":\"coorganizer\"}]},{\"average_age\":28,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":39,\"name\":\"[TRACK]Classes - & workshops\",\"shortname\":\"classes\"}],\"city\":\"Tijuana\",\"country\":\"Mexico\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1598235066000,\"gender_female\":0.6470588445663452,\"gender_male\":0.1764705926179886,\"gender_other\":0,\"gender_unknown\":0.1764705926179886,\"id\":34142165,\"last_event\":1600992000000,\"lat\":32.529998779296875,\"lon\":-117.0199966430664,\"member_count\":47,\"name\":\"R-Ladies - Tijuana\",\"past_events\":2,\"past_rsvps\":21,\"pro_join_date\":1598235446300,\"repeat_rsvpers\":2,\"rsvps_per_event\":10.5,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-tijuana\",\"status\":\"Active\",\"cursor\":\"[['1598235446300'],['34142165']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":314757875,\"name\":\"KAREN - NOHEMI MORALES GALINDO\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.694400787353516,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Guadalajara\",\"country\":\"Mexico\",\"description\":\"

R- - Ladies Guadalajara es parte de  R-Ladies Global (https://www.rladies.org), una organización que - promueve la diversidad de género en la comunidad de R en el mundo. Donde nos - reunimos de manera virtual y presencial para compartir dudas, ideas e intereses. 

\\n

La - finalidad de R-Ladies Guadalajara es crear un espacio donde las usuarias a - R o interesadas en aprender a programar, se desenvuelvan creando redes de - aprendizaje.

\\n


\\n

Encuéntranos  en twitter en @RLadiesGDL (https://twitter.com/RLadiesGDL) - o escríbenos a guadalajara@rladies.org

\\n


\\n

Nuestra - comunidad está diseñada para desarrollar las habilidades y el conocimiento - de R de nuestras miembras a través del aprendizaje y el intercambio social - y colaborativo. Apoyar el acceso de la identidad de las minorías a las habilidades - y carreras STEM, el Movimiento del Software Libre y contribuir a la comunidad - R global.

\\n

Código de conducta completo. (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct 

\",\"founded_date\":1597457444000,\"gender_female\":0.5428571701049805,\"gender_male\":0.3571428656578064,\"gender_other\":0,\"gender_unknown\":0.10000000149011612,\"id\":34099620,\"last_event\":1608163200000,\"lat\":20.670000076293945,\"lon\":-103.3499984741211,\"member_count\":263,\"name\":\"R-Ladies - Guadalajara\",\"past_events\":2,\"past_rsvps\":186,\"pro_join_date\":1597457588031,\"repeat_rsvpers\":3,\"rsvps_per_event\":93,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-guadalajara\",\"status\":\"Active\",\"cursor\":\"[['1597457588031'],['34099620']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":305970727,\"name\":\"Paola - Manzo \",\"permission\":\"coorganizer\"},{\"member_id\":312799058,\"name\":\"Claudia - Azucena Jiménez Solís \",\"permission\":\"coorganizer\"},{\"member_id\":313260827,\"name\":\"Nancy - Lizett Manzo Romero\",\"permission\":\"coorganizer\"},{\"member_id\":315871391,\"name\":\"Liz - Gutiérrez\",\"permission\":\"coorganizer\"}]},{\"average_age\":26.357099533081055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Bangalore\",\"country\":\"India\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1597207548000,\"gender_female\":0.7142857313156128,\"gender_male\":0.25,\"gender_other\":0,\"gender_unknown\":0.0357142873108387,\"id\":34086060,\"last_event\":1607751000000,\"lat\":12.970000267028809,\"lon\":77.55999755859375,\"member_count\":93,\"name\":\"R-Ladies - Bangalore\",\"next_event\":1610712000000,\"past_events\":5,\"past_rsvps\":42,\"pro_join_date\":1597207759344,\"repeat_rsvpers\":17,\"rsvps_per_event\":8.399999618530273,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":1,\"urlname\":\"rladies-bangalore\",\"status\":\"Active\",\"cursor\":\"[['1597207759344'],['34086060']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":234079314,\"name\":\"Deepthi - R\",\"permission\":\"coorganizer\"},{\"member_id\":252480932,\"name\":\"Saumya - Singh\",\"permission\":\"coorganizer\"},{\"member_id\":302900034,\"name\":\"Adithi - Upadhya\",\"permission\":\"coorganizer\"},{\"member_id\":314260350,\"name\":\"Anupama - Lakshmanan\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.33329963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Asunción\",\"country\":\"Paraguay\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1593749537000,\"gender_female\":0.6153846383094788,\"gender_male\":0.38461539149284363,\"gender_other\":0,\"gender_unknown\":0,\"id\":33917745,\"last_event\":1594497600000,\"lat\":-25.299999237060547,\"lon\":-57.630001068115234,\"member_count\":69,\"name\":\"R-Ladies - Asunción\",\"past_events\":1,\"past_rsvps\":43,\"pro_join_date\":1593749686649,\"repeat_rsvpers\":0,\"rsvps_per_event\":43,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-asuncion\",\"status\":\"Active\",\"cursor\":\"[['1593749686649'],['33917745']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":183390122,\"name\":\"Flavia - Sacco\",\"permission\":\"coorganizer\"}]},{\"average_age\":39.20000076293945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":38,\"name\":\"[TRACK]Products - & services\",\"shortname\":\"products\"}],\"city\":\"Waltham\",\"country\":\"USA\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1593747796000,\"gender_female\":0.8333333134651184,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.1666666716337204,\"id\":33917673,\"last_event\":1605308400000,\"lat\":42.400001525878906,\"lon\":-71.26000213623047,\"member_count\":25,\"name\":\"R-Ladies - Waltham\",\"past_events\":1,\"past_rsvps\":9,\"pro_join_date\":1593748699320,\"repeat_rsvpers\":0,\"rsvps_per_event\":9,\"state\":\"MA\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-waltham\",\"status\":\"Active\",\"cursor\":\"[['1593748699320'],['33917673']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":305657489,\"name\":\"Claire - P\",\"permission\":\"coorganizer\"},{\"member_id\":310433609,\"name\":\"Ines - Patop\",\"permission\":\"coorganizer\"},{\"member_id\":317954592,\"name\":\"Margarita - Corral\",\"permission\":\"coorganizer\"}]},{\"average_age\":22,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Banda - Aceh\",\"country\":\"Indonesia\",\"description\":\"

Join us now by filling - in this short form in the link below! (Daftarlah segera dengan mengisi - kuesioner singkat pada link berikut):

\\n

https://share.hsforms.com/1y-qxzIdpR0eT9d8W3cfS3A51985 

\\n

-------------

\\n

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organization that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

Mengingat bahwa ini adalah komunitas R-Ladies pertama - di Sumatra (dan di luar Jawa), serta keadaan COVID-19 yang berarti bahwa untuk - sementara kegiatan akan dilakukan secara online, kami menerima peserta dari - luar Banda Aceh.

\\n

R-Ladies welcomes members of all R proficiency - levels, whether you're a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Let's work together on supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community! As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our GitHub account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay - up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Photography - and filming statement:

\\n

Please note that by taking part in an R-Ladies - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\\n

Stay updated on latest events - by following us on Twitter @RLadiesAceh and @RLadiesGlobal and/or on - Instagram @rladiesbandaaceh.

\",\"founded_date\":1592979608000,\"gender_female\":1,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0,\"id\":33880224,\"last_event\":1606618800000,\"lat\":5.550000190734863,\"lon\":95.31999969482422,\"member_count\":36,\"name\":\"R-Ladies - Banda Aceh\",\"past_events\":2,\"past_rsvps\":24,\"pro_join_date\":1592979807640,\"repeat_rsvpers\":6,\"rsvps_per_event\":12,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-banda-aceh\",\"status\":\"Active\",\"cursor\":\"[['1592979807640'],['33880224']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":311983584,\"name\":\"Salsabila - Mahdi\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.71430015563965,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Glasgow\",\"country\":\"United - Kingdom\",\"description\":\"

This is a local chapter of R-Ladies Global - (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1592977761000,\"gender_female\":0.9285714030265808,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.0714285746216774,\"id\":33880125,\"last_event\":1600178400000,\"lat\":55.86000061035156,\"lon\":-4.239999771118164,\"member_count\":41,\"name\":\"R-Ladies - Glasgow\",\"past_events\":1,\"past_rsvps\":10,\"pro_join_date\":1592977966280,\"repeat_rsvpers\":0,\"rsvps_per_event\":10,\"state\":\"V2\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":22203,\"name\":\"Technology - Professionals\",\"urlkey\":\"technology-professionals\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":108403,\"name\":\"Technology - Startups\",\"urlkey\":\"technology-startups\"}],\"upcoming_events\":0,\"urlname\":\"rladies-glasgow\",\"status\":\"Active\",\"cursor\":\"[['1592977966280'],['33880125']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":311984487,\"name\":\"Kate - Pyper\",\"permission\":\"coorganizer\"},{\"member_id\":311997218,\"name\":\"Florence - Alison\",\"permission\":\"coorganizer\"},{\"member_id\":312033762,\"name\":\"Natalia - Dygas\",\"permission\":\"coorganizer\"},{\"member_id\":312254981,\"name\":\"Zuzana - Pinkosova\",\"permission\":\"coorganizer\"},{\"member_id\":312494704,\"name\":\"Ainsley - Miller\",\"permission\":\"coorganizer\"},{\"member_id\":314700549,\"name\":\"Samantha\",\"permission\":\"coorganizer\"}]},{\"average_age\":27.487199783325195,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Nairobi\",\"country\":\"Kenya\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1592027437000,\"gender_female\":0.6704545617103577,\"gender_male\":0.2954545319080353,\"gender_other\":0,\"gender_unknown\":0.034090910106897354,\"id\":33827845,\"last_event\":1607155200000,\"lat\":-1.2899999618530273,\"lon\":36.81999969482422,\"member_count\":419,\"name\":\"R-Ladies - Nairobi\",\"past_events\":5,\"past_rsvps\":441,\"pro_join_date\":1592027552341,\"repeat_rsvpers\":99,\"rsvps_per_event\":88.19999694824219,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-nairobi\",\"status\":\"Active\",\"cursor\":\"[['1592027552341'],['33827845']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":276919759,\"name\":\"Lucy - N. Njuki\",\"permission\":\"coorganizer\"}]},{\"average_age\":24,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Cochabamba\",\"country\":\"Bolivia\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1591979896000,\"gender_female\":0.75,\"gender_male\":0.25,\"gender_other\":0,\"gender_unknown\":0,\"id\":33825315,\"lat\":-17.3799991607666,\"lon\":-66.16999816894531,\"member_count\":11,\"name\":\"R-Ladies - Cochabamba\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1591980047244,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1466522,\"name\":\"Learn Programming\",\"urlkey\":\"learn-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cochabamba\",\"status\":\"Active\",\"cursor\":\"[['1591980047244'],['33825315']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"}]},{\"average_age\":34.36360168457031,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Curitiba\",\"country\":\"Brazil\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1591978496000,\"gender_female\":0.8333333134651184,\"gender_male\":0.0555555559694767,\"gender_other\":0,\"gender_unknown\":0.1111111119389534,\"id\":33825235,\"last_event\":1606856400000,\"lat\":-25.420000076293945,\"lon\":-49.290000915527344,\"member_count\":46,\"name\":\"R-Ladies - Curitiba\",\"past_events\":3,\"past_rsvps\":22,\"pro_join_date\":1591978645686,\"repeat_rsvpers\":6,\"rsvps_per_event\":7.333333492279053,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-curitiba\",\"status\":\"Active\",\"cursor\":\"[['1591978645686'],['33825235']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":302113073,\"name\":\"Suellen - Teixeira Zavadzki de Pau\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.52939987182617,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Fortaleza\",\"country\":\"Brazil\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1591680178000,\"gender_female\":0.8461538553237915,\"gender_male\":0.11538461595773697,\"gender_other\":0,\"gender_unknown\":0.03846153989434242,\"id\":33810889,\"last_event\":1607774400000,\"lat\":-3.7799999713897705,\"lon\":-38.59000015258789,\"member_count\":104,\"name\":\"R-Ladies - Fortaleza\",\"past_events\":2,\"past_rsvps\":56,\"pro_join_date\":1591680366225,\"repeat_rsvpers\":5,\"rsvps_per_event\":28,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-fortaleza\",\"status\":\"Active\",\"cursor\":\"[['1591680366225'],['33810889']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":306796948,\"name\":\"Taís - Maria Nunes Carvalho\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.20000076293945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Natal\",\"country\":\"Brazil\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed to - develop our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, the - Free Software Movement, and contributing to the global R community!

\\n

We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in working with R. As a founding principle, there is no cost or - charge to participate in any of our R-Ladies communities around the world. - You can access our presentations, R scripts, and Projects on our Github account - (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1591500286000,\"gender_female\":0.7916666865348816,\"gender_male\":0.1805555522441864,\"gender_other\":0,\"gender_unknown\":0.02777777798473835,\"id\":33801315,\"last_event\":1602262800000,\"lat\":-5.800000190734863,\"lon\":-35.220001220703125,\"member_count\":347,\"name\":\"R-Ladies - Natal\",\"past_events\":6,\"past_rsvps\":521,\"pro_join_date\":1591500632973,\"repeat_rsvpers\":124,\"rsvps_per_event\":86.83333587646484,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-natal\",\"status\":\"Active\",\"cursor\":\"[['1591500632973'],['33801315']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":226008228,\"name\":\"Milagros - Villavicencio\",\"permission\":\"coorganizer\"},{\"member_id\":298215165,\"name\":\"Jeanne - Franco\",\"permission\":\"coorganizer\"},{\"member_id\":311340405,\"name\":\"Tayane - Varela\",\"permission\":\"coorganizer\"},{\"member_id\":311341059,\"name\":\"Claudia - M. T.\",\"permission\":\"coorganizer\"},{\"member_id\":311380532,\"name\":\"Kelly - Yumi Inagaki\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.66669845581055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ushuaia\",\"country\":\"Argentina\",\"description\":\"

R-Ladies - es una organización mundial que promueve la diversidad de género en la comunidad - R, un lenguaje de programación libre orientado al análisis estadístico y de - ciencia de datos. R-Ladies nuclea a entusiastas de R que se desempeñan en - las áreas STEM (ciencia, tecnología, matemática e ingeniería) que se identifican - como mujer o con géneros disidentes, y conforma una red colaborativa mundial - de líderes, mentoras, estudiantes y desarrolladoras de R. Hoy, existen más - de 150 capítulos de R-Ladies en todo el mundo. Uno de ellos acá, en el fin - del mundo.

\\n

Todos los eventos que realizamos en todo el mundo son - gratuitos, y en espacios seguros.

\\n

Nos encontrás en GitHub (https://github.com/rladies) - y Twitter (https://twitter.com/RLadiesUshuaia).

\\n


Mail: - ushuaia[at]rladies[dot]org

Para más detalles sobre la iniciativa R-Ladies - Global visitá rladies.org (https://rladies.org/).

Política - y Código de Conducta de R-Ladies:

En la comunidad R-Ladies los puestos - de responsabilidad como organizador, orador o mentor son exclusivamente para - personas que se identifican con el género femenino o con géneros disidentes. - Aún así, la asistencia a las reuniones está abierta a personas de todos los - géneros.

Siempre se dará prioridad a la participación de minorías de - género en la comunidad ya que este grupo nació con la intención de animar - y apoyar a las personas cuyo género está subrepresentado en los trabajos STEM - (Science, Technology, Engineering & Math) y en la comunidad de R. Les - organizadores de R-Ladies tienen la responsabilidad y el derecho de tomar - las acciones oportunas para salvaguardar los intereses de la comunidad.

Código - de conducta completo. (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. (https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct)

\\n

(English)

\\n

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation - that promotes gender diversity in the R community worldwide. We meetup in - person or virtually to learn about the R programming language, algorithms - and advanced tools.

\\n

R-Ladies welcomes members of all R - proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1589663557000,\"gender_female\":0.7857142686843872,\"gender_male\":0.1428571492433548,\"gender_other\":0,\"gender_unknown\":0.0714285746216774,\"id\":33725126,\"last_event\":1607374800000,\"lat\":-54.790000915527344,\"lon\":-68.30999755859375,\"member_count\":30,\"name\":\"R-Ladies - Ushuaia\",\"past_events\":3,\"past_rsvps\":26,\"pro_join_date\":1589663730526,\"repeat_rsvpers\":3,\"rsvps_per_event\":8.666666984558105,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ushuaia\",\"status\":\"Active\",\"cursor\":\"[['1589663730526'],['33725126']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":231655081,\"name\":\"Lucía - Rodríguez Planes\",\"permission\":\"coorganizer\"},{\"member_id\":261597834,\"name\":\"Samanta - Dodino\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.194000244140625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Tunis\",\"country\":\"Tunisia\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1589502641000,\"gender_female\":0.45394736528396606,\"gender_male\":0.4802631437778473,\"gender_other\":0,\"gender_unknown\":0.06578947603702545,\"id\":33719616,\"last_event\":1610123400000,\"lat\":36.84000015258789,\"lon\":10.220000267028809,\"member_count\":480,\"name\":\"R-Ladies - Tunis\",\"next_event\":1610805600000,\"past_events\":18,\"past_rsvps\":618,\"pro_join_date\":1589502822588,\"repeat_rsvpers\":132,\"rsvps_per_event\":34.33333206176758,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":1,\"urlname\":\"rladies-tunis\",\"status\":\"Active\",\"cursor\":\"[['1589502822588'],['33719616']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":216250232,\"name\":\"Haifa - Ben Messaoud\",\"permission\":\"coorganizer\"},{\"member_id\":235598538,\"name\":\"Hédia - Tnani\",\"permission\":\"coorganizer\"},{\"member_id\":274379696,\"name\":\"Mouna - Belaid\",\"permission\":\"coorganizer\"},{\"member_id\":310047102,\"name\":\"R-Ladies - Tunis\",\"permission\":\"coorganizer\"}]},{\"average_age\":33,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Talca\",\"country\":\"Chile\",\"description\":\"

R-Ladies - Talca es parte de RLadies Global, una organización mundial que busca promover - la diversidad de género en la comunidad de R. Nuestro objetivo es generar - un espacio de aprendizaje colaborativo, amigable y seguro, en el que podamos - intercambiar ideas, experiencias y conocimientos. Así, esperamos que R se - vuelva más accesible y cercano.
Este es un grupo abierto a personas interesadas - con cualquier nivel de conocimiento y de cualquier disciplina: desde quienes - recién están acercándose a R hasta quienes lo utilizan como su principal herramienta - de trabajo.
Todos nuestros eventos son gratuitos y en ellos se dará prioridad - a la participación femenina y de géneros disidentes. Cualquier persona es - bienvenida siempre y cuando se ciña al Código de Conducta de R-Ladies Global: - https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish -
Si quieres saber más sobre esta iniciativa, visita nuestro sitio web: - http://rladies.org .

Para - estar al tanto de nuestra novedades, puedes seguirnos en Twitter (@RLadiesTalca) - o Facebook (fb.me/RLadiesTalca)

Pronto anunciaremos nuestras próximas - actividades.

\\n

¡Te esperamos!

* En nuestros eventos tomamos - fotos y a veces realizamos grabaciones que nos permiten compartir lo que hacemos. - Al unirte a nuestro grupo nos entregas el derecho a usar esas imágenes para - dar a conocer nuestras actividades. Este uso incluye (pero no se limita a) - su utilización en formato impreso o digital para hacer promoción de esta iniciativa, - para postular a fondos de apoyo, entre otros. Si no quieres aparecer en estos - registros gráficos, por favor avisa a las organizadoras.

\",\"founded_date\":1589441856000,\"gender_female\":0.6666666865348816,\"gender_male\":0.25925925374031067,\"gender_other\":0.03703703731298447,\"gender_unknown\":0.03703703731298447,\"id\":33717562,\"last_event\":1601298000000,\"lat\":-35.41999816894531,\"lon\":-71.66000366210938,\"member_count\":119,\"name\":\"R-Ladies - Talca\",\"past_events\":2,\"past_rsvps\":69,\"pro_join_date\":1589442007106,\"repeat_rsvpers\":11,\"rsvps_per_event\":34.5,\"state\":\"\",\"topics\":[{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":22203,\"name\":\"Technology - Professionals\",\"urlkey\":\"technology-professionals\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-talca\",\"status\":\"Active\",\"cursor\":\"[['1589442007106'],['33717562']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":280702071,\"name\":\"Alejandra - Andrea Tapia Silva\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.66669845581055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Córdoba\",\"country\":\"Argentina\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed to - develop our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, the - Free Software Movement, and contributing to the global R community!

\\n

We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in working with R. As a founding principle, there is no cost or - charge to participate in any of our R-Ladies communities around the world. - You can access our presentations, R scripts, and Projects on our Github account - (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1589440133000,\"gender_female\":0.692307710647583,\"gender_male\":0.23076923191547394,\"gender_other\":0,\"gender_unknown\":0.07692307978868484,\"id\":33717527,\"last_event\":1607374800000,\"lat\":-31.399999618530273,\"lon\":-64.19000244140625,\"member_count\":32,\"name\":\"R-Ladies - Cordoba\",\"past_events\":3,\"past_rsvps\":24,\"pro_join_date\":1589440424368,\"repeat_rsvpers\":3,\"rsvps_per_event\":8,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cordoba\",\"status\":\"Active\",\"cursor\":\"[['1589440424368'],['33717527']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":220358655,\"name\":\"Juliana - Benitez\",\"permission\":\"coorganizer\"}]},{\"average_age\":27.200000762939453,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Cusco\",\"country\":\"Peru\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1589047571000,\"gender_female\":0.4285714328289032,\"gender_male\":0.5714285969734192,\"gender_other\":0,\"gender_unknown\":0,\"id\":33704099,\"last_event\":1608076800000,\"lat\":-13.520000457763672,\"lon\":-71.98999786376953,\"member_count\":21,\"name\":\"R-Ladies - Cusco\",\"past_events\":2,\"past_rsvps\":8,\"pro_join_date\":1589047733481,\"repeat_rsvpers\":3,\"rsvps_per_event\":4,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":111155,\"name\":\"Algorithms\",\"urlkey\":\"algorithms\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1444542,\"name\":\"Advanced - algorithms data structure design pattern\",\"urlkey\":\"advanced-algorithms-data-structure-design-pattern\"},{\"id\":1507128,\"name\":\"Análisis - de datos con R\",\"urlkey\":\"analisis-de-datos-con-r\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cusco\",\"status\":\"Active\",\"cursor\":\"[['1589047733481'],['33704099']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":279134971,\"name\":\"Joice - Kelly\",\"permission\":\"coorganizer\"},{\"member_id\":310134486,\"name\":\"Karen - M. Marocho\",\"permission\":\"coorganizer\"},{\"member_id\":310169493,\"name\":\"Camila - Jimena Vargas Noriega\",\"permission\":\"coorganizer\"}]},{\"average_age\":26.760000228881836,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"al-Jaza´ir\",\"country\":\"Algeria\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1588433228000,\"gender_female\":0.43589743971824646,\"gender_male\":0.41025641560554504,\"gender_other\":0,\"gender_unknown\":0.1538461595773697,\"id\":33683539,\"last_event\":1606239000000,\"lat\":36.77000045776367,\"lon\":3.0399999618530273,\"member_count\":126,\"name\":\"R-Ladies - Algiers\",\"past_events\":3,\"past_rsvps\":47,\"pro_join_date\":1588433469439,\"repeat_rsvpers\":7,\"rsvps_per_event\":15.666666984558105,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-algiers\",\"status\":\"Active\",\"cursor\":\"[['1588433469439'],['33683539']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":307905821,\"name\":\"BENADROUCHE - kamila\",\"permission\":\"coorganizer\"},{\"member_id\":311220443,\"name\":\"FAZIA - ZIBANI\",\"permission\":\"coorganizer\"},{\"member_id\":311424086,\"name\":\"RLadiesAlgiers\",\"permission\":\"coorganizer\"}]},{\"average_age\":28.7273006439209,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Barranquilla\",\"country\":\"Colombia\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and - all minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with - our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

- \\n

Please note that by taking part in an R-Ladies event you grant the community - organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1588432049000,\"gender_female\":0.6097561120986938,\"gender_male\":0.2926829159259796,\"gender_other\":0,\"gender_unknown\":0.09756097197532654,\"id\":33683503,\"last_event\":1605364200000,\"lat\":11,\"lon\":-74.81999969482422,\"member_count\":211,\"name\":\"R-Ladies - Barranquilla\",\"past_events\":5,\"past_rsvps\":203,\"pro_join_date\":1588432115312,\"repeat_rsvpers\":33,\"rsvps_per_event\":40.599998474121094,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":21067,\"name\":\"Collaboration\",\"urlkey\":\"collaboration\"},{\"id\":29526,\"name\":\"Collaboration - between Creative Minds\",\"urlkey\":\"collaboration-between-creative-minds\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":107996,\"name\":\"LGBT - Friendly\",\"urlkey\":\"lgbt-friendly\"}],\"upcoming_events\":0,\"urlname\":\"rladies-barranquilla\",\"status\":\"Active\",\"cursor\":\"[['1588432115312'],['33683503']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":306997809,\"name\":\"Mary - Jane Rivero Morales\",\"permission\":\"coorganizer\"},{\"member_id\":310189443,\"name\":\"Danisse - María Carrascal Polo\",\"permission\":\"coorganizer\"},{\"member_id\":310190410,\"name\":\"Isabel - Vasquez Alvarez\",\"permission\":\"coorganizer\"},{\"member_id\":311351117,\"name\":\"Viviana - Carolina Florez Camacho\",\"permission\":\"coorganizer\"},{\"member_id\":312382984,\"name\":\"Maria - Isabel Arrieta Escobar\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.85710144042969,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"General - Pico\",\"country\":\"Argentina\",\"description\":\"

This is a local chapter - of R-Ladies Global (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1584201974000,\"gender_female\":0.6000000238418579,\"gender_male\":0.30000001192092896,\"gender_other\":0,\"gender_unknown\":0.10000000149011612,\"id\":33554403,\"last_event\":1601733600000,\"lat\":-35.65999984741211,\"lon\":-63.77000045776367,\"member_count\":62,\"name\":\"R-Ladies - General Pico\",\"past_events\":5,\"past_rsvps\":67,\"pro_join_date\":1584202046594,\"repeat_rsvpers\":7,\"rsvps_per_event\":13.399999618530273,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":1398192,\"name\":\"Women - Who Code\",\"urlkey\":\"women-who-code\"}],\"upcoming_events\":0,\"urlname\":\"rladies-general-pico\",\"status\":\"Active\",\"cursor\":\"[['1584202046594'],['33554403']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":286017209,\"name\":\"Marysol - Gatti\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.818199157714844,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ribeirão - Preto\",\"country\":\"Brazil\",\"description\":\"

This is a local chapter - of R-Ladies Global (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news. You can also follow R-Ladies Ribeirão - Preto on twitter (https://twitter.com/RLadiesRP) - or instagram (https://www.instagram.com/rladiesrp).

\\n

Make sure - you read and comply with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1583482809000,\"gender_female\":0.800000011920929,\"gender_male\":0.10000000149011612,\"gender_other\":0,\"gender_unknown\":0.10000000149011612,\"id\":33504173,\"last_event\":1606766400000,\"lat\":-21.170000076293945,\"lon\":-47.79999923706055,\"member_count\":110,\"name\":\"R-Ladies - Ribeirão Preto\",\"past_events\":2,\"past_rsvps\":78,\"pro_join_date\":1583482889888,\"repeat_rsvpers\":11,\"rsvps_per_event\":39,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":133584,\"name\":\"statistical - programming\",\"urlkey\":\"statistical-programming\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ribeirao-preto\",\"status\":\"Active\",\"cursor\":\"[['1583482889888'],['33504173']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":302806899,\"name\":\"Francesca - Palmeira\",\"permission\":\"coorganizer\"},{\"member_id\":320434550,\"name\":\"Camila - Pianca\",\"permission\":\"event_organizer\"},{\"member_id\":320442750,\"name\":\"Maísa - Ziviani Alves\",\"permission\":\"event_organizer\"}]},{\"average_age\":31,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Abuja\",\"country\":\"Nigeria\",\"description\":\"

This - group is a local chapter of the R-Ladies Global organization located in Abuja - FCT, Nigeria. It is open to all members with an interest in r programming - language, data science, data analytics, artificial intelligence. The group - is focused on increasing the representation of women in global R community - through establishing local communities providing mentoring, collaborative - learning & support. We are also open to collaboration from professionals, - academics and organizations willing to provide guidance and support to all - members.

\\n


\\n

Find more details about R-Ladies global initiative - and Code of Conduct by visiting https://rladies.org/

\\n

Follow - us on twitter @RLadiesAbuja and @RLadiesGlobal

\\n

Check out our R-Ladies - Github https://github.com/rladies

\\n

Disclaimer: - Photos, Films and all other media/recordings : photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Abuja event you grant the community organizers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.”

\",\"founded_date\":1580822320000,\"gender_female\":0.5333333611488342,\"gender_male\":0.4000000059604645,\"gender_other\":0,\"gender_unknown\":0.06666667014360428,\"id\":33291403,\"last_event\":1596877200000,\"lat\":9.180000305175781,\"lon\":7.170000076293945,\"member_count\":153,\"name\":\"R-Ladies - Abuja\",\"next_event\":1611428400000,\"past_events\":2,\"past_rsvps\":27,\"pro_join_date\":1582654879991,\"repeat_rsvpers\":4,\"rsvps_per_event\":13.5,\"state\":\"\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1512214,\"name\":\"Data - Science for Business\",\"urlkey\":\"data-science-for-business\"}],\"upcoming_events\":1,\"urlname\":\"rladies-abuja\",\"status\":\"Active\",\"cursor\":\"[['1582654879991'],['33291403']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":294377299,\"name\":\"Bilikisu - Aderinto\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.719999313354492,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Aguascalientes\",\"country\":\"Mexico\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1582394542000,\"gender_female\":0.568965494632721,\"gender_male\":0.3965517282485962,\"gender_other\":0,\"gender_unknown\":0.03448275849223137,\"id\":33409736,\"last_event\":1606233600000,\"lat\":21.8799991607666,\"lon\":-102.30000305175781,\"member_count\":312,\"name\":\"R-Ladies - Aguascalientes\",\"past_events\":5,\"past_rsvps\":348,\"pro_join_date\":1582394599978,\"repeat_rsvpers\":49,\"rsvps_per_event\":69.5999984741211,\"state\":\"\",\"topics\":[{\"id\":659,\"name\":\"Web - Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":280601,\"name\":\"Women - in Computing\",\"urlkey\":\"women-in-computing\"}],\"upcoming_events\":0,\"urlname\":\"rladies-aguascalientes\",\"status\":\"Active\",\"cursor\":\"[['1582394599978'],['33409736']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":303264484,\"name\":\"Regina - I. Medina\",\"permission\":\"coorganizer\"},{\"member_id\":313967852,\"name\":\"Mariana - Fernandez\",\"permission\":\"coorganizer\"},{\"member_id\":313977799,\"name\":\"Andrea - Luviano\",\"permission\":\"coorganizer\"},{\"member_id\":313980792,\"name\":\"Carmina - Barberena Jonas\",\"permission\":\"coorganizer\"},{\"member_id\":313981217,\"name\":\"Fernanda - Torres\",\"permission\":\"coorganizer\"},{\"member_id\":315633741,\"name\":\"Yadira - Peralta\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.38890075683594,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Coventry\",\"country\":\"United - Kingdom\",\"description\":\"

This is a local chapter of R-Ladies Global - (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1582393894000,\"gender_female\":0.800000011920929,\"gender_male\":0.125,\"gender_other\":0.02500000037252903,\"gender_unknown\":0.05000000074505806,\"id\":33409671,\"last_event\":1607090400000,\"lat\":52.41999816894531,\"lon\":-1.5,\"member_count\":123,\"name\":\"R-Ladies - Coventry\",\"next_event\":1611766800000,\"past_events\":2,\"past_rsvps\":98,\"pro_join_date\":1582393949973,\"repeat_rsvpers\":40,\"rsvps_per_event\":49,\"state\":\"43\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":23105,\"name\":\"Professional - Development for Women\",\"urlkey\":\"personal-and-professional-development-for-women\"},{\"id\":24188,\"name\":\"Personal - Development for Women\",\"urlkey\":\"personal-development-for-women\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":149654,\"name\":\"Women - Software Developers\",\"urlkey\":\"women-software-developers\"},{\"id\":691502,\"name\":\"Women - Web Developers\",\"urlkey\":\"women-web-developers\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-coventry\",\"status\":\"Active\",\"cursor\":\"[['1582393949973'],['33409671']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":250757670,\"name\":\"Marion\",\"permission\":\"coorganizer\"},{\"member_id\":290759351,\"name\":\"Sophie - Hardy\",\"permission\":\"coorganizer\"}]},{\"average_age\":24.5,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Niš\",\"country\":\"Serbia\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1582393179000,\"gender_female\":0.5,\"gender_male\":0.5,\"gender_other\":0,\"gender_unknown\":0,\"id\":33409584,\"lat\":43.33000183105469,\"lon\":21.899999618530273,\"member_count\":11,\"name\":\"R-Ladies - Niš\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1582393272109,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":24188,\"name\":\"Personal - Development for Women\",\"urlkey\":\"personal-development-for-women\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":149654,\"name\":\"Women - Software Developers\",\"urlkey\":\"women-software-developers\"},{\"id\":691502,\"name\":\"Women - Web Developers\",\"urlkey\":\"women-web-developers\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-nis\",\"status\":\"Active\",\"cursor\":\"[['1582393272109'],['33409584']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":303416022,\"name\":\"Marija - Veljkovic\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.25,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ha - Noi\",\"country\":\"Vietnam\",\"description\":\"

This is a local chapter - of R-Ladies Global (https://www.rladies.org), - an organisation that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. You can access our presentations, - R scripts, and Projects on our Github account (https://github.com/rladies) and follow us on twitter - (https://twitter.com/RLadiesGlobal) - to stay up to date about R-Ladies news!

\\n

Make sure you read and comply - with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1581878624000,\"gender_female\":0.6000000238418579,\"gender_male\":0.20000000298023224,\"gender_other\":0,\"gender_unknown\":0.20000000298023224,\"id\":33361775,\"lat\":21.030000686645508,\"lon\":105.83999633789062,\"member_count\":39,\"name\":\"R-Ladies - Ha Noi\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1581878964048,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ha-noi\",\"status\":\"Active\",\"cursor\":\"[['1581878964048'],['33361775']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"}]},{\"average_age\":34.61399841308594,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Monterrey\",\"country\":\"Mexico\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1578851232000,\"gender_female\":0.5901639461517334,\"gender_male\":0.2950819730758667,\"gender_other\":0.008196720853447914,\"gender_unknown\":0.10655737668275833,\"id\":33194964,\"last_event\":1608082200000,\"lat\":25.670000076293945,\"lon\":-100.31999969482422,\"member_count\":304,\"name\":\"R-Ladies - Monterrey\",\"past_events\":7,\"past_rsvps\":244,\"pro_join_date\":1578851285136,\"repeat_rsvpers\":39,\"rsvps_per_event\":34.85714340209961,\"state\":\"\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":61106,\"name\":\"Software - Programmer\",\"urlkey\":\"software-programmer\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-monterrey\",\"status\":\"Active\",\"cursor\":\"[['1578851285136'],['33194964']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":127384272,\"name\":\"Ereni - Amante\",\"permission\":\"coorganizer\"},{\"member_id\":209975235,\"name\":\"Juana - Martínez\",\"permission\":\"coorganizer\"}]},{\"average_age\":35,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Oxford\",\"country\":\"United - Kingdom\",\"description\":\"

Hi Everyone! 

\\n


\\n

This - is part of a first step towards starting an R-Ladies Oxford local chapter. - It is born out of a desire to have an inclusive, friendly, positive space - to share skills, ideas, tips, hints and tricks in the R universe. We are still - setting everything up, but hope to be with you in the first half of 2020. - Watch this space!

\\n


\\n

####################################################################################################

\\n

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1578850744000,\"gender_female\":0.9230769276618958,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.07692307978868484,\"id\":33194933,\"lat\":51.7599983215332,\"lon\":-1.2599999904632568,\"member_count\":28,\"name\":\"R-Ladies - Oxford\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1578850833140,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"K2\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":52083,\"name\":\"Young - Professional Women\",\"urlkey\":\"young-professional-women\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-oxford\",\"status\":\"Active\",\"cursor\":\"[['1578850833140'],['33194933']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":184191578,\"name\":\"Katarzyna - Zofia Kędzierska\",\"permission\":\"coorganizer\"},{\"member_id\":300348075,\"name\":\"Fran - Reynolds\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.08700180053711,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Puerto - Ayora\",\"country\":\"Ecuador\",\"description\":\"

¡Saludos desde R-Ladies - Galápagos!

\\n

Somos un capítulo local de la organización R-Ladies Global (https://www.rladies.org) - basados en Puerto Ayora, Galápagos. R-Ladies es una organización que promueve - la diversidad de género en las comunidades de usuarios de R a nivel mundial. 

\\n

R-Ladies - invita a miembros de la comunidad general con cualquier nivel de experiencia - en R, desde prinicipiantes, o incluso aspirantes a usarlo, hasta usuarios - con extensa experiencia que estén interesados en apoyar nuestra iniciativa - compartiendo sus conocimientos con otros miembros. Nuestra comunidad está - diseñada para ayudar a nuestros miembros a desarrollar habilidades en R en - un ambiente relajado y colaborativo, donde todos compartamos tanto nuestras - dudas como nuestros conocimientos con los demás. Apoyamos principalmente a - miembros de minorías que tengan un menor acceso a cursos o carreras en las - áreas de Ciencias, Tecnologías, Ingenerías y Matemáticas (conocidas en conjunto - como STEM por sus siglas en inglés). Apoyamos también a iniciativas de software - libre que contribuyan al desarrollo de los miembros de la comunidad global - de usuarios R.

\\n

Promovemos la inclusión de personas queer, - trans, y de minorías de género, con particular énfasis en la inclusión de - identidades interseccionales, es decir, que se identifiquen como parte de - más de un grupo social, cultural o de género. Nuestra prioridad es el ofrecer - un espacio comunitario seguro para que personas que se identifiquen como pertenecientes - a minorías de género se unan a nuestro grupo para aprender o continuar desarrollando - sus habilidades en R. Nuestro principio fundamental es que todos los eventos - R-Ladies alrededor del mundo son completamente gratuitos. Puedes acceder a - nuestras presentaciones, scripts R, y proyectos en general a través de nuestra - cuenta Github (https://github.com/rladies). También nos - puedes seguir en twitter para que estés al día con noticias de nuestro grupo - R-Ladies Global (https://twitter.com/RLadiesGlobal) y R-Ladies - Galápagos (https://twitter.com/rladiesgps).

\\n

Asegúrate - de leer y seguir nuestro código de conducta (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct), - así como nuestras guías de comunidad (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Por - favor, nota que al formar parte de los eventos R-Ladies estás dando derecho - a los organizadores de cada capítulo de utilizar imágenes o videos donde aparezcas - para usarlos como publicidad, recaudación de fondos o en otro tipo de campaña - que ayuden al capítulo a lograr los objetivos de nuestra comunidad. Esto incluye, - pero no es limitado, al derecho de usar imágenes y/o videos en formato impreso, - digital, en redes sociales, notas de prensa y en aplicaciones para fuentes - de financiamiento. Si no deseas que tomen fotos o videos tuyos, por favor, - comunícaselo al organizador comunitario.

\",\"founded_date\":1578849837000,\"gender_female\":0.46000000834465027,\"gender_male\":0.5199999809265137,\"gender_other\":0,\"gender_unknown\":0.019999999552965164,\"id\":33194871,\"last_event\":1602343800000,\"lat\":-0.7400000095367432,\"lon\":-90.31999969482422,\"member_count\":237,\"name\":\"R-Ladies - Galapagos Islands\",\"past_events\":10,\"past_rsvps\":320,\"pro_join_date\":1578850047479,\"repeat_rsvpers\":61,\"rsvps_per_event\":32,\"state\":\"\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":285651,\"name\":\"Underrepresented - Minorities\",\"urlkey\":\"underrepresented-minorities\"},{\"id\":691472,\"name\":\"Latin - Women in Technology\",\"urlkey\":\"latin-women-in-technology\"},{\"id\":1513819,\"name\":\"Technlogy\",\"urlkey\":\"technlogy\"}],\"upcoming_events\":0,\"urlname\":\"rladies-galapagos-islands\",\"status\":\"Active\",\"cursor\":\"[['1578850047479'],['33194871']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":297612817,\"name\":\"Denisse - Fierro Arcos\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Yaoundé\",\"country\":\"Cameroon\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools.

\\n

R-Ladies welcomes members of all R proficiency levels, whether - you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\\n

We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1578216877000,\"gender_female\":0.30000001192092896,\"gender_male\":0.699999988079071,\"gender_other\":0,\"gender_unknown\":0,\"id\":33166554,\"lat\":3.869999885559082,\"lon\":11.520000457763672,\"member_count\":48,\"name\":\"R-Ladies - Yaoundé\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1578216921121,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":1435182,\"name\":\"Learn - Computer Programming\",\"urlkey\":\"learn-computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-yaounde\",\"status\":\"Active\",\"cursor\":\"[['1578216921121'],['33166554']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"}]},{\"average_age\":35.9375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Columbia\",\"country\":\"USA\",\"description\":\"

This - is a local chapter of R-Ladies Global (https://www.rladies.org), an organisation that - promotes gender diversity in the R community worldwide. We meetup in person - or virtually to learn about the R programming language, algorithms and advanced - tools. View our local chapter website at Code-RLadies.github.io.

\\n

R-Ladies - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!

\\n

We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in working with R. As a founding principle, there is no cost or - charge to participate in any of our R-Ladies communities around the world. - You can access our presentations, R scripts, and Projects on our Github account - (https://github.com/rladies) - and follow us on twitter (https://twitter.com/RLadiesGlobal) to stay up - to date about R-Ladies news!

\\n

Make sure you read and comply with our - code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1576439422000,\"gender_female\":0.7647058963775635,\"gender_male\":0.0882352963089943,\"gender_other\":0,\"gender_unknown\":0.14705882966518402,\"id\":33107363,\"last_event\":1606260600000,\"lat\":38.900001525878906,\"lon\":-92.25,\"member_count\":84,\"name\":\"R-Ladies - Mid-Mo\",\"next_event\":1611703800000,\"past_events\":11,\"past_rsvps\":130,\"pro_join_date\":1576439522689,\"repeat_rsvpers\":21,\"rsvps_per_event\":11.818181991577148,\"state\":\"MO\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":3,\"urlname\":\"rladies-mid-mo\",\"status\":\"Active\",\"cursor\":\"[['1576439522689'],['33107363']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":197717875,\"name\":\"Linda - Landon\",\"permission\":\"coorganizer\"},{\"member_id\":219926493,\"name\":\"Krista - Galyen\",\"permission\":\"coorganizer\"},{\"member_id\":298582667,\"name\":\"Code-RLadies - MidMO\",\"permission\":\"coorganizer\"},{\"member_id\":300545673,\"name\":\"Hope - Snyder\",\"permission\":\"coorganizer\"},{\"member_id\":300743789,\"name\":\"R-Ladies - Mid-Mo\",\"permission\":\"coorganizer\"}]},{\"average_age\":26.928600311279297,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Colombo\",\"country\":\"Sri - Lanka\",\"description\":\"

This is a local chapter of R-Ladies Global (https://www.rladies.org), - an organization that promotes gender diversity in the R community worldwide. - We meetup in person or virtually to learn about the R programming language, - algorithms and advanced tools.

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in working with R. As a founding principle, there is no cost or - charge to participate in any of our R-Ladies communities around the world. - You can access our presentations, R scripts, and Projects on our Github account - (https://github.com/rladiescolombo and - follow us on twitter (https://twitter.com/RLadiesColomboto - stay up to date about R-Ladies news!

\\n

Make sure you read and - comply with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1576416612000,\"gender_female\":0.5,\"gender_male\":0.40909090638160706,\"gender_other\":0,\"gender_unknown\":0.09090909361839294,\"id\":33106550,\"last_event\":1609155000000,\"lat\":6.929999828338623,\"lon\":79.8499984741211,\"member_count\":106,\"name\":\"R-Ladies - Colombo\",\"next_event\":1611747000000,\"past_events\":1,\"past_rsvps\":47,\"pro_join_date\":1576416655141,\"repeat_rsvpers\":14,\"rsvps_per_event\":47,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":114172,\"name\":\"Inclusive - & Diverse\",\"urlkey\":\"inclusive-diverse\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-colombo\",\"status\":\"Active\",\"cursor\":\"[['1576416655141'],['33106550']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":208087351,\"name\":\"Thiyanga - Talagala\",\"permission\":\"coorganizer\"},{\"member_id\":212517597,\"name\":\"Priyanga - Dilini Talagala\",\"permission\":\"coorganizer\"}]},{\"average_age\":30,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"New - Orleans\",\"country\":\"USA\",\"description\":\"

This is a local chapter - of R-Ladies Global, an organisation that promotes gender diversity in the - R community worldwide.

\\n

R-Ladies welcomes members of all R proficiency - levels, whether you're a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

\\n

We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. You can access our presentations, R scripts, and Projects - on our Github account (https://github.com/rladies) - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Make - sure you read and comply with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1575132910000,\"gender_female\":0.7368420958518982,\"gender_male\":0.15789473056793213,\"gender_other\":0,\"gender_unknown\":0.10526315867900848,\"id\":33061717,\"last_event\":1581379200000,\"lat\":29.959999084472656,\"lon\":-90.08000183105469,\"member_count\":37,\"name\":\"R-Ladies - New Orleans\",\"past_events\":1,\"past_rsvps\":10,\"pro_join_date\":1575133072003,\"repeat_rsvpers\":0,\"rsvps_per_event\":10,\"state\":\"LA\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":415742,\"name\":\"STEM - Education\",\"urlkey\":\"stem-education\"},{\"id\":1485482,\"name\":\"STEM - Mentoring\",\"urlkey\":\"stem-mentoring\"},{\"id\":1510944,\"name\":\"Science - / STEM / STEAM activities\",\"urlkey\":\"science-stem-steam-activities\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-new-orleans\",\"status\":\"Active\",\"cursor\":\"[['1575133072003'],['33061717']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":187172045,\"name\":\"Danielle - Kerani\",\"permission\":\"coorganizer\"},{\"member_id\":231154281,\"name\":\"Erin - Cuyler\",\"permission\":\"coorganizer\"}]},{\"average_age\":46.33330154418945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Syracuse\",\"country\":\"USA\",\"description\":\"

This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide.

\\n

R-Ladies welcomes members - of all R proficiency levels, whether you're a new or aspiring R user, or an - experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n

You can access - our presentations, R scripts, and Projects on our Github account and follow - us on twitter to stay up to date about R-Ladies news!
Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies

\\n

Make - sure you read and comply with our code of conduct (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct) - and community guidelines (https://github.com/rladies/starter-kit/blob/master/RLadiesRulesAndGuideLinesENES.md).

\\n

Please - note that by taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1575130160000,\"gender_female\":1,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0,\"id\":33061635,\"lat\":43.040000915527344,\"lon\":-76.1500015258789,\"member_count\":7,\"name\":\"R-Ladies - Syracuse\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1575131822932,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"NY\",\"topics\":[{\"id\":7467,\"name\":\"Free - Software Foundation\",\"urlkey\":\"fsf\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":61106,\"name\":\"Software - Programmer\",\"urlkey\":\"software-programmer\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":376201,\"name\":\"software - freedom\",\"urlkey\":\"software-freedom\"},{\"id\":415742,\"name\":\"STEM - Education\",\"urlkey\":\"stem-education\"},{\"id\":1383972,\"name\":\"Free - Software and Hardware\",\"urlkey\":\"free-software-and-hardware\"},{\"id\":1507044,\"name\":\"Programmering\",\"urlkey\":\"programmering\"},{\"id\":1510944,\"name\":\"Science - / STEM / STEAM activities\",\"urlkey\":\"science-stem-steam-activities\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-syracuse\",\"status\":\"Active\",\"cursor\":\"[['1575131822932'],['33061635']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":216568030,\"name\":\"Heather - Kropp\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.36359977722168,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Mumbai\",\"country\":\"India\",\"description\":\"

This - is Mumbai's first R Programming community for self-identified women & - minority genders! A local chapter of R-Ladies Global (http://rladies.org), - R-Ladies Mumbai exists to promote gender diversity in the R community, both - in Mumbai and worldwide. We are pro-actively inclusive of queer, trans, and - all minority identities, with additional sensitivity to intersectional identities - (which many lead R-Ladies are) - our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n

R-Ladies - Mumbai welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

\\n
\\n

@RLadiesMumbai |mumbai@rladies.org - (email)

\\n
\\n

@RLadiesGlobal | info@rladies.org (email) | rladies.org - (website) | github.com/rladies

\\n

P.S. Community Policies & Code - of Conduct:
The leadership, mentoring & teaching roles within this - Community are held exclusively by minority genders (majority gender speakers - may be allowed/invited as one-off guests in exceptional circumstances at the - leadership team's discretion). Due to unexpected demand, we have opened learning - participation to all genders, dependent on initial and on-going vetting by - the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we, therefore, reserve the right to guard this interest through - whatever measures the leadership team deems appropriate. Anyone involved with - R-Ladies is expected to fully respect each other, the mandate of this community, - and the goodwill on which R-Ladies is founded, or face expulsion/a penalty - of any form, at the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1574536483000,\"gender_female\":0.3529411852359772,\"gender_male\":0.47058823704719543,\"gender_other\":0,\"gender_unknown\":0.1764705926179886,\"id\":33041359,\"last_event\":1587821400000,\"lat\":18.959999084472656,\"lon\":72.81999969482422,\"member_count\":76,\"name\":\"R-Ladies - Mumbai\",\"past_events\":1,\"past_rsvps\":16,\"pro_join_date\":1574536526400,\"repeat_rsvpers\":0,\"rsvps_per_event\":16,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-mumbai\",\"status\":\"Active\",\"cursor\":\"[['1574536526400'],['33041359']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":297676773,\"name\":\"Manasi - Mahadik\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.756099700927734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Göteborg\",\"country\":\"Sweden\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

We have a pre-meetup survey going on right now, make sure to click - HERE - and tell us what you think!

\\n

R-Ladies welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

This is a local - chapter of R-Ladies Global, an organisation that promotes gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1574535735000,\"gender_female\":0.6666666865348816,\"gender_male\":0.1733333319425583,\"gender_other\":0,\"gender_unknown\":0.1599999964237213,\"id\":33041322,\"last_event\":1604419200000,\"lat\":57.720001220703125,\"lon\":12.010000228881836,\"member_count\":155,\"name\":\"R-Ladies - Göteborg\",\"past_events\":5,\"past_rsvps\":124,\"pro_join_date\":1574535784270,\"repeat_rsvpers\":25,\"rsvps_per_event\":24.799999237060547,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-goteborg\",\"status\":\"Active\",\"cursor\":\"[['1574535784270'],['33041322']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":183995794,\"name\":\"Natalia - Alvarado Pachón\",\"permission\":\"coorganizer\"},{\"member_id\":210362883,\"name\":\"Nina - Ilchenko\",\"permission\":\"coorganizer\"},{\"member_id\":297377671,\"name\":\"Erica - Metheney\",\"permission\":\"coorganizer\"},{\"member_id\":302306286,\"name\":\"Sofia - Axelsson\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.33329963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Oxford\",\"country\":\"USA\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1574534399000,\"gender_female\":0.7142857313156128,\"gender_male\":0.1428571492433548,\"gender_other\":0,\"gender_unknown\":0.1428571492433548,\"id\":33041271,\"last_event\":1604966400000,\"lat\":39.4900016784668,\"lon\":-84.73999786376953,\"member_count\":48,\"name\":\"R-Ladies - Oxford Ohio\",\"past_events\":3,\"past_rsvps\":35,\"pro_join_date\":1574534777879,\"repeat_rsvpers\":10,\"rsvps_per_event\":11.666666984558105,\"state\":\"OH\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":21283,\"name\":\"Women's - Business Networking\",\"urlkey\":\"womens-business-networking\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":144477,\"name\":\"Women's - Support\",\"urlkey\":\"womens-support\"}],\"upcoming_events\":0,\"urlname\":\"rladies-oxford-ohio\",\"status\":\"Active\",\"cursor\":\"[['1574534777879'],['33041271']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":301514394,\"name\":\"Sandy - Steiger\",\"permission\":\"coorganizer\"},{\"member_id\":301515955,\"name\":\"Skyler - Perry\",\"permission\":\"coorganizer\"}]},{\"average_age\":25.588199615478516,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"al-Khartum\",\"country\":\"Sudan\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1574532946000,\"gender_female\":0.20000000298023224,\"gender_male\":0.550000011920929,\"gender_other\":0,\"gender_unknown\":0.25,\"id\":33041212,\"lat\":15.579999923706055,\"lon\":32.52000045776367,\"member_count\":38,\"name\":\"R-Ladies - Al-Khartum\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1574533236227,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":17635,\"name\":\"Business - Strategy\",\"urlkey\":\"business-strategy\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-al-khartum\",\"status\":\"Active\",\"cursor\":\"[['1574533236227'],['33041212']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":297305742,\"name\":\"Sarah\",\"permission\":\"coorganizer\"}]},{\"average_age\":26.2726993560791,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":37,\"name\":\"[TRACK]Business\",\"shortname\":\"business\"}],\"city\":\"Eskisehir\",\"country\":\"Turkey\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1573636979000,\"gender_female\":0.7575757503509521,\"gender_male\":0.1818181872367859,\"gender_other\":0,\"gender_unknown\":0.06060606241226196,\"id\":33007398,\"last_event\":1594832400000,\"lat\":39.790000915527344,\"lon\":30.520000457763672,\"member_count\":115,\"name\":\"R-Ladies - Eskisehir\",\"past_events\":10,\"past_rsvps\":114,\"pro_join_date\":1573637033823,\"repeat_rsvpers\":26,\"rsvps_per_event\":11.399999618530273,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":107996,\"name\":\"LGBT - Friendly\",\"urlkey\":\"lgbt-friendly\"}],\"upcoming_events\":0,\"urlname\":\"rladies-eskisehir\",\"status\":\"Active\",\"cursor\":\"[['1573637033823'],['33007398']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":295438603,\"name\":\"R - Ladies Eskişehir\",\"permission\":\"coorganizer\"}]},{\"average_age\":37.23529815673828,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Beijing\",\"country\":\"China\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1573635496000,\"gender_female\":0.48148149251937866,\"gender_male\":0.2222222238779068,\"gender_other\":0,\"gender_unknown\":0.29629629850387573,\"id\":33007355,\"last_event\":1594294200000,\"lat\":39.93000030517578,\"lon\":116.4000015258789,\"member_count\":55,\"name\":\"R-Ladies - Beijing\",\"past_events\":3,\"past_rsvps\":13,\"pro_join_date\":1573635544491,\"repeat_rsvpers\":4,\"rsvps_per_event\":4.333333492279053,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":102002,\"name\":\"Gender - Equality\",\"urlkey\":\"gender-equality\"}],\"upcoming_events\":0,\"urlname\":\"rladies-beijing\",\"status\":\"Active\",\"cursor\":\"[['1573635544491'],['33007355']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":255739190,\"name\":\"Sabrina\",\"permission\":\"coorganizer\"},{\"member_id\":257224513,\"name\":\"Clara - Wang\",\"permission\":\"coorganizer\"},{\"member_id\":296402958,\"name\":\"Hannah - Rose Kirk\",\"permission\":\"coorganizer\"},{\"member_id\":297421312,\"name\":\"Zuqun\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.222200393676758,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Muscat\",\"country\":\"Oman\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1572550666000,\"gender_female\":0.3199999928474426,\"gender_male\":0.47999998927116394,\"gender_other\":0,\"gender_unknown\":0.20000000298023224,\"id\":32964072,\"last_event\":1581146100000,\"lat\":23.610000610351562,\"lon\":58.540000915527344,\"member_count\":115,\"name\":\"R-Ladies - Masqat\",\"past_events\":1,\"past_rsvps\":15,\"pro_join_date\":1572550770641,\"repeat_rsvpers\":10,\"rsvps_per_event\":15,\"state\":\"\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":144477,\"name\":\"Women's - Support\",\"urlkey\":\"womens-support\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":415742,\"name\":\"STEM - Education\",\"urlkey\":\"stem-education\"},{\"id\":1485482,\"name\":\"STEM - Mentoring\",\"urlkey\":\"stem-mentoring\"},{\"id\":1509348,\"name\":\"STEAM - and STEM Activities\",\"urlkey\":\"steam-and-stem-activities\"}],\"upcoming_events\":0,\"urlname\":\"rladies-masqat\",\"status\":\"Active\",\"cursor\":\"[['1572550770641'],['32964072']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":261504474,\"name\":\"Noora\",\"permission\":\"coorganizer\"},{\"member_id\":292420669,\"name\":\"Iman - Al-Hasani\",\"permission\":\"coorganizer\"},{\"member_id\":295563466,\"name\":\"Aaisha\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.076900482177734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Bergen\",\"country\":\"Norway\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!  As - a founding principle, there is no cost or charge to participate in any of - our R-Ladies communities around the world. 

\\n


R-Ladies Bergen - is part of Global R-Ladies group. You can access our presentations, R scripts, - and Projects on our Github account and follow us on twitter to stay up to - date about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1572284806000,\"gender_female\":0.8024691343307495,\"gender_male\":0.1111111119389534,\"gender_other\":0,\"gender_unknown\":0.08641975373029709,\"id\":32946570,\"last_event\":1608033600000,\"lat\":60.380001068115234,\"lon\":5.340000152587891,\"member_count\":240,\"name\":\"R-Ladies - Bergen\",\"next_event\":1610730000000,\"past_events\":8,\"past_rsvps\":368,\"pro_join_date\":1572284892582,\"repeat_rsvpers\":89,\"rsvps_per_event\":46,\"state\":\"\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":60621,\"name\":\"African-American - Women in Technology\",\"urlkey\":\"african-american-women-in-technology\"},{\"id\":102002,\"name\":\"Gender - Equality\",\"urlkey\":\"gender-equality\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":691472,\"name\":\"Latin Women - in Technology\",\"urlkey\":\"latin-women-in-technology\"}],\"upcoming_events\":1,\"urlname\":\"rladies-bergen\",\"status\":\"Active\",\"cursor\":\"[['1572284892582'],['32946570']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":78136862,\"name\":\"Jonelle - Dickow Villar\",\"permission\":\"coorganizer\"},{\"member_id\":295340101,\"name\":\"Julia - Romanowska\",\"permission\":\"coorganizer\"},{\"member_id\":295376084,\"name\":\"Astrid - Lunde\",\"permission\":\"coorganizer\"},{\"member_id\":301707501,\"name\":\"Maxine(Diandian) - Yi\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.871000289916992,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Pune\",\"country\":\"India\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community.

\\n

R-Ladies - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community! <br>This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. <br>We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct: <br>The leadership, mentoring - & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Due to - unexpected demand, we have opened learning participation to all genders, dependent - on initial and on-going vetting by the leadership team. However, the stated - priority of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

The - Code of Conduct can be found here: https://rladies.org/code-of-conduct/

\\n

P.P.S. - Photos, Films and all other media/recordings: <br>Photos, Films, and - all other media/recordings: photographs and/or video/other media will be taken - at events held by this community. By taking part in an R-Ladies event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1569767701000,\"gender_female\":0.3404255211353302,\"gender_male\":0.5744680762290955,\"gender_other\":0.021276595070958138,\"gender_unknown\":0.06382978707551956,\"id\":32826541,\"last_event\":1595620800000,\"lat\":18.530000686645508,\"lon\":73.83999633789062,\"member_count\":136,\"name\":\"R-Ladies - Pune\",\"past_events\":7,\"past_rsvps\":115,\"pro_join_date\":1569767762772,\"repeat_rsvpers\":22,\"rsvps_per_event\":16.428571701049805,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15280,\"name\":\"Statistical Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"}],\"upcoming_events\":0,\"urlname\":\"rladies-pune\",\"status\":\"Active\",\"cursor\":\"[['1569767762772'],['32826541']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":250198569,\"name\":\"disha - patil\",\"permission\":\"coorganizer\"},{\"member_id\":261151743,\"name\":\"Saranjeet - Kaur\",\"permission\":\"coorganizer\"}]},{\"average_age\":26.933300018310547,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Vitória\",\"country\":\"Brazil\",\"description\":\"

R-Ladies - é uma organização mundial que surgiu com a finalidade de promover a linguagem - de programação R juntamente à diversidade e equidade de gênero, capacitando - pessoas de gêneros sub-representados e criando e fortalecendo redes colaborativas - dentro da comunidade R. No dia 29 de setembro de 2019, o capítulo R-Ladies - Vitória passou a integrar oficialmente a organização R-Ladies Global, em Vitória, - no Espírito Santo.

Nossa principal missão é promover a linguagem - de programação estatística R na capital capixaba para pessoas com qualquer - nível de conhecimento e que se identificam com o gênero feminino por meio - de encontros em ambientes nos quais os participantes se sintam seguros e livres - para se expressarem sem sofrer quaisquer tipo de represália ou assédio.
-
CÓDIGO DE CONDUTA R-LADIES: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#portuguese -

TWITTER: https://www.twitter.com/rladiesvix

INSTAGRAM: - https://www.instagram.com/rladiesvix

CONTATO: vitoria@rladies.org -

*ATENÇÃO*
Ao participar de um evento do R-Ladies Vitória, você - concede aos organizadores da comunidade plenos direitos para usar as imagens - resultantes de filmagem, fotografia e quaisquer reproduções ou adaptações - das imagens para publicidade, captação de recursos ou outros propósitos para - ajudar a alcançar objetivos da comunidade. Isso pode incluir (mas não se limita - a) o direito de usá-los em sua publicidade impressa e on-line, mídia social - e aplicativos de financiamento. Se você não deseja ser gravado nessas mídias, - por favor, informe a uma organizadora da comunidade.

\",\"founded_date\":1569767162000,\"gender_female\":0.8928571343421936,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.1071428582072258,\"id\":32826513,\"last_event\":1606561200000,\"lat\":-20.309999465942383,\"lon\":-40.310001373291016,\"member_count\":182,\"name\":\"R-Ladies - Vitória\",\"past_events\":3,\"past_rsvps\":160,\"pro_join_date\":1569767239512,\"repeat_rsvpers\":20,\"rsvps_per_event\":53.33333206176758,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":22792,\"name\":\"Functional - Programming\",\"urlkey\":\"functional-programming\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-vitoria\",\"status\":\"Active\",\"cursor\":\"[['1569767239512'],['32826513']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":191585064,\"name\":\"Agatha - Rodrigues\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.271900177001953,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Medellín\",\"country\":\"Colombia\",\"description\":\"

R-Ladies - Medellín es parte de una organización mundial que promueve la diversidad de - género en la comunidad R.

\\n

R-Ladies Medellín da la bienvenida - a todas aquellas personas interesadas en programar en R, sin importar si su - nivel es de experto o principiante, pues esta comunidad fue creada con el - objetivo de desarrollar habilidades y el conocimiento de R a través del aprendizaje - y el intercambio social y colaborativo. Como principio fundador, no hay ningún - costo por participar de esta comunidad.

\\n

Únete a este Meetup y entérate - de los próximos eventos ¡Te esperamos!

\\n

---

\\n

R-Ladies Medellín - is part of a world-wide organization to promote gender diversity in the R - community.

\\n

R-Ladies Medellín welcomes all people interested - in R programming, regardless of whether their R level is expert or beginner, - because this community was created with the aim of developing R skills and - knowledge through social, collaborative learning & sharing. As a founding - principle, there is no cost to participate in this community.

\\n

Join - this Meetup group and find out about the upcoming events. We are waiting for - you!

\\n

---

\\n

Website: https://www.rladies.org

\\n

Twitter: @RLadiesMedellin - (https://twitter.com/RLadiesMedellin)

\\n

Facebook: https://www.facebook.com/MedellinRLadies/

\\n

Github: - https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct: <br>The leadership, mentoring - & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Due to - unexpected demand, we have opened learning participation to all genders, dependent - on initial and on-going vetting by the leadership team. However, the stated - priority of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings: <br>Photos, Films, and - all other media/recordings: photographs and/or video/other media will be taken - at events held by this community. By taking part in an R-Ladies event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1569691305000,\"gender_female\":0.7359550595283508,\"gender_male\":0.16292135417461395,\"gender_other\":0.00561797758564353,\"gender_unknown\":0.09550561755895615,\"id\":32823667,\"last_event\":1605742200000,\"lat\":6.25,\"lon\":-75.58999633789062,\"member_count\":436,\"name\":\"R-Ladies - Medellín\",\"past_events\":5,\"past_rsvps\":282,\"pro_join_date\":1569691407461,\"repeat_rsvpers\":45,\"rsvps_per_event\":56.400001525878906,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10232,\"name\":\"Women's Social\",\"urlkey\":\"women\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":21283,\"name\":\"Women's - Business Networking\",\"urlkey\":\"womens-business-networking\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"}],\"upcoming_events\":0,\"urlname\":\"rladies-medellin\",\"status\":\"Active\",\"cursor\":\"[['1569691407461'],['32823667']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":191559794,\"name\":\"Olga - Usuga\",\"permission\":\"coorganizer\"},{\"member_id\":288695736,\"name\":\"Valen - Clavijo Mesa\",\"permission\":\"coorganizer\"},{\"member_id\":292413402,\"name\":\"Angie - Paola Correa Sepúlveda\",\"permission\":\"coorganizer\"},{\"member_id\":292830864,\"name\":\"Sara - Garces Cespedes\",\"permission\":\"coorganizer\"},{\"member_id\":292889214,\"name\":\"CARMEN - ELENA PATIÑO RODRIGUEZ\",\"permission\":\"coorganizer\"}]},{\"average_age\":27.75,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Podgorica\",\"country\":\"Montenegro\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1568834261000,\"gender_female\":0.5555555820465088,\"gender_male\":0.3333333432674408,\"gender_other\":0,\"gender_unknown\":0.1111111119389534,\"id\":32783356,\"last_event\":1570114800000,\"lat\":42.470001220703125,\"lon\":19.280000686645508,\"member_count\":25,\"name\":\"R-Ladies - Podgorica\",\"past_events\":1,\"past_rsvps\":1,\"pro_join_date\":1568834309401,\"repeat_rsvpers\":0,\"rsvps_per_event\":1,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-podgorica\",\"status\":\"Active\",\"cursor\":\"[['1568834309401'],['32783356']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":235780666,\"name\":\"Elma - M. Hót\",\"permission\":\"coorganizer\"}]},{\"average_age\":25,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Pachuca\",\"country\":\"Mexico\",\"description\":\"

R-Ladies - es una organización mundial que se encarga de promover la diversidad de género - en la comunidad R.

\\n

Somos un espacio que da cabida a personas con - todos los niveles de habilidad en programación en R, desde principiantes hasta - programadores experimentados con ganas de compartir sus conocimientos y generar - redes de colaboración. Nuestra comunidad se basa en el apoyo, el compañerismo, - el trabajo colaborativo, y el respeto.

\\n

¡Únete a nuestro grupo para - enterarte de todos nuestros eventos! Somos un capítulo local perteneciente - a R-Ladies Global. Todos nuestros eventos son gratuitos, y están dirigidos - a la comunidad interesada en compartir y desarrollar habilidades en R en Pachuca - y alrededores.

\\n

Nuestra prioridad es generar una comunidad segura - para cualquier persona que se identifique como una minoría de género que trabaje - o le interese trabajar con R.

\\n

Si tienes alguna duda sobre las actividades - de R-Ladies Pachuca puedes escribir a pachuca@rladies.org

\\n

Para estar - al tanto de nuestras noticias, síguenos en Twitter: @RLadiesPachuca (https://twitter.com/RLadiesPachuca)

\\n

Para - conocer más sobre el movimiento R-Ladies Global consulta la página web: <br>Website: - https://www.rladies.org

- \\n

Sigue todas las noticias de R-Ladies Global en Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

- \\n

P.S. Community Policies & Code of Conduct: <br>The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

- \\n

P.P.S. Photos, Films and all other media/recordings: <br>Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1568538937000,\"gender_female\":0.20000000298023224,\"gender_male\":0.4000000059604645,\"gender_other\":0,\"gender_unknown\":0.4000000059604645,\"id\":32767673,\"lat\":20.1200008392334,\"lon\":-98.76000213623047,\"member_count\":11,\"name\":\"R-Ladies - Pachuca\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1568538982272,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":17635,\"name\":\"Business - Strategy\",\"urlkey\":\"business-strategy\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-pachuca\",\"status\":\"Active\",\"cursor\":\"[['1568538982272'],['32767673']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":291040029,\"name\":\"Yesenia - Jasso\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.53129959106445,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Calgary\",\"country\":\"Canada\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1568445336000,\"gender_female\":0.7666666507720947,\"gender_male\":0.0833333358168602,\"gender_other\":0,\"gender_unknown\":0.15000000596046448,\"id\":32763890,\"last_event\":1580589000000,\"lat\":51.040000915527344,\"lon\":-114.05999755859375,\"member_count\":103,\"name\":\"R-Ladies - Calgary\",\"past_events\":1,\"past_rsvps\":23,\"pro_join_date\":1568445516048,\"repeat_rsvpers\":8,\"rsvps_per_event\":23,\"state\":\"AB\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17635,\"name\":\"Business - Strategy\",\"urlkey\":\"business-strategy\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-calgary\",\"status\":\"Active\",\"cursor\":\"[['1568445516048'],['32763890']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":11580754,\"name\":\"Soane - Mota\",\"permission\":\"coorganizer\"},{\"member_id\":273454287,\"name\":\"Marta - Vidal\",\"permission\":\"coorganizer\"},{\"member_id\":297629880,\"name\":\"Amanda - Neves \",\"permission\":\"coorganizer\"}]},{\"average_age\":28.83329963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":38,\"name\":\"[TRACK]Products - & services\",\"shortname\":\"products\"}],\"city\":\"Recife\",\"country\":\"Brazil\",\"description\":\"

# - O que é o R-Ladies Recife? 

\\n

Somos um - grupo, parte de uma organização global, com a finalidade - de disseminar o conhecimento da programação em R promovendo a diversidade - de gênero por meio de meetups (reuniões) esporádicas, manutenção de grupos - para discussão, compartilhamento de oportunidades, e o que mais possa apoiar/encorajar/inspirar - o progresso individual e coletivo de grupos de gêneros sub-representados. - Incluindo, mas não se limitando a mulheres cis/trans, homens trans, não-binários, - genderqueer, agender.

\\n

# Qual é o nosso objetivo?

\\n

Não - importa o seu nível de proficiência em R, seja você um novo usuário do R, - aspirante ou um programador R experiente, interessado em orientação, networking - e aprimoramento especializado. Nossa comunidade é projetada para desenvolver - as habilidades e o conhecimento de R de nossos membros por meio de aprendizado - e compartilhamento social e colaborativo, apoiando o acesso da identidade - minoritária às habilidades e carreiras STEM (Science, Technology, Engineering - & Math), ao Movimento de Software Livre e contribuindo para a comunidade - R global!

\\n

Nossa prioridade é fornecer um espaço - comunitário seguro para qualquer pessoa que se identifique como um gênero - minoritário que esteja interessado e/ou trabalhe com a linguagem de programação - R. 

\\n

# Quanto custa para participar dos eventos?

\\n

Como - princípio fundador, não há custo ou taxa para participar de qualquer uma de - nossas comunidades R-Ladies ao redor do mundo.

\\n

# Políticas - e código de conduta da comunidade:

\\n

• As funções de liderança, - mentoria e ensino nesta Comunidade são realizadas exclusivamente por gêneros - minoritários. Porém, os oradores majoritários de gênero podem ser permitidos - e/ou convidados em circunstâncias excepcionais, a critério da equipe de liderança. 

\\n

• A - prioridade declarada das comunidades R-Ladies é o desenvolvimento e o apoio - especificamente daqueles que se identificam como um gênero minoritário, e, - portanto, reservamos o direito de proteger esse interesse por quaisquer medidas - que a equipe de liderança considere apropriada. 

\\n

• Espera-se - que qualquer pessoa envolvida com o R-Ladies respeite plenamente um ao outro, - o mandato desta comunidade e a boa vontade em que o R-Ladies se baseia.

\\n

# - Para mais informações, acesse:

\\n

• Informações sobre o - R-Ladies Global:

\\n

Website: https://www.rladies.org

\\n

Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

Code - of Conduct: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\\n

• Informações - sobre o R-Ladies Recife:

\\n

Email: recife@rladies.org

\\n

Instagram: - rladiesrecife

\\n

Código de conduta:  https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\",\"founded_date\":1567456861000,\"gender_female\":0.8095238208770752,\"gender_male\":0.1428571492433548,\"gender_other\":0.02380952425301075,\"gender_unknown\":0.02380952425301075,\"id\":32713369,\"last_event\":1568325600000,\"lat\":-8.079999923706055,\"lon\":-34.91999816894531,\"member_count\":148,\"name\":\"R-Ladies - Recife\",\"past_events\":1,\"past_rsvps\":96,\"pro_join_date\":1567456891793,\"repeat_rsvpers\":0,\"rsvps_per_event\":96,\"state\":\"\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":31232,\"name\":\"Women's - Network\",\"urlkey\":\"womens-network\"},{\"id\":98380,\"name\":\"R Project - for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-recife\",\"status\":\"Active\",\"cursor\":\"[['1567456891793'],['32713369']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":285320339,\"name\":\"Larissa - Lima\",\"permission\":\"coorganizer\"},{\"member_id\":285503183,\"name\":\"Luana - Rodrigues\",\"permission\":\"coorganizer\"},{\"member_id\":287730037,\"name\":\"Cristine - Oliveira\",\"permission\":\"coorganizer\"},{\"member_id\":289526287,\"name\":\"Bruna - Gregory Palm\",\"permission\":\"coorganizer\"},{\"member_id\":289665733,\"name\":\"Adenice - Ferreira\",\"permission\":\"coorganizer\"},{\"member_id\":289776115,\"name\":\"Tatiane - Fontana Ribeiro\",\"permission\":\"coorganizer\"},{\"member_id\":289810524,\"name\":\"Ranah - Duarte Costa\",\"permission\":\"coorganizer\"},{\"member_id\":289929174,\"name\":\"Thalytta - Evilly\",\"permission\":\"coorganizer\"},{\"member_id\":290529200,\"name\":\"Anabeth - Petry Radunz\",\"permission\":\"coorganizer\"},{\"member_id\":293443863,\"name\":\"Larissa - Lima\",\"permission\":\"event_organizer\"}]},{\"average_age\":29.184600830078125,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":38,\"name\":\"[TRACK]Products - & services\",\"shortname\":\"products\"}],\"city\":\"Delhi\",\"country\":\"India\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1567327362000,\"gender_female\":0.6283186078071594,\"gender_male\":0.3008849620819092,\"gender_other\":0,\"gender_unknown\":0.07079645991325378,\"id\":32705558,\"last_event\":1599381000000,\"lat\":28.670000076293945,\"lon\":77.20999908447266,\"member_count\":329,\"name\":\"R-Ladies - New Delhi\",\"past_events\":9,\"past_rsvps\":174,\"pro_join_date\":1567327424209,\"repeat_rsvpers\":16,\"rsvps_per_event\":19.33333396911621,\"state\":\"\",\"topics\":[{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":383411,\"name\":\"Big Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":480642,\"name\":\"Data\",\"urlkey\":\"data\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-new-delhi\",\"status\":\"Active\",\"cursor\":\"[['1567327424209'],['32705558']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":188863003,\"name\":\"Anukriti - Gupta\",\"permission\":\"coorganizer\"},{\"member_id\":288901995,\"name\":\"Riya - Gupta\",\"permission\":\"coorganizer\"}]},{\"average_age\":31,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Athens\",\"country\":\"USA\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1567259713000,\"gender_female\":1,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0,\"id\":32702266,\"last_event\":1575666000000,\"lat\":33.970001220703125,\"lon\":-83.36000061035156,\"member_count\":28,\"name\":\"R-Ladies - Athens\",\"past_events\":2,\"past_rsvps\":2,\"pro_join_date\":1567259810751,\"repeat_rsvpers\":1,\"rsvps_per_event\":1,\"state\":\"GA\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10296,\"name\":\"Women in - Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":16325,\"name\":\"Software - Engineering\",\"urlkey\":\"software-engineering\"},{\"id\":39090,\"name\":\"Software - Design\",\"urlkey\":\"software-design\"},{\"id\":149654,\"name\":\"Women Software - Developers\",\"urlkey\":\"women-software-developers\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":1485482,\"name\":\"STEM - Mentoring\",\"urlkey\":\"stem-mentoring\"},{\"id\":1509348,\"name\":\"STEAM - and STEM Activities\",\"urlkey\":\"steam-and-stem-activities\"},{\"id\":1509936,\"name\":\"Science - STEM and STEAM activities\",\"urlkey\":\"science-stem-and-steam-activities\"},{\"id\":1510598,\"name\":\"STEM - Edcation for Girls\",\"urlkey\":\"stem-edcation-for-girls\"},{\"id\":1510944,\"name\":\"Science - / STEM / STEAM activities\",\"urlkey\":\"science-stem-steam-activities\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-athens-ga\",\"status\":\"Active\",\"cursor\":\"[['1567259810751'],['32702266']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":96164392,\"name\":\"Camila - Lívio\",\"permission\":\"coorganizer\"},{\"member_id\":292085933,\"name\":\"Lisa - Lipani\",\"permission\":\"coorganizer\"}]},{\"average_age\":28.299999237060547,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"L'viv\",\"country\":\"Ukraine\",\"description\":\"

What - we're about

\\n


\\n

R-Ladies Lviv welcomes members - of all R proficiency levels, whether you're a new or aspiring R user, or an - experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

A local chapter of R-Ladies - Global, R-Ladies Lviv exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

Join - and follow us:

\\n

Our Facebook page: https://www.facebook.com/RLadiesLviv/ 

Twitter: - @RLadiesLviv \\nhttps://twitter.com/RLadiesLviv\\n
- \\n
Contact us: \\n
\\n
- Partnership proposal: lviv@rladies.org - \\n
\\n
- Questions and support : r.ladies.lviv@gmail.com \\n
\\n
Website: \\nhttps://www.rladies.org (\\nhttps://www.rladies.org/) \\n
- \\n
PS Community Policies & Code of Conduct: \\n
\\n
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Kyiv is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.\",\"founded_date\":1567257458000,\"gender_female\":0.529411792755127,\"gender_male\":0.29411765933036804,\"gender_other\":0,\"gender_unknown\":0.1764705926179886,\"id\":32702177,\"last_event\":1571414400000,\"lat\":49.84000015258789,\"lon\":24.030000686645508,\"member_count\":34,\"name\":\"R-Ladies - L'viv\",\"past_events\":4,\"past_rsvps\":12,\"pro_join_date\":1567258264405,\"repeat_rsvpers\":2,\"rsvps_per_event\":3,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":3880,\"name\":\"Professional Development\",\"urlkey\":\"prodev\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":23374,\"name\":\"Study - Group\",\"urlkey\":\"study-group\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":60043,\"name\":\"Open Data\",\"urlkey\":\"open-data\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lviv\",\"status\":\"Active\",\"cursor\":\"[['1567258264405'],['32702177']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":207270919,\"name\":\"Maria - Kolyada\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.742900848388672,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lagos\",\"country\":\"Nigeria\",\"description\":\"

R-Ladies - is a world-wide organization to promote gender diversity in the R community. -

\\n

R-Ladies welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1565963121000,\"gender_female\":0.5154638886451721,\"gender_male\":0.30927833914756775,\"gender_other\":0.010309278033673763,\"gender_unknown\":0.1649484485387802,\"id\":32612004,\"last_event\":1582358400000,\"lat\":6.449999809265137,\"lon\":3.4700000286102295,\"member_count\":290,\"name\":\"R-Ladies - Lagos\",\"past_events\":3,\"past_rsvps\":55,\"pro_join_date\":1565963276976,\"repeat_rsvpers\":7,\"rsvps_per_event\":18.33333396911621,\"state\":\"\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lagos\",\"status\":\"Active\",\"cursor\":\"[['1565963276976'],['32612004']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":225839690,\"name\":\"Eyitayo - Alimi\",\"permission\":\"coorganizer\"}]},{\"average_age\":41.714298248291016,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lexington - Park\",\"country\":\"USA\",\"description\":\"

R-Ladies is a world-wide organization - to promote gender diversity in the R community.

\\n

R-Ladies welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
This is a local chapter of - R-Ladies Global, an organisation that promotes gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1565948604000,\"gender_female\":0.4000000059604645,\"gender_male\":0.44999998807907104,\"gender_other\":0,\"gender_unknown\":0.15000000596046448,\"id\":32611075,\"last_event\":1607990400000,\"lat\":38.27000045776367,\"lon\":-76.45999908447266,\"member_count\":34,\"name\":\"R-Ladies - Lexington Park\",\"past_events\":2,\"past_rsvps\":12,\"pro_join_date\":1565949288837,\"repeat_rsvpers\":1,\"rsvps_per_event\":6,\"state\":\"MD\",\"topics\":[{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":61106,\"name\":\"Software - Programmer\",\"urlkey\":\"software-programmer\"},{\"id\":1018472,\"name\":\"Open - Minded Programmers\",\"urlkey\":\"open-minded-programmers\"},{\"id\":1507044,\"name\":\"Programmering\",\"urlkey\":\"programmering\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lexington-park\",\"status\":\"Active\",\"cursor\":\"[['1565949288837'],['32611075']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":287716918,\"name\":\"Linden - McBride\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.125,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Cuernavaca\",\"country\":\"Mexico\",\"description\":\"

R-Ladies - Cuernavaca welcomes members of all R proficiency levels, whether you're a - new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1565853576000,\"gender_female\":0.5975610017776489,\"gender_male\":0.353658527135849,\"gender_other\":0.012195121496915817,\"gender_unknown\":0.03658536449074745,\"id\":32604355,\"last_event\":1605222000000,\"lat\":18.920000076293945,\"lon\":-99.25,\"member_count\":474,\"name\":\"R-Ladies - Cuernavaca\",\"past_events\":9,\"past_rsvps\":620,\"pro_join_date\":1565853668159,\"repeat_rsvpers\":123,\"rsvps_per_event\":68.88888549804688,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":5938,\"name\":\"Extreme - Programming\",\"urlkey\":\"xp\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":22792,\"name\":\"Functional - Programming\",\"urlkey\":\"functional-programming\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":61106,\"name\":\"Software - Programmer\",\"urlkey\":\"software-programmer\"},{\"id\":1018472,\"name\":\"Open - Minded Programmers\",\"urlkey\":\"open-minded-programmers\"},{\"id\":1507044,\"name\":\"Programmering\",\"urlkey\":\"programmering\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cuernavaca\",\"status\":\"Active\",\"cursor\":\"[['1565853668159'],['32604355']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":287651840,\"name\":\"Joselyn - Chavez\",\"permission\":\"coorganizer\"},{\"member_id\":312273379,\"name\":\"Veronica - Jiménez-Jacinto\",\"permission\":\"coorganizer\"},{\"member_id\":314671622,\"name\":\"Leticia - Vega Alvarado\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.70909881591797,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Riverside\",\"country\":\"USA\",\"description\":\"

R-Ladies - Riverside welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Riverside exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Riverside is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Riverside event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1564713145000,\"gender_female\":0.5929203629493713,\"gender_male\":0.28318583965301514,\"gender_other\":0.008849557489156723,\"gender_unknown\":0.1150442510843277,\"id\":32522592,\"last_event\":1607648400000,\"lat\":33.9900016784668,\"lon\":-117.37000274658203,\"member_count\":348,\"name\":\"R-Ladies - Riverside\",\"past_events\":8,\"past_rsvps\":369,\"pro_join_date\":1564713222304,\"repeat_rsvpers\":60,\"rsvps_per_event\":46.125,\"state\":\"CA\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-riverside\",\"status\":\"Active\",\"cursor\":\"[['1564713222304'],['32522592']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":159630572,\"name\":\"Teresa - Bohner\",\"permission\":\"coorganizer\"},{\"member_id\":286013469,\"name\":\"Daniela - Cassol\",\"permission\":\"coorganizer\"},{\"member_id\":291594079,\"name\":\"Marilia - G\",\"permission\":\"coorganizer\"},{\"member_id\":300513559,\"name\":\"tessa - shates\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.52939987182617,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Fayetteville\",\"country\":\"USA\",\"description\":\"

R-Ladies - Fayetteville welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n


A - local chapter of R-Ladies Global, R-Ladies Fayetteville exists to promote - gender diversity in the R community worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.
We are part - of Global R-Ladies group. You can access our presentations, R scripts, and - Projects on our Github account and follow us on twitter to stay up to date - about R-Ladies news! 

\\n

Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Fayetteville is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Fayetteville event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1564185632000,\"gender_female\":0.6727272868156433,\"gender_male\":0.072727270424366,\"gender_other\":0.0181818176060915,\"gender_unknown\":0.23636363446712494,\"id\":32478325,\"last_event\":1604080800000,\"lat\":36.04999923706055,\"lon\":-94.13999938964844,\"member_count\":111,\"name\":\"R-Ladies - Fayetteville\",\"past_events\":8,\"past_rsvps\":76,\"pro_join_date\":1564185777813,\"repeat_rsvpers\":11,\"rsvps_per_event\":9.5,\"state\":\"AR\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-fayetteville\",\"status\":\"Active\",\"cursor\":\"[['1564185777813'],['32478325']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":160892332,\"name\":\"Morgan - Middlebrooks\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.45829963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Puebla\",\"country\":\"Mexico\",\"description\":\"

El - capítulo local R-Ladies Puebla busca promover la diversidad de género en la - comunidad de R (un lenguaje de programación para la manipulación y análisis - estadístico de datos).

\\n

Correo official: puebla@rladies.org

\\n

Twitter: - @RLadiesPuebla

\\n

Facebook: @pueblaRladies

\\n

GitHub: - RLadiesPuebla

\\n

Slack: r-ladiespuebla.slack.com

\\n

R-Ladies Puebla - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!
A local - chapter of R-Ladies Global, R-Ladies Puebla exists to promote gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Puebla is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Puebla event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1563506045000,\"gender_female\":0.5394737124443054,\"gender_male\":0.2763157784938812,\"gender_other\":0.02631578966975212,\"gender_unknown\":0.15789473056793213,\"id\":32426344,\"last_event\":1601578800000,\"lat\":19.049999237060547,\"lon\":-98.22000122070312,\"member_count\":201,\"name\":\"R-Ladies - Puebla\",\"past_events\":5,\"past_rsvps\":109,\"pro_join_date\":1563506106393,\"repeat_rsvpers\":11,\"rsvps_per_event\":21.799999237060547,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-puebla\",\"status\":\"Active\",\"cursor\":\"[['1563506106393'],['32426344']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":85895332,\"name\":\"Averi\",\"permission\":\"coorganizer\"},{\"member_id\":287731872,\"name\":\"Naiki - Olivas Gaspar\",\"permission\":\"coorganizer\"}]},{\"average_age\":37.38460159301758,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Kansas - City\",\"country\":\"USA\",\"description\":\"

R-Ladies Kansas City welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Kansas City exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Kansas City is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Kansas City event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1563504802000,\"gender_female\":0.7241379022598267,\"gender_male\":0.06896551698446274,\"gender_other\":0,\"gender_unknown\":0.2068965584039688,\"id\":32426227,\"last_event\":1581640200000,\"lat\":39.099998474121094,\"lon\":-94.5999984741211,\"member_count\":63,\"name\":\"R-Ladies - Kansas City\",\"past_events\":4,\"past_rsvps\":25,\"pro_join_date\":1563505539878,\"repeat_rsvpers\":7,\"rsvps_per_event\":6.25,\"state\":\"MO\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":745722,\"name\":\"Artificial - Intelligence Programming\",\"urlkey\":\"artificial-intelligence-programming\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":0,\"urlname\":\"rladies-kansas-city\",\"status\":\"Active\",\"cursor\":\"[['1563505539878'],['32426227']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":57469312,\"name\":\"Boryana - Koseva\",\"permission\":\"coorganizer\"},{\"member_id\":184304956,\"name\":\"Anna\",\"permission\":\"coorganizer\"},{\"member_id\":220690877,\"name\":\"Gabi - Cipriano\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.598800659179688,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Jakarta\",\"country\":\"Indonesia\",\"description\":\"

R-Ladies - Jakarta welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n

-
A local chapter of R-Ladies Global, R-Ladies Jakarta exists to promote - gender diversity in the R community worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.
We are part of Global - R-Ladies group. You can access our presentations, R scripts, and Projects - on our Github account and follow us on twitter to stay up to date about R-Ladies - news!

\\n

Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies/meetup-presentations_jakarta
-

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Jakarta is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings: -
Photos, Films, and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Jakarta event you grant the community organizers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1562382088000,\"gender_female\":0.5778894424438477,\"gender_male\":0.3316583037376404,\"gender_other\":0,\"gender_unknown\":0.09045226126909256,\"id\":32327430,\"last_event\":1603522800000,\"lat\":-6.179999828338623,\"lon\":106.83000183105469,\"member_count\":543,\"name\":\"R-Ladies - Jakarta\",\"past_events\":12,\"past_rsvps\":304,\"pro_join_date\":1562382159253,\"repeat_rsvpers\":57,\"rsvps_per_event\":25.33333396911621,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":15167,\"name\":\"Cloud Computing\",\"urlkey\":\"cloud-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-jakarta\",\"status\":\"Active\",\"cursor\":\"[['1562382159253'],['32327430']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":278786342,\"name\":\"Ulfah - Mardhiah\",\"permission\":\"coorganizer\"},{\"member_id\":280095735,\"name\":\"Erika - Siregar\",\"permission\":\"coorganizer\"},{\"member_id\":282845319,\"name\":\"yuti - ariani\",\"permission\":\"event_organizer\"}]},{\"average_age\":32.40909957885742,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Denver\",\"country\":\"USA\",\"description\":\"

R-Ladies - Denver welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n

A - local chapter of R-Ladies Global, R-Ladies Denver exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Denver is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Denver event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1562110168000,\"gender_female\":0.8166666626930237,\"gender_male\":0.03333333507180214,\"gender_other\":0.03333333507180214,\"gender_unknown\":0.11666666716337204,\"id\":32308998,\"last_event\":1579831200000,\"lat\":39.70000076293945,\"lon\":-105.08000183105469,\"member_count\":93,\"name\":\"R-Ladies - Denver\",\"past_events\":4,\"past_rsvps\":30,\"pro_join_date\":1562110318287,\"repeat_rsvpers\":4,\"rsvps_per_event\":7.5,\"state\":\"CO\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":98842,\"name\":\"Business - Analytics\",\"urlkey\":\"business-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-denver\",\"status\":\"Active\",\"cursor\":\"[['1562110318287'],['32308998']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":13315030,\"name\":\"Erin - Hodgess\",\"permission\":\"coorganizer\"},{\"member_id\":97984272,\"name\":\"Curie\",\"permission\":\"coorganizer\"},{\"member_id\":109361572,\"name\":\"Wendy - C\",\"permission\":\"coorganizer\"},{\"member_id\":223261644,\"name\":\"Meghan - Sposato\",\"permission\":\"coorganizer\"}]},{\"average_age\":27.393400192260742,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ankara\",\"country\":\"Turkey\",\"description\":\"

A - meetup platform for women using R programming in AnkaRa. Join us ! R - programı kullanan kadınların AnkaRa'daki buluşma platformu. Bize katılın ! R - programını öğrenmek isteyen ya da olan bilgisini geliştirmek isteyen herkes - katılabilir.

\",\"founded_date\":1562004352000,\"gender_female\":0.49065420031547546,\"gender_male\":0.2897196114063263,\"gender_other\":0,\"gender_unknown\":0.21962617337703705,\"id\":32299165,\"last_event\":1607619600000,\"lat\":39.93000030517578,\"lon\":32.849998474121094,\"member_count\":538,\"name\":\"R-Ladies - Ankara\",\"past_events\":11,\"past_rsvps\":286,\"pro_join_date\":1562004444942,\"repeat_rsvpers\":48,\"rsvps_per_event\":26,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ankara\",\"status\":\"Active\",\"cursor\":\"[['1562004444942'],['32299165']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":284323596,\"name\":\"Mubina - İpek\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.678600311279297,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Utrecht\",\"country\":\"Netherlands\",\"description\":\"

R-Ladies - Utrecht welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n

-
A local chapter of R-Ladies Global, R-Ladies Utrecht exists to promote - gender diversity in the R community worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n

We - are part of Global R-Ladies group. You can access our presentations, R scripts, - and Projects on our Github account and follow us on twitter to stay up to - date about R-Ladies news!

\\n

Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Utrecht is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Utrecht event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1560202140000,\"gender_female\":0.7752808928489685,\"gender_male\":0.13483145833015442,\"gender_other\":0.01123595517128706,\"gender_unknown\":0.07865168899297714,\"id\":32144791,\"last_event\":1607448600000,\"lat\":52.099998474121094,\"lon\":5.110000133514404,\"member_count\":174,\"name\":\"R-Ladies - Utrecht\",\"past_events\":5,\"past_rsvps\":102,\"pro_join_date\":1560202604276,\"repeat_rsvpers\":17,\"rsvps_per_event\":20.399999618530273,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-utrecht\",\"status\":\"Active\",\"cursor\":\"[['1560202604276'],['32144791']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":282962251,\"name\":\"Ale - Sure\",\"permission\":\"coorganizer\"},{\"member_id\":283901376,\"name\":\"Annelies\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.51850128173828,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Novi - Sad\",\"country\":\"Serbia\",\"description\":\"

R-Ladies Novi Sad welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

A local chapter - of R-Ladies Global, R-Ladies Novi Sad exists to promote gender diversity in - the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Novi Sad is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Novi Sad event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1558710848000,\"gender_female\":0.699999988079071,\"gender_male\":0.1599999964237213,\"gender_other\":0,\"gender_unknown\":0.14000000059604645,\"id\":32012873,\"last_event\":1576940400000,\"lat\":45.25,\"lon\":19.850000381469727,\"member_count\":137,\"name\":\"R-Ladies - Novi Sad\",\"past_events\":6,\"past_rsvps\":141,\"pro_join_date\":1558711175731,\"repeat_rsvpers\":31,\"rsvps_per_event\":23.5,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-novi-sad\",\"status\":\"Active\",\"cursor\":\"[['1558711175731'],['32012873']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":90907592,\"name\":\"Tatjana - Kecojevic Derbyshire\",\"permission\":\"coorganizer\"},{\"member_id\":225918351,\"name\":\"Olivera\",\"permission\":\"coorganizer\"},{\"member_id\":247418484,\"name\":\"Katica - Ristic\",\"permission\":\"coorganizer\"},{\"member_id\":281779599,\"name\":\"Ranka - Medenica Todorović\",\"permission\":\"coorganizer\"},{\"member_id\":281783217,\"name\":\"Milena - K\",\"permission\":\"coorganizer\"},{\"member_id\":282057338,\"name\":\"Maja - P\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.02330017089844,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":39,\"name\":\"[TRACK]Classes - & workshops\",\"shortname\":\"classes\"}],\"city\":\"Bucharest\",\"country\":\"Romania\",\"description\":\"

R-Ladies - Bucharest ii invita pe cei interesati de mentorat, networking sau imbunatatirea - cunostiintelor de R de orice nivel sa participe in comunitate; nu conteaza - daca sunteti newbie,  cochetati cu ideea de R sau deja folositi R la - un nivel expert.

\\n

Sustinem accesul identitatilor minoritare - la skill-uri si cariere in STEM, Free Software Movement si contribuim la comunitatea - globala de R!

\\n

Contact local: 

\\n

Email bucuresti@rladies.org

\\n

Facebook - - @RLadiesBucharest https://www.facebook.com/RLadiesBucharest/

\\n

Twitter - - @RLadiesBuchares (https://twitter.com/rladiesbuchares)

\\n

---------------------------------------------------------------------------------

\\n

- R-Ladies Bucharest welcomes members of all R proficiency levels, whether you're - a new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. 

\\n

Our community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community! 

\\n

A local chapter of R-Ladies Global, R-Ladies Bucharest exists - to promote gender diversity in the R community worldwide. 

\\n

We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. 

\\n

As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world. We are part of Global R-Ladies group. You can access our - presentations, R scripts, and Projects on our Github account and follow us - on twitter to stay up to date about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal ),

\\n

Github: https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct: The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Bucharest is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. 

\\n

PPS Photos, - Films and all other media/recordings: Photos, Films, and all other media/recordings: - photographs and/or video/other media will be taken at events held by this - community. By taking part in an R-Ladies Bucharest event - you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1557430937000,\"gender_female\":0.594059407711029,\"gender_male\":0.24752475321292877,\"gender_other\":0,\"gender_unknown\":0.15841583907604218,\"id\":31859491,\"last_event\":1610385300000,\"lat\":44.439998626708984,\"lon\":26.100000381469727,\"member_count\":229,\"name\":\"R-Ladies - Bucharest\",\"next_event\":1610640000000,\"past_events\":15,\"past_rsvps\":290,\"pro_join_date\":1557938674535,\"repeat_rsvpers\":52,\"rsvps_per_event\":19.33333396911621,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":2,\"urlname\":\"rladies-bucharest\",\"status\":\"Active\",\"cursor\":\"[['1557938674535'],['31859491']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":143165592,\"name\":\"Ines - Teacã\",\"permission\":\"coorganizer\"},{\"member_id\":280885485,\"name\":\"R-Ladies - Bucharest\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.5,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Highland - Park\",\"country\":\"USA\",\"description\":\"

R-Ladies Highland Park welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Highland Park exists to promote gender diversity in the R - community worldwide. We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Highland Park is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Highland Park event - you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1557424131000,\"gender_female\":0.6744186282157898,\"gender_male\":0.023255813866853714,\"gender_other\":0,\"gender_unknown\":0.302325576543808,\"id\":31858594,\"last_event\":1575327600000,\"lat\":40.5,\"lon\":-74.43000030517578,\"member_count\":70,\"name\":\"R-Ladies - Highland Park\",\"past_events\":4,\"past_rsvps\":23,\"pro_join_date\":1557424234967,\"repeat_rsvpers\":7,\"rsvps_per_event\":5.75,\"state\":\"NJ\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":98842,\"name\":\"Business - Analytics\",\"urlkey\":\"business-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-highland-park\",\"status\":\"Active\",\"cursor\":\"[['1557424234967'],['31858594']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":141013542,\"name\":\"Cristina\",\"permission\":\"coorganizer\"},{\"member_id\":184440167,\"name\":\"Michelle - \",\"permission\":\"coorganizer\"},{\"member_id\":251955273,\"name\":\"Laura\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.261499404907227,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Goiania\",\"country\":\"Brazil\",\"description\":\"

O - R-Ladies Goiânia dá as boas-vindas a membros de todos os níveis de proficiência - em R, seja você um usuário novo ou aspirante de R ou um programador experiente - em R, interessado em orientação, networking e qualificação profissional. Nossa - comunidade é projetada para desenvolver as habilidades e o conhecimento de - R de nossos membros por meio de aprendizado e compartilhamento social e colaborativo. - Apoiando o acesso da identidade minoritária às habilidades e carreiras STEM, - ao Movimento de Software Livre e contribuindo para a comunidade R global! -

\\n


\\n

Um capítulo local da R-Ladies - Global, o R-Ladies Goiânia existe para promover a diversidade de gênero na - comunidade R em todo o mundo. Somos pró-ativamente inclusivos de identidades - queer, trans e todas as minorias, com sensibilidade adicional às identidades - interseccionais. Nossa prioridade é fornecer um espaço comunitário seguro - para qualquer pessoa que se identifique como um gênero minoritário que esteja - interessado e / ou trabalhando com a R. Como princípio fundador, não há custo - ou taxa para participar de qualquer uma de nossas comunidades R-Ladies ao - redor do mundo. Fazemos parte do grupo  R-Ladies Global. Você pode acessar - nossas apresentações, scripts R e projetos em nossa conta Github e nos seguir - no twitter, instagram e sit para se manter atualizado sobre as novidades do - R-Ladies!

\\n


\\n

Website: https://www.rladiesgyn.com/ (https://www.rladies.org) -
Twitter: @rladiesgyn ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Goiânia is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Goiânia event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1557161990000,\"gender_female\":0.6521739363670349,\"gender_male\":0.2347826063632965,\"gender_other\":0.008695651777088642,\"gender_unknown\":0.104347825050354,\"id\":31829495,\"last_event\":1607788800000,\"lat\":-16.719999313354492,\"lon\":-49.2599983215332,\"member_count\":339,\"name\":\"R-Ladies - Goiânia\",\"past_events\":16,\"past_rsvps\":388,\"pro_join_date\":1557162113776,\"repeat_rsvpers\":78,\"rsvps_per_event\":24.25,\"state\":\"\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-goiania\",\"status\":\"Active\",\"cursor\":\"[['1557162113776'],['31829495']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":276589487,\"name\":\"Fernanda - Kelly\",\"permission\":\"coorganizer\"}]},{\"average_age\":37.941200256347656,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":39,\"name\":\"[TRACK]Classes - & workshops\",\"shortname\":\"classes\"}],\"city\":\"Christchurch\",\"country\":\"New - Zealand\",\"description\":\"

R-Ladies Christchurch welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Christchurch exists to promote gender diversity in the R - community worldwide. We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Christchurch is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Christchurch event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1556947755000,\"gender_female\":0.75,\"gender_male\":0.10000000149011612,\"gender_other\":0.02500000037252903,\"gender_unknown\":0.125,\"id\":31807417,\"last_event\":1573533000000,\"lat\":-43.529998779296875,\"lon\":172.63999938964844,\"member_count\":88,\"name\":\"R-Ladies - Christchurch\",\"past_events\":7,\"past_rsvps\":73,\"pro_join_date\":1556947823186,\"repeat_rsvpers\":16,\"rsvps_per_event\":10.428571701049805,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-christchurch\",\"status\":\"Active\",\"cursor\":\"[['1556947823186'],['31807417']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":278645542,\"name\":\"Vica - Papp\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.192298889160156,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"El - Paso\",\"country\":\"USA\",\"description\":\"

R-Ladies El Paso welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

Twitter: @RLadiesElPaso - ( https://twitter.com/RLadiesElPaso - )

\\n

A local chapter of R-Ladies Global, R-Ladies El Paso exists - to promote gender diversity in the R community worldwide. We are pro-actively - inclusive of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. 

\\n

We - are part of Global R-Ladies group. You can access our presentations, R scripts, - and Projects on our Github account and follow us on twitter to stay up to - date about R-Ladies news! 

\\n

Website: https://www.rladies.org
Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies -  

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies El Paso is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. 

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki 

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies El Paso event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1555698332000,\"gender_female\":0.6875,\"gender_male\":0.25,\"gender_other\":0,\"gender_unknown\":0.0625,\"id\":31679846,\"last_event\":1583971200000,\"lat\":31.760000228881836,\"lon\":-106.48999786376953,\"member_count\":61,\"name\":\"R-Ladies - El Paso\",\"past_events\":4,\"past_rsvps\":19,\"pro_join_date\":1555698533952,\"repeat_rsvpers\":4,\"rsvps_per_event\":4.75,\"state\":\"TX\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-el-paso\",\"status\":\"Active\",\"cursor\":\"[['1555698533952'],['31679846']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":174975162,\"name\":\"Grace - Smith Vidaurre\",\"permission\":\"coorganizer\"},{\"member_id\":280540485,\"name\":\"Elise - Bell\",\"permission\":\"coorganizer\"},{\"member_id\":281968787,\"name\":\"Marguerite - Mauritz\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.75,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Concepción\",\"country\":\"Chile\",\"description\":\"

R-Ladies - Concepción es parte de una organización mundial que busca promover - la diversidad de género en la comunidad R. Nuestro objetivo es generar un - espacio colaborativo amigable para intercambiar ideas, experiencias y conocimientos, - y así hacer R más popular y accesible. 

\\n

Este es - un grupo abierto a interesadas con cualquier nivel de conocimiento: desde - quienes recién están acercándose a R y quieren aprender más, hasta quienes - lo utilizan como su principal herramienta de trabajo. Únete para estar al - tanto de nuestros próximos eventos :)

Todos nuestros eventos son - gratuitos. Si bien se dará prioridad a la participación femenina, cualquier - persona con interés en R es bienvenida. Revisa el Código de Conducta Global - de R-Ladies (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish). 

\\n

Y - síguenos en nuestras redes sociales, Twitter (https://twitter.com/RLadiesConce), - Facebook (https://www.facebook.com/RLadiesConcepcion) - y al correo concepcion@rladies.org

\\n

¿Te gustaría participar como expositora? - ¿Tienes algún proyecto realizado con R que te gustaría compartir? ¿Te gustaría - enseñar a otras a utilizar R? ¡No dudes en ponerte en contacto con nosotras! -

\\n

También buscamos patrocinadores para poder continuar con esta - iniciativa. Si crees que puedes entregarnos apoyo, escríbenos.

\\n

Si - quieres saber más sobre la iniciativa R-Ladies Global visita rladies.org (http://rladies.org/) y @RLadiesGlobal - (https://twitter.com/RLadiesGlobal).

\",\"founded_date\":1555431399000,\"gender_female\":0.49074074625968933,\"gender_male\":0.4166666567325592,\"gender_other\":0,\"gender_unknown\":0.09259258955717087,\"id\":31653468,\"last_event\":1601413200000,\"lat\":-36.83000183105469,\"lon\":-73.05000305175781,\"member_count\":497,\"name\":\"R-Ladies - Concepción\",\"past_events\":27,\"past_rsvps\":731,\"pro_join_date\":1555431507127,\"repeat_rsvpers\":134,\"rsvps_per_event\":27.074073791503906,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":17635,\"name\":\"Business - Strategy\",\"urlkey\":\"business-strategy\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":61056,\"name\":\"Science and - Technology\",\"urlkey\":\"science-and-technology\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"}],\"upcoming_events\":0,\"urlname\":\"rladies-concepcion\",\"status\":\"Active\",\"cursor\":\"[['1555431507127'],['31653468']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":277160834,\"name\":\"Camila - Molina Fernández\",\"permission\":\"coorganizer\"},{\"member_id\":277574073,\"name\":\"Luisa - Reyes\",\"permission\":\"coorganizer\"},{\"member_id\":279188805,\"name\":\"Macarena - Valenzuela Beltrán\",\"permission\":\"coorganizer\"},{\"member_id\":279207769,\"name\":\"Natalia - Riquelme Sanhueza\",\"permission\":\"coorganizer\"},{\"member_id\":288746772,\"name\":\"Isidora - Castillo\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.799999237060547,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lavras\",\"country\":\"Brazil\",\"description\":\"

R-Ladies - Lavras welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
This - is a local chapter of R-Ladies Global, an organisation that promotes gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies event you grant the - community organizers full rights to use the images resulting from the photography/video - filming/media, and any reproductions or adaptations of the images for publicity, - fundraising or other purposes to help achieve the community’s aims. This might - include (but is not limited to), the right to use them in their printed and - online publicity, social media, press releases and funding applications. If - you do not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1555430880000,\"gender_female\":0.800000011920929,\"gender_male\":0.13333334028720856,\"gender_other\":0,\"gender_unknown\":0.06666667014360428,\"id\":31653398,\"last_event\":1592258400000,\"lat\":-21.25,\"lon\":-45.0099983215332,\"member_count\":45,\"name\":\"R-Ladies - Lavras\",\"past_events\":2,\"past_rsvps\":9,\"pro_join_date\":1555431042917,\"repeat_rsvpers\":0,\"rsvps_per_event\":4.5,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":731792,\"name\":\"learn coding\",\"urlkey\":\"learn-coding\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lavras\",\"status\":\"Active\",\"cursor\":\"[['1555431042917'],['31653398']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":279200607,\"name\":\"Paula - Santos\",\"permission\":\"coorganizer\"},{\"member_id\":279375296,\"name\":\"KELLY - PEREIRA DE LIMA\",\"permission\":\"coorganizer\"},{\"member_id\":311167795,\"name\":\"R-Ladies - Lavras\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.25830078125,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Belo - Horizonte\",\"country\":\"Brazil\",\"description\":\"

A comunidade R-Ladies - é uma organização sem fins lucrativos que promove a diversidade de gênero - na comunidade da linguagem computacional estatística R. Contamos atualmente - com pouco mais de 130 grupos espalhados em 44 países, com aproximadamente - mais de 35000 pessoas participando ativamente da comunidade. Veja mais aqui: - R-Ladies Global

\\n

Nosso - principal objetivo é promover a linguagem computacional estatística R compartilhando - conhecimento, e assim, unir e encontrar mulheres que sejam entusiastas da - programação e da tecnologia, independente do nível de conhecimento, ou seja, - não é necessário ser um expert para participar do grupo, nossos eventos são - públicos e com desenvolvedoras de todos níveis, desde as que estão começando - até as mais experimentes. Também tentamos promover no nosso evento, palestras - referentes ao empreendedorismo e diversidade para que as mulheres do ambiente - sintam-se engajadas a empreender e a correrem atrás de cargos superiores.

\\n

Nosso - principal público-alvo são as pessoas que se identificam com o gênero feminino, - portanto, mulheres cis, mulheres trans, bem como pessoas não-binárias e queer. -

\\n

Não toleramos nenhuma forma de assédio aos participantes.

\\n

As - organizadoras têm a responsabilidade, compromisso e direito de tomar as ações - oportunas para priorizar os interesses da comunidade, conforme nosso código - de conduta: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#portuguese -

\\n


\\n


\",\"founded_date\":1524247445000,\"gender_female\":0.9375,\"gender_male\":0.032258063554763794,\"gender_other\":0.004032257944345474,\"gender_unknown\":0.026209676638245583,\"id\":28226484,\"last_event\":1605956400000,\"lat\":-19.920000076293945,\"lon\":-43.939998626708984,\"member_count\":824,\"name\":\"R-Ladies - Belo Horizonte\",\"past_events\":16,\"past_rsvps\":304,\"pro_join_date\":1555344517711,\"repeat_rsvpers\":63,\"rsvps_per_event\":19,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":10454,\"name\":\"Language & - Culture\",\"urlkey\":\"language\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29526,\"name\":\"Collaboration between - Creative Minds\",\"urlkey\":\"collaboration-between-creative-minds\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":36229,\"name\":\"Creativity\",\"urlkey\":\"creative\"},{\"id\":58162,\"name\":\"NoSQL\",\"urlkey\":\"nosql\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-belo-horizonte\",\"status\":\"Active\",\"cursor\":\"[['1555344517711'],['28226484']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":252808037,\"name\":\"Layla - Comparin\",\"permission\":\"coorganizer\"},{\"member_id\":252922040,\"name\":\"Numiá - Freitas Gomes\",\"permission\":\"coorganizer\"},{\"member_id\":253135636,\"name\":\"Ana - Carolina Fernandes Dias \",\"permission\":\"coorganizer\"},{\"member_id\":315721129,\"name\":\"RLadies - Belo Horizonte\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.96149826049805,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Montevideo\",\"country\":\"Uruguay\",\"description\":\"

R-Ladies - Montevideo es parte de una organización mundial para promover la diversidad - de género en la comunidad R (lenguaje de programación). Nuestro objetivo es - generar un espacio cómodo y amigable para intercambiar ideas, conocimientos - y hacer R más popular y accesible, especialmente entre las mujeres que viven - en Montevideo.

\\n

Si bien se dará prioridad a la participación femenina, - cualquier persona con interés en R es bienvenida. Los eventos serán siempre - gratuitos porque R-Ladies es una iniciativa social. El - Código de Conducta Global de R-Ladies se puede encontrar acá.

\\n

Sumate - a este Meetup para enterarte de los próximos eventos, te esperamos!

\\n

Nos - encontrás en:

\\n

•  Twitter: @RLadiesMvd y @RLadiesGlobal (R-Ladies - de todo el mundo)

\\n

•  GitHub

\\n

•  escribiendo - a montevideo@rladies.org.

\\n

Siempre estamos buscando disertantes y - patrocinadores, así que si estás interesada no dudes en ponerte en contacto - con nosotras!

\\n

Para más detalles sobre la iniciativa R-Ladies - Global visitá rladies.org.

\",\"founded_date\":1496402205000,\"gender_female\":0.7911392450332642,\"gender_male\":0.16455696523189545,\"gender_other\":0.012658228166401386,\"gender_unknown\":0.03164556995034218,\"id\":24222373,\"last_event\":1607549400000,\"lat\":-34.869998931884766,\"lon\":-56.16999816894531,\"member_count\":375,\"name\":\"R-Ladies - Montevideo\",\"past_events\":14,\"past_rsvps\":483,\"pro_join_date\":1555344253610,\"repeat_rsvpers\":91,\"rsvps_per_event\":34.5,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15280,\"name\":\"Statistical Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":26273,\"name\":\"Professional Women\",\"urlkey\":\"professional-women\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-montevideo\",\"status\":\"Active\",\"cursor\":\"[['1555344253610'],['24222373']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":216297311,\"name\":\"Daniela - Vázquez\",\"permission\":\"coorganizer\"},{\"member_id\":217511156,\"name\":\"Natalia - da Silva\",\"permission\":\"coorganizer\"},{\"member_id\":224198628,\"name\":\"R-Ladies - Munich\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.94960021972656,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":6,\"name\":\"education/learning\",\"shortname\":\"education-learning\"}],\"city\":\"Rio - de Janeiro\",\"country\":\"Brazil\",\"description\":\"

R-Ladies Rio de Janeiro - integra orgulhosamente a organização R-Ladies Global.

\\n

Nosso principal - objetivo é compartilhar conhecimento e experiências relacionadas à linguagem - computacional R e promover a diversidade de gênero na comunidade de usuáries - e desenvolvedores R.

\\n

Toda e qualquer pessoa com interesse na - linguagem é bem-vinda, independente do nível de conhecimento, em especial - e principalmente quem se identifica com o gênero feminino e minorias de gênero - (mulheres cis e trans, homens trans, queer, pessoas não binárias). 

\\n

Na - comunidade R-Ladies, as posições de responsabilidade, como organizadora, palestrante - ou mentora, são exclusivamente para pessoas que se identifiquem com o gênero - feminino ou minorias de gênero.
A assistência às reuniões está aberta - a todes, porém damos prioridade a estes grupos.

Homens cis interessados - em assistir as palestras são bem-vindos como acompanhantes de alguém que pertença - a estes grupos. Se você se identifica como homem cis, por favor peça a alguém - que se identifica como mulher ou minoria de gênero para participar e convidar - você como acompanhante. Em caso de dúvida, entre em contato conosco. 

\\n

Buscamos - proporcionar uma experiência livre de assédio para todes. Não toleramos nenhuma - forma de assédio a participantes. As organizadoras têm a responsabilidade, - compromisso e direito de tomar as ações oportunas para priorizar os interesses - da comunidade, conforme os códigos de conduta abaixo:

\\n

R-Ladies: - https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#portuguese

\\n

R-Consortium: - https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct

\",\"founded_date\":1488208840000,\"gender_female\":0.8257575631141663,\"gender_male\":0.14393939077854156,\"gender_other\":0.0025252525229007006,\"gender_unknown\":0.02777777798473835,\"id\":22664282,\"last_event\":1601499600000,\"lat\":-22.90999984741211,\"lon\":-43.20000076293945,\"member_count\":601,\"name\":\"R-Ladies - Rio de Janeiro\",\"past_events\":11,\"past_rsvps\":442,\"pro_join_date\":1555344200496,\"repeat_rsvpers\":93,\"rsvps_per_event\":40.181819915771484,\"state\":\"\",\"topics\":[{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-rio\",\"status\":\"Active\",\"cursor\":\"[['1555344200496'],['22664282']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":185380529,\"name\":\"Erika - Bueno\",\"permission\":\"coorganizer\"},{\"member_id\":227730964,\"name\":\"Pri - Hoh\",\"permission\":\"coorganizer\"},{\"member_id\":228742504,\"name\":\"Clemencia - Mora\",\"permission\":\"coorganizer\"},{\"member_id\":232361026,\"name\":\"Andrea - Sánchez Tapia\",\"permission\":\"coorganizer\"},{\"member_id\":255257003,\"name\":\"Beatriz - Pinna\",\"permission\":\"coorganizer\"},{\"member_id\":274644779,\"name\":\"Sara - Mortara\",\"permission\":\"coorganizer\"},{\"member_id\":295006002,\"name\":\"Noele - Ribeiro\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.456600189208984,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Buenos - Aires\",\"country\":\"Argentina\",\"description\":\"

R-Ladies Buenos - Aires es parte de una organización mundial para promover la Diversidad de - Género en la comunidad R.

\\n

Nuestra meta es crear una atmósfera - amigable para personas interesadas en programar en R en Buenos Aires que se - identifiquen con géneros menos representados en la comunidad de R (que incluye - pero no se limita a mujeres cis/trans, hombres trans, personas no binarias, - género fluído o agénero). No importa si nunca usaste R o si tenés R como herramienta - principal de trabajo. El objetivo es promover R, intercambiar conocimiento - y crear una red de contactos a nivel local y global.

\\n

Esta es una - iniciativa social. Todos los eventos serán gratuitos.

\\n

¡Sumate a este - Meetup para enterarte de los próximos eventos! ¡Te esperamos!

\\n

Nos - encontrás en GitHub, Twitter - y Facebook.

\\n

Mail: - buenosaires[at]rladies[dot]org

\\n

Para más detalles sobre la iniciativa - R-Ladies Global visitá rladies.org.

\\n

Política - y Código de Conducta de R-Ladies:

\\n

En la comunidad R-Ladies los - puestos de responsabilidad como organizador, orador o mentor son exclusivamente - para personas que se identifican con el género femenino o con géneros disidentes. - Aún así, la asistencia a las reuniones está abierta a personas de todos los - géneros.

\\n

Siempre se dará prioridad a la participación de minorías - de género en la comunidad ya que este grupo nació con la intención de animar - y apoyar a las personas cuyo género está subrepresentado en los trabajos STEM - (Science, Technology, Engineering & Math) y en la comunidad de R. Les - organizadores de R-Ladies tienen la responsabilidad y el derecho de tomar - las acciones oportunas para salvaguardar los intereses de la comunidad.

\\n

Código - de conducta completo. También adherimos al código - de conducta del R Consortium y del resto de la Comunidad R.

\",\"founded_date\":1483482058000,\"gender_female\":0.8612805008888245,\"gender_male\":0.09451219439506531,\"gender_other\":0.013719512149691582,\"gender_unknown\":0.030487805604934692,\"id\":21760043,\"last_event\":1607374800000,\"lat\":-34.61000061035156,\"lon\":-58.369998931884766,\"member_count\":1263,\"name\":\"R-Ladies - Buenos Aires\",\"past_events\":31,\"past_rsvps\":1707,\"pro_join_date\":1555344153781,\"repeat_rsvpers\":321,\"rsvps_per_event\":55.064517974853516,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":47731,\"name\":\"Women - Science Technology Engineering & Mathematics\",\"urlkey\":\"women-science-technology-engineering-mathematics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-buenos-aires\",\"status\":\"Active\",\"cursor\":\"[['1555344153781'],['21760043']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":45013102,\"name\":\"Priscilla - Minotti\",\"permission\":\"coorganizer\"},{\"member_id\":78973362,\"name\":\"Florencia - D'Andrea\",\"permission\":\"coorganizer\"},{\"member_id\":224378137,\"name\":\"Monica\",\"permission\":\"coorganizer\"},{\"member_id\":227923622,\"name\":\"Pao - Corrales\",\"permission\":\"coorganizer\"},{\"member_id\":246900533,\"name\":\"Jimena - Saucedo\",\"permission\":\"coorganizer\"},{\"member_id\":254357736,\"name\":\"Andrea - Gomez Vargas\",\"permission\":\"coorganizer\"},{\"member_id\":258277389,\"name\":\"María - Nanton\",\"permission\":\"coorganizer\"}]},{\"average_age\":30,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":39,\"name\":\"[TRACK]Classes - & workshops\",\"shortname\":\"classes\"}],\"city\":\"Florianópolis\",\"country\":\"Brazil\",\"description\":\"

R-Ladies - Floripa dá as boas-vindas aos membros de todos os níveis de proficiência em - R, seja você aspirante ou uma programadora experiente interessada em orientação, - networking e qualificação profissional. Nossa comunidade é projetada para - desenvolver as habilidades e conhecimentos de nossos membros por meio de aprendizado - e compartilhamento social e colaborativo. Apoiar o acesso das identidades - minoritárias às habilidades e carreiras do Movimento Software Livre e contribuir - para a comunidade global de R! A comunidade R-Ladies Floripa existe para promover - a diversidade de gênero na comunidade R mundial. Nosso principal - público-alvo são as pessoas que se identificam com o gênero - feminino, portanto, mulheres cis, mulheres trans, bem como pessoas queer. - Nossa prioridade é proporcionar um espaço comunitário seguro - para qualquer pessoa que se identifique como um gênero minoritário que esteja - interessado e/ou trabalhando com R. Como princípio fundador, não há custo - ou encargo para participar de qualquer uma de nossas comunidades R-Ladies - em todo o mundo. 

\\n

Use nossas hashtags #RLadiesFloripa - #RLadiesGlobal #RLadies

\\n

Quer fazer uma talk? Acesse: https://pt.surveymonkey.com/r/SMJBJQD

\\n

Sua - empresa ou instituição quer apoiar a comunidade? Acesse: https://pt.surveymonkey.com/r/SPZTRL6

\\n

-

\\n

Veja sobre dados R-Ladies Global (https://gqueiroz.shinyapps.io/rshinylady/) -

\\n

Fazemos parte do grupo Global R-Ladies. Você pode acessar - apresentações, roteiros e projetos na conta do Github e seguir o Twitter e - Instagram para se manter atualizado sobre as notícias da R-Ladies!  -

\\n

Website: https://www.rladies.org 

\\n

Intagram: @rladies.floripa

\\n

Twitter: @RLadiesFloripa  -

\\n

Twitter: @RLadiesGlobal 

\\n

Github: - https://github.com/rladies

\\n

-

\\n


P.S. Políticas Comunitárias e Código de Conduta:

\\n

As - funções de liderança, orientação e ensino dentro desta comunidade são realizadas - exclusivamente por gêneros minoritários (os palestrantes majoritários de gênero - podem ser permitidos/convidados como convidados pontuais em circunstâncias - excepcionais, a critério da equipe de liderança). Devido à demanda inesperada, - abrimos uma participação de aprendizado para todos os gêneros, dependendo - da avaliação inicial e contínua da equipe de liderança. No entanto, a prioridade - declarada das comunidades R-Ladies é o desenvolvimento e apoio especificamente - daqueles que se identificam como um gênero minoritário, e nós, portanto, nos - reservamos o direito de guardar este interesse através de quaisquer medidas - que a equipe de liderança julgar apropriadas. Qualquer pessoa envolvida com - R-Ladies deve o respeito a todos integrantes, ao mandato desta comunidade - e a boa vontade que fundam as R-Ladies. Ou enfrentar a expulsão/penalidade - de qualquer forma, a critério da equipe de liderança.
Diretrizes completas - da comunidade são encontradas aqui: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#portuguese -

\\n

Código de conduta - R-Consortium: https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct -

\\n


\\n

Fotos, filmes e todas as outras mídias/gravações:

\\n

Fotos, - filmes e todos os outros meios de comunicação / gravações: fotografias e/ou - vídeo ou outros meios de comunicação serão tomadas em eventos realizados por - esta comunidade. Ao participar de um evento R-Ladies, você concede aos organizadores - da comunidade plenos direitos para usar as imagens resultantes da filmagem/mídia - de fotografia/vídeo e quaisquer reproduções ou adaptações das imagens para - publicidade, captação de recursos ou outros propósitos para ajudar a alcançar - os objetivos da comunidade. Isso pode incluir (mas não se limita a) o direito - de usá-los em sua publicidade impressa e on-line, mídia social, comunicados - à imprensa e aplicativos de financiamento. Se você não deseja ser gravado - nessas mídias, por favor, informe um organizador da comunidade.

\\n

-

\\n

Para entrar no grupo de Telegram e/ou WhatsApp entre em contato - com organizadores.

\",\"founded_date\":1554640878000,\"gender_female\":0.7872340679168701,\"gender_male\":0.0904255285859108,\"gender_other\":0.005319148767739534,\"gender_unknown\":0.11702127754688263,\"id\":31577218,\"last_event\":1582147800000,\"lat\":-27.600000381469727,\"lon\":-48.540000915527344,\"member_count\":445,\"name\":\"R-Ladies - Floripa\",\"past_events\":8,\"past_rsvps\":261,\"pro_join_date\":1554641101733,\"repeat_rsvpers\":44,\"rsvps_per_event\":32.625,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":17635,\"name\":\"Business - Strategy\",\"urlkey\":\"business-strategy\"},{\"id\":19882,\"name\":\"Entrepreneurship\",\"urlkey\":\"entrepreneurship\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-florianopolis\",\"status\":\"Active\",\"cursor\":\"[['1554641101733'],['31577218']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":274795388,\"name\":\"Glenda - Mello\",\"permission\":\"coorganizer\"},{\"member_id\":274943627,\"name\":\"Camila - Weber\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.618999481201172,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":39,\"name\":\"[TRACK]Classes - & workshops\",\"shortname\":\"classes\"}],\"city\":\"Bogor\",\"country\":\"Indonesia\",\"description\":\"

R-Ladies - Bogor welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!
A local - chapter of R-Ladies Global, R-Ladies Bogor exists to promote gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Bogor is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Bogor event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1554639482000,\"gender_female\":0.4367816150188446,\"gender_male\":0.517241358757019,\"gender_other\":0,\"gender_unknown\":0.04597701132297516,\"id\":31577107,\"last_event\":1582954200000,\"lat\":-6.579999923706055,\"lon\":106.79000091552734,\"member_count\":277,\"name\":\"R-Ladies - Bogor\",\"past_events\":8,\"past_rsvps\":196,\"pro_join_date\":1554639574327,\"repeat_rsvpers\":37,\"rsvps_per_event\":24.5,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-bogor\",\"status\":\"Active\",\"cursor\":\"[['1554639574327'],['31577107']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":226353954,\"name\":\"Sabhrina - Gita\",\"permission\":\"coorganizer\"},{\"member_id\":278640190,\"name\":\"Sheherazade\",\"permission\":\"coorganizer\"},{\"member_id\":278786342,\"name\":\"Ulfah - Mardhiah\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.387100219726562,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Bogotá\",\"country\":\"Colombia\",\"description\":\"

promote - and encourage the active participation of women
with this type of programming - languages, like R Language.

\",\"founded_date\":1506119683000,\"gender_female\":0.5954545736312866,\"gender_male\":0.33636364340782166,\"gender_other\":0.00909090880304575,\"gender_unknown\":0.059090908616781235,\"id\":26017877,\"last_event\":1551916800000,\"lat\":4.630000114440918,\"lon\":-74.08999633789062,\"member_count\":276,\"name\":\"R-Ladies - Bogotá\",\"past_events\":6,\"past_rsvps\":28,\"pro_join_date\":1553938072579,\"repeat_rsvpers\":3,\"rsvps_per_event\":4.666666507720947,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"}],\"upcoming_events\":0,\"urlname\":\"rladies-bogota\",\"status\":\"Active\",\"cursor\":\"[['1553938072579'],['26017877']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":42308302,\"name\":\"@jpmarindiaz\",\"permission\":\"event_organizer\"}]},{\"average_age\":35.1968994140625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Saint - Louis\",\"country\":\"USA\",\"description\":\"

The first R-Ladies STL Meetup - is now in the history books! Thanks to everyone who attended for making it - a great night. We were happy to begin to build our local R-Ladies community - and hope that you enjoyed the event.

\\n


Thanks especially to our - excellent presenters: Bobbi Carothers, Shelly Cooper, Alexandra Morshed, Rebecca - Willison, Lorinette Worth, and Angelique Zeringue.

\\n


We collected - some information from attendees on what would be useful, convenient, and fun - for the R-Ladies of St. Louis. If you attended but didn't fill out the survey, - or if you were not able to attend but are interested in R-Ladies, we would - still love your feedback. We will leave the survey open for another week and - hope you can take a few minutes to fill it out (it's mobile phone friendly!):

\\n

-
https://goo.gl/WcZevx

\\n

-
We plan to hold our next event in early-mid November and, based on the - feedback we've received so far, will likely make it a hands-on workshop at - a location with better parking options!

\\n


Thanks again! Hope you - see you at the next one.

\\n


youRs,Jenine & Chelsea

\",\"founded_date\":1503944681000,\"gender_female\":0.777429461479187,\"gender_male\":0.13166144490242004,\"gender_other\":0.009404388256371021,\"gender_unknown\":0.0815047025680542,\"id\":25681976,\"last_event\":1607558400000,\"lat\":38.630001068115234,\"lon\":-90.19000244140625,\"member_count\":711,\"name\":\"R-Ladies - St. Louis\",\"next_event\":1611100800000,\"past_events\":19,\"past_rsvps\":966,\"pro_join_date\":1553938020861,\"repeat_rsvpers\":185,\"rsvps_per_event\":50.842105865478516,\"state\":\"MO\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":98380,\"name\":\"R Project - for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"}],\"upcoming_events\":2,\"urlname\":\"rladies-st-louis\",\"status\":\"Active\",\"cursor\":\"[['1553938020861'],['25681976']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":235096101,\"name\":\"RLadiesSTL\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.43429946899414,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Taipei\",\"country\":\"Taiwan\",\"description\":\"

Hi - R-Ladies,

\\n

經過兩年的學習與歷練,R-Ladies Taipei 已經長大茁壯,可以獨立 meetup 頁面囉! 從 2016 - 年 10 月起,相關活動的報名都會在這個頁面。我們仍在搬家中,如果你想了解以前的活動,請參考以下網址:http://www.meetup.com/Taiwan-R/。當然,各種月會、讀書會、技術新知等訊息,我們照舊同步發佈在 - Facebook 社團上喔。

\\n

• 官方網站 (附有投影片連結): https://rladiestaipei.github.io/R-Ladies-Taipei/

\\n

• - Meetup

\\n
\\n

• after 2016.10: https://www.meetup.com/R-Ladies-Taipei

- \\n

• before 2016.10: http://www.meetup.com/Taiwan-R/

- \\n
\\n

• Facebook 社團: https://www.facebook.com/groups/twrladies/

\\n

• - 認識我們過去的活動:goo.gl/HbHNeP

\\n

• - 2017 Go, Kaggle 大賽:http://rladiestaipei-kaggle.strikingly.com/

\\n

另外,因為最近我們發現實體聚會中,經常出現非女性的會眾,而且比例比我們預料的還要高許多。因此,我們希望提出 - R-Ladies Taipei Code of Conduct,呼籲大家一起遵守,維繫良性的社群生態。

\\n

Code of Conduct - 基本上這是一個女性學習社群,因此若你不是女性,但出現在我們的實體聚會的話,你很可能被要求以下行為:

\\n

• 發言的機會請優先留給女生 -

\\n

• 座位請優先保留給女生

\\n

• 必須對 R-Ladies Taipei 有貢獻,例如:提供高品質的 3分鐘技術閃電秀

\\n

-

\\n

最後,祝大家學習 R 的過程中都充滿喜悅 :)

\\n

R-Ladies Taipei Officer

\",\"founded_date\":1477246235000,\"gender_female\":0.710252583026886,\"gender_male\":0.21396730840206146,\"gender_other\":0.008172362111508846,\"gender_unknown\":0.06760772317647934,\"id\":20871369,\"last_event\":1578309600000,\"lat\":25.020000457763672,\"lon\":121.44999694824219,\"member_count\":1671,\"name\":\"R-Ladies - Taipei\",\"past_events\":45,\"past_rsvps\":1866,\"pro_join_date\":1553937819818,\"repeat_rsvpers\":329,\"rsvps_per_event\":41.46666717529297,\"state\":\"\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1452302,\"name\":\"Statistical - Modeling\",\"urlkey\":\"statistical-modeling\"}],\"upcoming_events\":0,\"urlname\":\"rladies-taipei\",\"status\":\"Active\",\"cursor\":\"[['1553937819818'],['20871369']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":77792962,\"name\":\"Li - Cheng En\",\"permission\":\"coorganizer\"},{\"member_id\":87829312,\"name\":\"Huai-Wen - Mia Chang\",\"permission\":\"coorganizer\"},{\"member_id\":117729762,\"name\":\"Ju-Yin - Tang\",\"permission\":\"coorganizer\"},{\"member_id\":165296472,\"name\":\"Rachael - Pai\",\"permission\":\"coorganizer\"},{\"member_id\":171295762,\"name\":\"Mindy - Huang\",\"permission\":\"coorganizer\"},{\"member_id\":185891132,\"name\":\"Dana - Huang\",\"permission\":\"coorganizer\"},{\"member_id\":186518282,\"name\":\"Ning/Ivy - Chen\",\"permission\":\"coorganizer\"},{\"member_id\":186518724,\"name\":\"Kristen - Chan\",\"permission\":\"coorganizer\"},{\"member_id\":195941380,\"name\":\"Lucy - Chen\",\"permission\":\"coorganizer\"},{\"member_id\":203934773,\"name\":\"Angie\",\"permission\":\"coorganizer\"},{\"member_id\":215480790,\"name\":\"Chiayi - Yen\",\"permission\":\"coorganizer\"},{\"member_id\":222952530,\"name\":\"Pei - Lee\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.920501708984375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Minneapolis\",\"country\":\"USA\",\"description\":\"

R - Ladies is a worldwide organization whose mission is to promote gender diversity - in the R community.

\\n

The R community suffers from an underrepresentation - of women* in every area and area of participation, whether as leaders, package - developers, conference speakers, conference participants, or users. R Ladies' - mission is to achieve proportionate gender representation by encouraging, - empowering, educating, and inspiring the minorities currently underrepresented - in the R community.

\\n

*All references to \\\"women\\\" or \\\"female\\\" - are fully inclusive and intersectional. We whole-heartedly welcome trans women, - genderqueer women, and non-binary folks of all races and ethnicities. Men - who support the mission are welcome to attend meetings as a guest of a member. - We do not currently accept men as new members of the group in order to maintain - a safe space atmosphere.

\\n

------------

\\n

R-Ladies is dedicated - to providing a harassment-free experience for everyone. We do not tolerate - harassment of participants in any form. We follow the R-Ladies - International Code of Conduct.

\",\"founded_date\":1427928185000,\"gender_female\":0.8669527769088745,\"gender_male\":0.06437768042087555,\"gender_other\":0.017167381942272186,\"gender_unknown\":0.05150214582681656,\"id\":18529799,\"last_event\":1603238400000,\"lat\":44.939998626708984,\"lon\":-93.22000122070312,\"member_count\":394,\"name\":\"R-Ladies - Twin Cities\",\"next_event\":1612310400000,\"past_events\":42,\"past_rsvps\":516,\"pro_join_date\":1553937763380,\"repeat_rsvpers\":97,\"rsvps_per_event\":12.285714149475098,\"state\":\"MN\",\"topics\":[{\"id\":10232,\"name\":\"Women's - Social\",\"urlkey\":\"women\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":47731,\"name\":\"Women - Science Technology Engineering & Mathematics\",\"urlkey\":\"women-science-technology-engineering-mathematics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":280601,\"name\":\"Women - in Computing\",\"urlkey\":\"women-in-computing\"}],\"upcoming_events\":3,\"urlname\":\"rladies-tc\",\"status\":\"Active\",\"cursor\":\"[['1553937763380'],['18529799']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":185410714,\"name\":\"Christina - Knudson\",\"permission\":\"coorganizer\"},{\"member_id\":186386384,\"name\":\"Lindsey - Dietz\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.10200119018555,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Querétaro\",\"country\":\"Mexico\",\"description\":\"

R-Ladies - Queretaro welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Queretaro exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Queretaro is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Queretaro event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1553934839000,\"gender_female\":0.6706587076187134,\"gender_male\":0.20359280705451965,\"gender_other\":0,\"gender_unknown\":0.12574850022792816,\"id\":31514006,\"last_event\":1607641200000,\"lat\":20.59000015258789,\"lon\":-100.4000015258789,\"member_count\":521,\"name\":\"R-Ladies - Queretaro\",\"past_events\":12,\"past_rsvps\":481,\"pro_join_date\":1553935191897,\"repeat_rsvpers\":86,\"rsvps_per_event\":40.08333206176758,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":16216,\"name\":\"Mobile - Technology\",\"urlkey\":\"mobile-technology\"},{\"id\":16325,\"name\":\"Software - Engineering\",\"urlkey\":\"software-engineering\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-queretaro\",\"status\":\"Active\",\"cursor\":\"[['1553935191897'],['31514006']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":247471334,\"name\":\"Azalea - Reyes Aguilar\",\"permission\":\"coorganizer\"},{\"member_id\":269183675,\"name\":\"Driselda - Sánchez Aguirre\",\"permission\":\"coorganizer\"},{\"member_id\":278155616,\"name\":\"Ana - Betty Villaseñor Altamirano\",\"permission\":\"coorganizer\"}]},{\"average_age\":39.5,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Nelson\",\"country\":\"New - Zealand\",\"description\":\"

R-Ladies Nelson welcomes members of all R proficiency - levels, whether you're a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!
A local chapter of R-Ladies Global, R-Ladies - Nelson, exists to promote gender diversity in the R community worldwide. We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. As a founding principle, there is no - cost or charge to participate in any of our R-Ladies communities around the - world.
We are part of Global R-Ladies group. You can access our presentations, - R scripts, and Projects on our Github account and follow us on twitter to - stay up to date about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

P.S. - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Nelson is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

\\n

P.P.S. - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Nelson event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1553330543000,\"gender_female\":0.6666666865348816,\"gender_male\":0.1666666716337204,\"gender_other\":0,\"gender_unknown\":0.1666666716337204,\"id\":31457211,\"lat\":-41.290000915527344,\"lon\":173.24000549316406,\"member_count\":13,\"name\":\"R-Ladies - Nelson\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1553330652466,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-nelson\",\"status\":\"Active\",\"cursor\":\"[['1553330652466'],['31457211']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":205684471,\"name\":\"Dana - Briscoe\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.08700180053711,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Den - Bosch\",\"country\":\"Netherlands\",\"description\":\"

R-Ladies Den Bosch - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!

\\n
\\n

R-Ladies - Den Bosch is a local chapter of R-Ladies Global. We aim to achieve proportionate - representation by encouraging, inspiring, and empowering the minorities currently - underrepresented in the R community. We are pro-actively inclusive of - queer, trans, and all minority identities, with additional sensitivity to - intersectional identities. Our priority is to provide a safe community space - for anyone identifying as a minority gender who is interested in and/or working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.
We are part of Global - R-Ladies group. You can access our presentations, R scripts, and Projects - on our Github account and follow us on twitter to stay up to date about R-Ladies - news!

\\n


\\n

R-Ladies Den Bosch links
- Website: https://rladiesdenbosch.netlify.com/ -
- Twitter: @RLadiesDenBosch (https://twitter.com/RLadiesDenBosch) -
- Github: https://github.com/RLadiesDenBosch

\\n

-

\\n

R-Ladies global links
Website: - https://www.rladies.org -
- Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
- - Github: https://github.com/rladies

\\n

-

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Den Bosch is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Den Bosch event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1553328259000,\"gender_female\":0.75,\"gender_male\":0.1875,\"gender_other\":0,\"gender_unknown\":0.0625,\"id\":31457077,\"last_event\":1606237200000,\"lat\":51.70000076293945,\"lon\":5.300000190734863,\"member_count\":110,\"name\":\"R-Ladies - Den Bosch\",\"past_events\":6,\"past_rsvps\":97,\"pro_join_date\":1553328341252,\"repeat_rsvpers\":20,\"rsvps_per_event\":16.16666603088379,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":659,\"name\":\"Web Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"}],\"upcoming_events\":0,\"urlname\":\"rladies-den-bosch\",\"status\":\"Active\",\"cursor\":\"[['1553328341252'],['31457077']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":191526600,\"name\":\"Veerle - van Son\",\"permission\":\"coorganizer\"},{\"member_id\":236991603,\"name\":\"Luana - S\",\"permission\":\"coorganizer\"},{\"member_id\":247302742,\"name\":\"Martine\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.81129837036133,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Bilbao\",\"country\":\"Spain\",\"description\":\"

R-Ladies - Bilbao martxan da! Talde honetan R-ko programazioan diharduen jendea aurkituko - duzu: euren egunerokotasunean lan tresna moduan R erabiltzen dutenetatik hasi, - eta R-n programatzen ikasi nahi duten hasiberrietaraino. Zatoz gurekin!

\\n

R-Ladies - Global genero aniztasuna sustatu asmoz sortutako komunitate internazional - bat da. R-Ladies Bilbao talde handi honen parte den atal bat da. Gure helburua - elkarri babesa eman eta R-ko komunitatearen barruan hazten laguntzea da. Gainera, - R-Ladies Global proiektua, R Consortium-Linux Foundation-ek finantziatzen - du.

\\n

Norbaitek tailer edota hitzaldiren bat eman - nahiko balu R-Ladiesen saioetakoren batean, ondoko helbide elektronikora bidal - diezaguke mezu bat: 

\\n

bilbao@rladies.org

\\n

-

\\n

Politika eta portaera kodea:

\\n

R-Ladies - komunitateko antolakuntza eta hizlari postuak genero femeninoarekin edo genero - minoritarioekin (cis eta trans emakumeak, trans gizonak, ez-binarioak, ageneroak, - kasu) identifikatzen diren pertsonek bakarrik beteko dituzte. Hala ere, pertsona - orori irekia da hitzaldi eta jardueretako parte-hartzea. R-Ladies jazarpenik - gabeko eremuak sortzeaz arduratzen da, ez dugu onartuko parte-hartzaileenganako - inongo jazarpenik. Hori dela eta, R-Ladies Bilbao taldeak erantzukizuna eta - eskubidea du, komunitatearen interesa babesteko hartu beharreko neurriak hartzeko, - jokabide-kodearen arabera.

\\n

R-Ladies: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish

\\nR-Consortium: - https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct\\n
\\n

-----------------------------------------------------------------------------------------------------------------------------------------------------

\\n

- ¡R-Ladies Bilbao está en marcha! Aquí encontrarás compañeras en el mundo - de la programación en R, desde profesionales que tienen R como herramienta - principal de trabajo hasta aficionadas que quieren aprender y seguir mejorando. - ¡Unete, te esperamos!

\\n

R-Ladies Bilbao es una rama local parte - de R-Ladies Global, una comunidad internacional que nace para promover la - diversidad de género en la comunidad de R. El objetivo que buscamos es apoyarnos - y ayudarnos a crecer dentro de la comunidad. Además R-Ladies Global es un - proyecto financiado por el R Consortium-Linux Foundation.

\\n

Si - alguien está interesada en impartir un taller o dar una charla en un evento - de R-Ladies escribid a:

\\n

bilbao@rladies.org

\\n


\\n

Políticas - y Código de Conducta:

\\n

En la comunidad R-Ladies los puestos - de responsabilidad como speakers y orientadoras son exclusivamente para personas - que se identifiquen con el género femenino o géneros minoritarios (incluyendo - pero no limitado a mujeres cis y trans, hombres trans, no binario, agénero), - pero la asistencia a las reuniones está abierta a todo el mundo. R-Ladies - se dedica a proporcionar una experiencia libre de acoso para tod@s. Desde - R-Ladies no toleraremos el acoso de l@s participantes en ninguna de las formas - posibles. Por ello, las organizadoras de R-Ladies Bilbao tienen la responsabilidad - y el derecho de tomar las acciones oportunas para salvaguardar los intereses - de la comunidad, conforme a los códigos de conducta.

\\n

R-Ladies: - https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish

\\n

R-Consortium: - https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct

\\n
\",\"founded_date\":1551245829000,\"gender_female\":0.5974025726318359,\"gender_male\":0.22077922523021698,\"gender_other\":0.012987012974917889,\"gender_unknown\":0.16883116960525513,\"id\":31264653,\"last_event\":1579021200000,\"lat\":43.25,\"lon\":-2.930000066757202,\"member_count\":183,\"name\":\"R-Ladies - Bilbao\",\"past_events\":4,\"past_rsvps\":90,\"pro_join_date\":1551245909848,\"repeat_rsvpers\":16,\"rsvps_per_event\":22.5,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-bilbao\",\"status\":\"Active\",\"cursor\":\"[['1551245909848'],['31264653']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":112950112,\"name\":\"Diana - Marcela Pérez\",\"permission\":\"coorganizer\"},{\"member_id\":259270490,\"name\":\"Ainhoa - Ochoa\",\"permission\":\"coorganizer\"},{\"member_id\":275352236,\"name\":\"Lore - Zumeta Olaskoaga\",\"permission\":\"coorganizer\"},{\"member_id\":275556987,\"name\":\"Amaia - Iparragirre\",\"permission\":\"coorganizer\"},{\"member_id\":275561921,\"name\":\"Amaia - Abanda\",\"permission\":\"coorganizer\"},{\"member_id\":280795525,\"name\":\"Coté - Rodríguez\",\"permission\":\"coorganizer\"},{\"member_id\":281043928,\"name\":\"Leire - Citores\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.64149856567383,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Newcastle - Upon Tyne\",\"country\":\"United Kingdom\",\"description\":\"

R-Ladies Newcastle - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community! 

\\n

-
A local chapter of R-Ladies Global, R-Ladies Newcastle exists to promote - gender diversity in the R community worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n

We - are part of Global R-Ladies group. You can access our presentations, R scripts, - and Projects on our Github account and follow us on twitter to stay up to - date about R-Ladies news!

\\n

Twitter: @RLadiesNCL - | Email: newcastle@rladies.org

\\n


\\n

Twitter:@RLadiesGlobal | Website: - https://www.rladies.org | 
-

\\n


\\n

Github: https://github.com/rladies

\\n

Sponsorship

\\n

R-Ladies - Newcastle has been sponsored by Sticker Mule, so we'll soon be handing out - some excellent stickers! Should you too have a need for custom stickers, visit - their website here: https://www.stickermule.com/uk/custom-stickers

\\n

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Newcastle is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Newcastle event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1551244850000,\"gender_female\":0.6571428775787354,\"gender_male\":0.10476190596818924,\"gender_other\":0.01904761977493763,\"gender_unknown\":0.21904762089252472,\"id\":31264590,\"last_event\":1585933200000,\"lat\":55,\"lon\":-1.600000023841858,\"member_count\":259,\"name\":\"R-Ladies - Newcastle\",\"past_events\":10,\"past_rsvps\":285,\"pro_join_date\":1551244933417,\"repeat_rsvpers\":69,\"rsvps_per_event\":28.5,\"state\":\"41\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural Language - Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1508677,\"name\":\"Deep Reinforcement - Learning\",\"urlkey\":\"deep-reinforcement-learning\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-newcastle\",\"status\":\"Active\",\"cursor\":\"[['1551244933417'],['31264590']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":275422469,\"name\":\"Jessica - Ward\",\"permission\":\"coorganizer\"},{\"member_id\":276061653,\"name\":\"Rike - Bolam\",\"permission\":\"coorganizer\"},{\"member_id\":276120132,\"name\":\"Aoife - O'Neill\",\"permission\":\"coorganizer\"},{\"member_id\":282191631,\"name\":\"Laura - Braunholtz\",\"permission\":\"event_organizer\"}]},{\"average_age\":33,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Frankfurt\",\"country\":\"Germany\",\"description\":\"

R-Ladies - Frankfurt welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Frankfurt exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Frankfurt is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

 
Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki


\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and - all other media/recordings: photographs and/or video/other media will be taken - at events held by this community. By taking part in an R-Ladies Frankfurt - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1551244182000,\"gender_female\":0.7446808218955994,\"gender_male\":0.042553190141916275,\"gender_other\":0.021276595070958138,\"gender_unknown\":0.19148936867713928,\"id\":31264536,\"last_event\":1582218000000,\"lat\":50.119998931884766,\"lon\":8.680000305175781,\"member_count\":99,\"name\":\"R-Ladies - Frankfurt\",\"past_events\":9,\"past_rsvps\":84,\"pro_join_date\":1551244344681,\"repeat_rsvpers\":16,\"rsvps_per_event\":9.333333015441895,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural Language - Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1512213,\"name\":\"Data Science - using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-frankfurt\",\"status\":\"Active\",\"cursor\":\"[['1551244344681'],['31264536']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":106620102,\"name\":\"Myriam\",\"permission\":\"coorganizer\"},{\"member_id\":230151750,\"name\":\"Natalie\",\"permission\":\"coorganizer\"},{\"member_id\":235785038,\"name\":\"Sandra - Pintor\",\"permission\":\"coorganizer\"},{\"member_id\":278243285,\"name\":\"Lara - Vivian\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.042600631713867,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Kyiv\",\"country\":\"Ukraine\",\"description\":\"

R-Ladies - Kyiv welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community! 

\\n

-
A local chapter of R-Ladies Global, R-Ladies Kyiv exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. 

\\n


We are part of Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news! 

\\n


\\n

Join - and follow us:

\\n

Our Facebook page: https://www.facebook.com/RLadiesKyiv/

\\n

Twitter: - @RLadiesKyiv (  https://twitter.com/RLadiesKyiv
-

\\n

Contact us: 

\\n

- Partnership proposal: kyiv@rladies.org

\\n

- - Questions and  support : r.ladies.kyiv@gmail.com

\\n

Website: https://www.rladies.org 
-

\\n

PS Community Policies & Code of Conduct: 

\\n

The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Kyiv is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. 

\",\"founded_date\":1550267248000,\"gender_female\":0.5813953280448914,\"gender_male\":0.24031007289886475,\"gender_other\":0,\"gender_unknown\":0.1782945692539215,\"id\":31174585,\"last_event\":1581008400000,\"lat\":50.439998626708984,\"lon\":30.520000457763672,\"member_count\":299,\"name\":\"R-Ladies - Kyiv\",\"past_events\":15,\"past_rsvps\":256,\"pro_join_date\":1550267390820,\"repeat_rsvpers\":49,\"rsvps_per_event\":17.066667556762695,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1508677,\"name\":\"Deep Reinforcement - Learning\",\"urlkey\":\"deep-reinforcement-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-kyiv\",\"status\":\"Active\",\"cursor\":\"[['1550267390820'],['31174585']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":200972078,\"name\":\"Tomka - Koliada\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.9375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Freiburg\",\"country\":\"Germany\",\"description\":\"

R-Ladies - Freiburg welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Freiburg exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. 

\\n


We are part of Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news!
-

\\n

Website: https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Freiburg is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings: -
Photos, Films, and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Freiburg event you grant the community organizers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community’s aims. This might include (but is - not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

\",\"founded_date\":1548261185000,\"gender_female\":0.6714285612106323,\"gender_male\":0.18571428954601288,\"gender_other\":0.014285714365541935,\"gender_unknown\":0.12857143580913544,\"id\":30994180,\"last_event\":1606842000000,\"lat\":47.9900016784668,\"lon\":7.849999904632568,\"member_count\":383,\"name\":\"R-Ladies - Freiburg\",\"next_event\":1610557200000,\"past_events\":30,\"past_rsvps\":390,\"pro_join_date\":1548262707463,\"repeat_rsvpers\":81,\"rsvps_per_event\":13,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":24553,\"name\":\"Natural Language - Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1512213,\"name\":\"Data Science - using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":10,\"urlname\":\"rladies-freiburg\",\"status\":\"Active\",\"cursor\":\"[['1548262707463'],['30994180']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":247890553,\"name\":\"Elisa - Schneider\",\"permission\":\"coorganizer\"},{\"member_id\":267617953,\"name\":\"Divya - Seernani\",\"permission\":\"coorganizer\"},{\"member_id\":297236335,\"name\":\"Kyla - McConnell\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.07500076293945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Canberra\",\"country\":\"Australia\",\"description\":\"

R-Ladies Canberra - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!
A local - chapter of R-Ladies Global, R-Ladies Canberra exists to promote gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

\\n

We are part of Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org 

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal

\\n

Github: - https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Canberra is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Canberra event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1544416012000,\"gender_female\":0.6470588445663452,\"gender_male\":0.1666666716337204,\"gender_other\":0,\"gender_unknown\":0.18627451360225677,\"id\":30680825,\"last_event\":1606957200000,\"lat\":-35.310001373291016,\"lon\":149.1300048828125,\"member_count\":208,\"name\":\"R-Ladies - Canberra\",\"past_events\":13,\"past_rsvps\":242,\"pro_join_date\":1544416085773,\"repeat_rsvpers\":51,\"rsvps_per_event\":18.615385055541992,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-canberra\",\"status\":\"Active\",\"cursor\":\"[['1544416085773'],['30680825']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":42783632,\"name\":\"Emi - Tanaka\",\"permission\":\"coorganizer\"},{\"member_id\":269585641,\"name\":\"Petra - Kuhnert\",\"permission\":\"coorganizer\"},{\"member_id\":273252067,\"name\":\"Jiali - \ Wang\",\"permission\":\"coorganizer\"},{\"member_id\":273317156,\"name\":\"Alice - R\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.42110061645508,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Houston\",\"country\":\"USA\",\"description\":\"

R-Ladies - Houston welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
-

\\n

A local chapter of R-Ladies Global, R-Ladies Houston exists - to promote gender diversity in the R community worldwide. We are pro-actively - inclusive of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.
We are part of Global - R-Ladies group. You can access our presentations, R scripts, and Projects - on our Github account and follow us on twitter to stay up to date about R-Ladies - news!

\\n

Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Houston is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Houston event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1544206048000,\"gender_female\":0.800000011920929,\"gender_male\":0.09090909361839294,\"gender_other\":0.0181818176060915,\"gender_unknown\":0.09090909361839294,\"id\":30666379,\"lat\":29.719999313354492,\"lon\":-95.22000122070312,\"member_count\":94,\"name\":\"R-Ladies - Houston\",\"past_events\":0,\"past_rsvps\":0,\"pro_join_date\":1544206112559,\"repeat_rsvpers\":0,\"rsvps_per_event\":0,\"state\":\"TX\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10538,\"name\":\"Business Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-houston\",\"status\":\"Active\",\"cursor\":\"[['1544206112559'],['30666379']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":219009380,\"name\":\"Jennifer - Cai\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.75859832763672,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ottawa\",\"country\":\"Canada\",\"description\":\"

R-Ladies - Ottawa welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n

-
A local chapter of R-Ladies Global, R-Ladies Ottawa exists to promote - gender diversity in the R community worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world. 

\\n


We - are part of Global R-Ladies group. You can access our presentations, R scripts, - and Projects on our Github account and follow us on twitter to stay up to - date about R-Ladies news!

\\n

Website: https://www.rladies.org
Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )
Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Ottawa is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Ottawa event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1544046443000,\"gender_female\":0.7478991746902466,\"gender_male\":0.1428571492433548,\"gender_other\":0,\"gender_unknown\":0.10924369841814041,\"id\":30655714,\"last_event\":1603837800000,\"lat\":45.45000076293945,\"lon\":-75.69000244140625,\"member_count\":224,\"name\":\"R-Ladies - Ottawa\",\"past_events\":6,\"past_rsvps\":130,\"pro_join_date\":1544046506866,\"repeat_rsvpers\":33,\"rsvps_per_event\":21.66666603088379,\"state\":\"ON\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ottawa\",\"status\":\"Active\",\"cursor\":\"[['1544046506866'],['30655714']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":46676082,\"name\":\"Stephanie - Houle\",\"permission\":\"coorganizer\"},{\"member_id\":269638036,\"name\":\"Deirdre - Hennessy\",\"permission\":\"coorganizer\"},{\"member_id\":269694309,\"name\":\"Elham - Sirag\",\"permission\":\"coorganizer\"},{\"member_id\":269726388,\"name\":\"Megan - Kirby-McGregor\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.25400161743164,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Charlottesville\",\"country\":\"USA\",\"description\":\"

R-Ladies - is a worldwide organization to promote gender diversity in the R community. - Our mission is to achieve proportionate representation by encouraging, inspiring, - and empowering the minorities currently underrepresented in the R community.  -

\\n

R-Ladies Charlottesville welcomes members of all R proficiency - levels, whether you're a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking, and expert upskilling. Our non-profit, - civil society community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority identity - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community! 

\\n

Email us at charlottesville@rladies.org 

\\n

Follow - us on Twitter @RladiesCville

\\n

www.rladiescharlottesville.com

\\n

www.rladies.org

\\n


\\n


\\n

-

\\n
\",\"founded_date\":1506014722000,\"gender_female\":0.6020942330360413,\"gender_male\":0.3141361176967621,\"gender_other\":0.010471204295754433,\"gender_unknown\":0.07329843193292618,\"id\":26004745,\"last_event\":1592339400000,\"lat\":38,\"lon\":-78.45999908447266,\"member_count\":413,\"name\":\"R-Ladies - Charlottesville\",\"past_events\":18,\"past_rsvps\":441,\"pro_join_date\":1543434297646,\"repeat_rsvpers\":43,\"rsvps_per_event\":24.5,\"state\":\"VA\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1504085,\"name\":\"Shiny\",\"urlkey\":\"shiny\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513309,\"name\":\"ggplot\",\"urlkey\":\"ggplot\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-charlottesville\",\"status\":\"Active\",\"cursor\":\"[['1543434297646'],['26004745']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":223465345,\"name\":\"Samantha - Toet\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.91669845581055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Santa - Rosa\",\"country\":\"Argentina\",\"description\":\"

R-Ladies Santa Rosa - es parte de una organización mundial para promover la diversidad de género - en la comunidad R. Nuestro objetivo es generar un espacio cómodo y amigable - para intercambiar ideas, conocimientos y hacer R más popular y accesible, - especialmente entre las mujeres que viven en Santa Rosa, La Pampa.

\\n

Cualquier - persona con un interés en R es bienvenida, seas experta o  principiante en - R. Los eventos serán siempre gratuitos porque R-Ladies es una iniciativa social. - El Código de Conducta Global de R-Ladies se puede encontrar aquí.

\\n


¡Sumate - a este Meetup para enterarte de los próximos eventos!. ¡Te esperamos!

- \\n

También podes encontrarnos en Twitter @RLadiesSantaRosa, @RLadiesBA - (nuestras compañeras de Buenos Aires) y @RLadiesGlobal (R-Ladies de todo el - mundo), en Facebook (Buscanos como R-Ladies SantaRosa), o escribinos un correo - electrónico: santarosa@rladies.org.

- \\n

Siempre estamos buscando disertantes y patrocinadores, así que si estás - interesada no dudes en ponerte en contacto con nosotras!

\\n
\",\"founded_date\":1491479515000,\"gender_female\":0.7346938848495483,\"gender_male\":0.18367347121238708,\"gender_other\":0.020408162847161293,\"gender_unknown\":0.06122449040412903,\"id\":23174619,\"last_event\":1607374800000,\"lat\":-36.619998931884766,\"lon\":-64.30000305175781,\"member_count\":136,\"name\":\"R-Ladies - Santa Rosa\",\"past_events\":17,\"past_rsvps\":80,\"pro_join_date\":1543434282395,\"repeat_rsvpers\":11,\"rsvps_per_event\":4.705882549285889,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15497,\"name\":\"Women Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-santa-rosa\",\"status\":\"Active\",\"cursor\":\"[['1543434282395'],['23174619']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":184504016,\"name\":\"Yanina - Bellini Saibene\",\"permission\":\"coorganizer\"},{\"member_id\":225220530,\"name\":\"Yanina - Bellini Saibene\",\"permission\":\"coorganizer\"},{\"member_id\":225220803,\"name\":\"R-Ladies - Santa Rosa\",\"permission\":\"coorganizer\"},{\"member_id\":225589124,\"name\":\"Marina - Cock\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.06669998168945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lyon\",\"country\":\"France\",\"description\":\"

R-Ladies - Lyon welcomes members of all R proficiency levels, whether you are a new and - aspiring R user or an experienced R programmer, interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social collaborative learning & sharing. - We supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community! 

\\n

-
Our local chapter of R-Ladies Global, R-Ladies Lyon exists to promote - gender diversity within the R community worldwide. We are pro-actively inclusive - of queer, trans and all minority identities, with additional sensitivity to - intersectional identities. Our priority is to provide a safe community space - for anyone identifying as a minority gender who is interested in and/or working - with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities. 

\\n

Twitter: - @RLadiesLyon 

\\n


We are part of Global R-Ladies group. - You can access all our presentations, R scripts, and Projects on our Github - account and follow us on Twitter to stay up to date about R-Ladies news.
-

\\n

Website: https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Lyon is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings: -
Photos, Films, and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Lyon event you grant the community organizers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1540851514000,\"gender_female\":0.8055555820465088,\"gender_male\":0.1388888955116272,\"gender_other\":0.02777777798473835,\"gender_unknown\":0.02777777798473835,\"id\":30421186,\"last_event\":1572889500000,\"lat\":45.7599983215332,\"lon\":4.829999923706055,\"member_count\":78,\"name\":\"R-Ladies - Lyon\",\"past_events\":4,\"past_rsvps\":48,\"pro_join_date\":1540919139526,\"repeat_rsvpers\":12,\"rsvps_per_event\":12,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural - Language Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lyon\",\"status\":\"Active\",\"cursor\":\"[['1540919139526'],['30421186']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":49848602,\"name\":\"Citadel - Cabasag\",\"permission\":\"coorganizer\"},{\"member_id\":194987302,\"name\":\"Hannah\",\"permission\":\"coorganizer\"},{\"member_id\":214567779,\"name\":\"Florence\",\"permission\":\"coorganizer\"},{\"member_id\":266266523,\"name\":\"Hannah - Lennon\",\"permission\":\"coorganizer\"},{\"member_id\":266286216,\"name\":\"Shama - Virani\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.777801513671875,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Strasbourg\",\"country\":\"France\",\"description\":\"

Mission - : R-Ladies is a worldwide organization whose mission is to promote gender - diversity in the R community. We are a local chapter in Strasbourg of a global - open source community promoting gender inclusivity among R practitioners and - learners, R-Ladies Global.

\\n

Community Policies & Code of - Conduct:The leadership and mentoring roles within this community - are held exclusively by women (trans and cis) and gender-variant people. Men - are welcome to attend as long as they come as a guest of a specific female - member who is also in attendance. However, the stated priority of this meetup - is the development and support of its female members acting in whichever roles, - and we therefore reserve the right to guard this interest through whatever - measures we deem appropriate. All members and event attendees are expected - to fully respect each other and the mandate of this Meetup, or face expulsion - of any form, whether from events, Meetup membership, or any other community - participation. This community is a social initiative, hence will never involve - charges or fees to participate.

\",\"founded_date\":1506514356000,\"gender_female\":0.699999988079071,\"gender_male\":0.20000000298023224,\"gender_other\":0,\"gender_unknown\":0.10000000149011612,\"id\":26068732,\"last_event\":1600700400000,\"lat\":48.58000183105469,\"lon\":7.75,\"member_count\":74,\"name\":\"R-Ladies - Strasbourg\",\"past_events\":11,\"past_rsvps\":72,\"pro_join_date\":1540820021288,\"repeat_rsvpers\":12,\"rsvps_per_event\":6.545454502105713,\"state\":\"\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":98380,\"name\":\"R Project - for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511454,\"name\":\"woman - in tech\",\"urlkey\":\"woman-in-tech\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-strasbourg\",\"status\":\"Active\",\"cursor\":\"[['1540820021288'],['26068732']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":194064658,\"name\":\"Myriam - Maumy-Bertrand\",\"permission\":\"coorganizer\"},{\"member_id\":215507922,\"name\":\"Carolina - Frias\",\"permission\":\"coorganizer\"},{\"member_id\":222072504,\"name\":\"Rita - Giordano\",\"permission\":\"coorganizer\"},{\"member_id\":254680093,\"name\":\"Nancy - Rebout\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.08140182495117,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Philadelphia\",\"country\":\"USA\",\"description\":\"

Mission: - R-Ladies is a worldwide organization whose mission is to promote gender diversity - in the R community

\\n
\\n

R-Ladies Philly is a group for people in - Philadelphia interested in the R programming language to get together and - learn about R! As a diversity initiative, the mission of R-Ladies is to achieve - proportionate representation by encouraging, inspiring, and empowering people - of genders currently underrepresented in the R community. R-Ladies’ primary - focus, therefore, is on supporting minority gender R enthusiasts to achieve - their programming potential, by building a collaborative global network of - R leaders, mentors, learners, and developers to facilitate individual and - collective progress worldwide.

\\n
\\n

How can you get involved? Join - our meetup, but then also join our slack workspace at: rladies-philly.slack.com, - follow us on twitter @RLadiesPhilly, and check out our website at rladiesphilly.org.

\\n
\\n

Contact - us at philly@rladies.org if you want to learn more about supporting our group.

\\n
\",\"founded_date\":1507729015000,\"gender_female\":0.6453900933265686,\"gender_male\":0.24822695553302765,\"gender_other\":0.008510638028383255,\"gender_unknown\":0.09787233918905258,\"id\":26229746,\"last_event\":1607468400000,\"lat\":40.119998931884766,\"lon\":-75.01000213623047,\"member_count\":1349,\"name\":\"R-Ladies - Philly\",\"next_event\":1610578800000,\"past_events\":54,\"past_rsvps\":2516,\"pro_join_date\":1540769140366,\"repeat_rsvpers\":464,\"rsvps_per_event\":46.592594146728516,\"state\":\"PA\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":243491,\"name\":\"Biostatistics\",\"urlkey\":\"biostatistics\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":2,\"urlname\":\"rladies-philly\",\"status\":\"Active\",\"cursor\":\"[['1540769140366'],['26229746']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":10861170,\"name\":\"Jessie - Pluto\",\"permission\":\"coorganizer\"},{\"member_id\":28073702,\"name\":\"Karla\",\"permission\":\"coorganizer\"},{\"member_id\":91184072,\"name\":\"Amy - Goodwin Davies\",\"permission\":\"coorganizer\"},{\"member_id\":110914202,\"name\":\"Chun - Su\",\"permission\":\"coorganizer\"},{\"member_id\":155170142,\"name\":\"Alice - W\",\"permission\":\"coorganizer\"},{\"member_id\":191828072,\"name\":\"Darina\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.984798431396484,\"categories\":[{\"id\":31,\"name\":\"socializing\",\"shortname\":\"socializing\"}],\"city\":\"San - Jose\",\"country\":\"Costa Rica\",\"description\":\"

R-Ladies San José es - parte de una organización mundial para promover la Diversidad de Género en - la comunidad R. Nuestra meta es crear una atmósfera amigable para mujeres - interesadas en programar en R en San José, Costa Rica. No importa si nunca - usaste R o si sos una experta que tiene R como herramienta principal de trabajo. - El objetivo es promover R, intercambiar conocimiento y crear una red de mujeres.

\\n

Esta - es una iniciativa social. Todos los eventos serán gratuitos.

\\n

¡Sumate - a este Meetup para enterarte de los próximos eventos! ¡Te esperamos!

\\n

Nos - encontrás en GitHubTwitter y Facebook

\\n

Mail: - sanjoseCR[at]rladies[dot]org

\\n

Para más detalles sobre la iniciativa - R-Ladies Global visitá rladies.org.

\\n
\\n

Política - y Código de Conducta de R-Ladies:

\\n

En la comunidad R-Ladies los puestos - de responsabilidad como presentadoras y orientadoras son exclusivamente para - personas que se identifican con el género femenino. Aún así la asistencia - a las reuniones está abierta a personas de todos los géneros.

\\n

Siempre - se dará prioridad a la participación femenina ya que este grupo nació con - la intención de animar y apoyar a mujeres en los trabajos STEM (Science, Technology, - Engineering & Math) y en la comunidad de R. Las organizadoras de R-Ladies - tienen la responsabilidad y el derecho de tomar las acciones oportunas para - salvaguardar los intereses de la comunidad.

\\n

Código - de conducta completo. También adherimos al código - de conducta del R Consortium y del resto de la Comunidad R. 

\",\"founded_date\":1507531024000,\"gender_female\":0.6641025543212891,\"gender_male\":0.29230770468711853,\"gender_other\":0.0025641026441007853,\"gender_unknown\":0.041025642305612564,\"id\":26203679,\"last_event\":1602115200000,\"lat\":9.930000305175781,\"lon\":-84.08000183105469,\"member_count\":614,\"name\":\"R-Ladies - San Jose\",\"past_events\":23,\"past_rsvps\":356,\"pro_join_date\":1540769115696,\"repeat_rsvpers\":72,\"rsvps_per_event\":15.47826099395752,\"state\":\"\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":110935,\"name\":\"Data Analysis - and Modeling\",\"urlkey\":\"data-analysis-and-modeling\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":890232,\"name\":\"Data - Analysis\",\"urlkey\":\"data-analysis\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-san-jose\",\"status\":\"Active\",\"cursor\":\"[['1540769115696'],['26203679']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":235416560,\"name\":\"R-Ladies - San José CR\",\"permission\":\"coorganizer\"},{\"member_id\":254353409,\"name\":\"Daniely - Hernandez\",\"permission\":\"coorganizer\"},{\"member_id\":289907821,\"name\":\"Paula - Rodriguez\",\"permission\":\"coorganizer\"},{\"member_id\":289912687,\"name\":\"Andrea - Vargas\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.16130065917969,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Brussels\",\"country\":\"Belgium\",\"description\":\"

R-Ladies - Brussels is part of R-Ladies Global, a worldwide organization aiming to promote - Gender Diversity in the R community. More details can be found in https://rladies.org

\\n

Our goal is to make - R programming language more popular, especially among women. You may be an - R expert, a novice or even never have used it before: anyone interested in - R is encouraged to participate. The objectives are to promote R, to share - knowledge and to develop a network among women.

\\n

The nature of the - events will be determined by the needs of our members and will be free of - charge. We are emphatically LGBT friendly.

\",\"founded_date\":1502796907000,\"gender_female\":0.7215189933776855,\"gender_male\":0.18987341225147247,\"gender_other\":0.012658228166401386,\"gender_unknown\":0.07594936341047287,\"id\":25492745,\"last_event\":1553938200000,\"lat\":50.83000183105469,\"lon\":4.329999923706055,\"member_count\":232,\"name\":\"R-Ladies - Brussels\",\"past_events\":10,\"past_rsvps\":131,\"pro_join_date\":1540769107149,\"repeat_rsvpers\":23,\"rsvps_per_event\":13.100000381469727,\"state\":\"\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":133584,\"name\":\"statistical - programming\",\"urlkey\":\"statistical-programming\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-brussels\",\"status\":\"Active\",\"cursor\":\"[['1540769107149'],['25492745']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":11713315,\"name\":\"hoai - huong\",\"permission\":\"coorganizer\"},{\"member_id\":239996654,\"name\":\"Suzan\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.28300094604492,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Portland\",\"country\":\"USA\",\"description\":\"

Our - goal is to promote R and Data Science, exchange knowledge, and to create - a network among  traditionally underrepresented folks in STEM with an - emphasis on the ladies. Our group welcomes people from all backgrounds and - experience levels! While we do not restrict attendance, we do ask that attendees - consider and respect that this group is lady-focused.

\\n


\\n

RSVP - Guest Policy: If you plan on bringing a guest to our events, we'd like to - ask that your guest RSVP individually from their own account. If they do not - use Meetup (totally understandable), please contact the organizers and we - can add a +1 to your RSVP once we have more information on who they are. This - is not a closed group by any means, but we do want to make sure we are facilitating - a safe space for everyone.

\\n


\\n

Talk to us on Slack! Invite - yourself to the PDX Data Slack - and join the #rladiespdx channel!

\\n

We also have a Google Groups Mailing - List - https://groups.google.com/forum/#!forum/r-ladies-pdx

\\n

Github: - http://github.com/rladies-pdx -

\\n

Website: http://rladies-pdx.rbind.io - (Thanks to Alison Hill!)

\\n


\",\"founded_date\":1500532418000,\"gender_female\":0.7960526347160339,\"gender_male\":0.1381578892469406,\"gender_other\":0.00657894741743803,\"gender_unknown\":0.05921052768826485,\"id\":25057217,\"last_event\":1565055000000,\"lat\":45.5,\"lon\":-122.69000244140625,\"member_count\":246,\"name\":\"R-Ladies - PDX\",\"past_events\":14,\"past_rsvps\":184,\"pro_join_date\":1540769077260,\"repeat_rsvpers\":31,\"rsvps_per_event\":13.142857551574707,\"state\":\"OR\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-pdx\",\"status\":\"Active\",\"cursor\":\"[['1540769077260'],['25057217']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":2058427,\"name\":\"Beth\",\"permission\":\"coorganizer\"},{\"member_id\":4217905,\"name\":\"Augustina - Ragwitz\",\"permission\":\"coorganizer\"},{\"member_id\":11541956,\"name\":\"Pierrette\",\"permission\":\"coorganizer\"},{\"member_id\":78315282,\"name\":\"Sophie - Yang\",\"permission\":\"coorganizer\"},{\"member_id\":145318822,\"name\":\"Debbie - B\",\"permission\":\"coorganizer\"},{\"member_id\":190672192,\"name\":\"Alison\",\"permission\":\"coorganizer\"},{\"member_id\":210263771,\"name\":\"Tammy - L.\",\"permission\":\"coorganizer\"},{\"member_id\":226696098,\"name\":\"Deeksha - Thati\",\"permission\":\"coorganizer\"},{\"member_id\":237020186,\"name\":\"Adrienne - Basey\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.731700897216797,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Vancouver\",\"country\":\"Canada\",\"description\":\"

About - us

\\n

We are a local chapter of R-Ladies, a global non-profit organization - encouraging, inspiring and empowering females and non-binary people to become - contributors and leaders in the R programming community (https://rladies.org/).

\\n

Our - mission is to create a friendly, inclusive and diverse community for people - who code or would like to learn how to code in R in Vancouver area. As a community - we focus on giving opportunities, mentorship and voice to females and non - binary people who remain an underrepresented group in the programming realm. -

\\n
\\n

Questions and Answers:

\\n

What is R and who - is R for?

\\n

R is one of the top programming language for - processing, analyzing and visualizing data. Anyone who works with data, which - in this day and age is almost most of us, can benefit from basic knowledge - of R and find its data science tools useful. R is open-source, free and is - supported by a welcoming, generous and fun community of developers.

\\n

What - events are run or planned to be run by R-Ladies Vancouver?

\\n

Workshops, - talks, spotlight on research utilizing R, hackathons and coding cafe evenings. - Monthly, free of charge.

\\n

Who can join R-Ladies Vancouver community - & events

\\n

Everyone. You can be a part of building diverse - and inclusive communities. Join us in our mission towards an increased presence - of females and non-binary people as programmers and leaders. How can we attain - this? By focusing our support and resources on this group during meetups, - allowing their voices to be heard and when space is limited considering donating - a spot to a female/non-binary members. Also, all levels of R welcome. We do - require our members to follow the R-Ladies global Code - of Conduct

\\n

How can I contribute?

\\n

Share - your knowledge and coding skills by facilitating a workshop, give a talk, - suggest a talk/workshop, suggest a speaker, mentor, help us find a sponsor - to host our free of charge monthly events

\\n

Who organizers - & contributes to R-Ladies Vancouver events?

\\n

Anything events: - Anna Posacka, @annaposacka | Marion Shabolt, @mazzashazza - | Nazli Ozum Kafaee, @nazliozum

\\n

Speakers & - Friends - we will spotlight them at our soon to exist website

\\n

Connect!

\\n

Email: - vancouver@rladies.org

\\n

Twitter: https://twitter.com/RLadiesVan

\\n


\\n
\\n

-

\",\"founded_date\":1507261656000,\"gender_female\":0.7721088528633118,\"gender_male\":0.14625850319862366,\"gender_other\":0.003401360474526882,\"gender_unknown\":0.07823128998279572,\"id\":26169684,\"last_event\":1607652000000,\"lat\":49.279998779296875,\"lon\":-123.04000091552734,\"member_count\":518,\"name\":\"R-Ladies - Vancouver\",\"past_events\":28,\"past_rsvps\":464,\"pro_join_date\":1540769068603,\"repeat_rsvpers\":86,\"rsvps_per_event\":16.571428298950195,\"state\":\"BC\",\"topics\":[{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1398192,\"name\":\"Women - Who Code\",\"urlkey\":\"women-who-code\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-vancouver\",\"status\":\"Active\",\"cursor\":\"[['1540769068603'],['26169684']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":230640693,\"name\":\"Lucia\",\"permission\":\"coorganizer\"},{\"member_id\":256015488,\"name\":\"Lisa - N. Cao\",\"permission\":\"coorganizer\"},{\"member_id\":256594418,\"name\":\"Jasmine\",\"permission\":\"coorganizer\"},{\"member_id\":268138743,\"name\":\"Yuka - Takemon\",\"permission\":\"coorganizer\"},{\"member_id\":292828915,\"name\":\"Zubia - Mansoor\",\"permission\":\"coorganizer\"},{\"member_id\":317767349,\"name\":\"Sayemin - Naheen\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.62689971923828,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Chicago\",\"country\":\"USA\",\"description\":\"

R-Ladies - Chicago was founded in July 2017 with the goal of supporting women and gender - minorities who use R. Anyone with an interest in R is welcome - - our group includes data scientists, career transitioners, academic researchers, - industry experts, students, interested individuals, and others. Whether - you're a beginner or an expert, we encourage you to attend a monthly Meetup! 

\\n

Past - R-Ladies events have included R workshops, career panels, networking events, - and talks from package developers. If you're interested in sharing your work - at a R-Ladies event, we encourage you to reach out to chicago@rladies.org.

\\n

For - more information about our group, please visit our website at https://rladieschicago.org

\\n

You - can also find materials from past events at our Github, - learn about upcoming events at our Twitter, - and participate in discussions outside of our monthly events in our community - Slack (request an invite from chicago@rladies.org!).

\\n

------------

\\n

R-Ladies - is dedicated to providing a harassment-free experience for everyone. We do - not tolerate harassment of participants in any form. We follow the R-Ladies - International Code of Conduct, which can be found at this link: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\\n

Additionally, - we abide by the R Consortium R Community Code of Conduct, which is worth a - read here: https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct.

\",\"founded_date\":1499286643000,\"gender_female\":0.7777777910232544,\"gender_male\":0.1467236429452896,\"gender_other\":0.008547008968889713,\"gender_unknown\":0.06695156544446945,\"id\":24848073,\"last_event\":1605225600000,\"lat\":41.880001068115234,\"lon\":-87.62000274658203,\"member_count\":1256,\"name\":\"R-Ladies - Chicago\",\"past_events\":40,\"past_rsvps\":2059,\"pro_join_date\":1540769057764,\"repeat_rsvpers\":331,\"rsvps_per_event\":51.474998474121094,\"state\":\"IL\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-chicago\",\"status\":\"Active\",\"cursor\":\"[['1540769057764'],['24848073']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":54582202,\"name\":\"Winnie - Cai\",\"permission\":\"coorganizer\"},{\"member_id\":123049542,\"name\":\"Kristi - Angel\",\"permission\":\"coorganizer\"},{\"member_id\":173262022,\"name\":\"Aarthi - Vemuri\",\"permission\":\"coorganizer\"},{\"member_id\":207055087,\"name\":\"Angela - Li\",\"permission\":\"coorganizer\"},{\"member_id\":217148368,\"name\":\"Scarlett - Winters\",\"permission\":\"coorganizer\"},{\"member_id\":218775966,\"name\":\"Melinda - Conners\",\"permission\":\"coorganizer\"},{\"member_id\":232129611,\"name\":\"Sushmita - V Gopalan\",\"permission\":\"coorganizer\"},{\"member_id\":240682601,\"name\":\"Abby - Smith\",\"permission\":\"coorganizer\"},{\"member_id\":242854934,\"name\":\"Katherine - Simeon\",\"permission\":\"coorganizer\"},{\"member_id\":244779486,\"name\":\"zaynaib - giwa\",\"permission\":\"coorganizer\"},{\"member_id\":265125994,\"name\":\"Sydney - Purdue\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.88100051879883,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"México - City\",\"country\":\"Mexico\",\"description\":\"

R-Ladies CDMX es parte - de R-Ladies Global, una organización - mundial que busca generar una comunidad fuerte para compartir dudas, habilidades - y apoyo sobre #RStats en una comunidad con perspectiva de género.

\\n

En - R-Ladies CDMX nuestra meta es crear una atmósfera amigable para - mujeres interesadas en programar en R en la Ciudad de México. 

\\n

¡Súmate - a este Meetup para enterarte de los próximos eventos! 

\\n

Redes - y contactos

\\n

Si tienes dudas puedes escribirnos a cdmx[arroba]rladies[punto]org -

\\n

Para seguir nuestra noticias, síguenos en Twitter @RLadiesCDMX o en Facebook - en /rladiescdmx

\\n

Tutoriales - y recursos en español sobre #RStats: https://github.com/rladies/recursos_en_espanol

\\n

Política - y Código de Conducta de R-Ladies: 

\\n

En la comunidad - R-Ladies los puestos de responsabilidad como presentadoras y orientadoras - son exclusivamente para personas que se identifican con el género femenino. - Aún así la asistencia a las reuniones está abierta a personas de todos los - géneros.

\\n

Siempre se dará prioridad a la participación femenina ya - que este grupo nació con la intención de animar y apoyar a mujeres en los - trabajos STEM (Science, Technology, Engineering & Math) y en la comunidad - de R. Las organizadoras de R-Ladies tienen la responsabilidad y el derecho - de tomar las acciones oportunas para salvaguardar los intereses de la comunidad.

\\n

Código - de conducta completo. También adherimos al código - de conducta del R Consortium y del resto de la Comunidad R. 

\",\"founded_date\":1499139383000,\"gender_female\":0.6437389850616455,\"gender_male\":0.2548500895500183,\"gender_other\":0.007054673507809639,\"gender_unknown\":0.09435626119375229,\"id\":24820200,\"last_event\":1607727600000,\"lat\":19.43000030517578,\"lon\":-99.13999938964844,\"member_count\":1776,\"name\":\"R-Ladies - CDMX\",\"past_events\":13,\"past_rsvps\":744,\"pro_join_date\":1540769045276,\"repeat_rsvpers\":110,\"rsvps_per_event\":57.230770111083984,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":10232,\"name\":\"Women's - Social\",\"urlkey\":\"women\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":144477,\"name\":\"Women's - Support\",\"urlkey\":\"womens-support\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cdmx\",\"status\":\"Active\",\"cursor\":\"[['1540769045276'],['24820200']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":187947849,\"name\":\"Maria - Teresa Ortiz\",\"permission\":\"coorganizer\"},{\"member_id\":228330354,\"name\":\"Silvia - Gutiérrez\",\"permission\":\"coorganizer\"},{\"member_id\":233103209,\"name\":\"Mariana - Carmona\",\"permission\":\"coorganizer\"},{\"member_id\":277123103,\"name\":\"Ana - Escoto\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.02880096435547,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Orlando\",\"country\":\"USA\",\"description\":\"

R-Ladies - is a worldwide organization whose mission is to promote Gender Diversity in - the R community.
Our mission is to achieve proportionate representation - by encouraging, inspiring, and empowering the minorities currently underrepresented - in the R community. R-Ladies primary focus, therefore, is on supporting the - R enthusiasts who identify as an underrepresented minority to achieve their - programming potential, by building a collaborative global network of R leaders, - mentors, learners, and developers to facilitate individual and collective - progress worldwide.

\",\"founded_date\":1496674452000,\"gender_female\":0.6937984228134155,\"gender_male\":0.24031007289886475,\"gender_other\":0.0038759689778089523,\"gender_unknown\":0.06201550364494324,\"id\":24292488,\"last_event\":1559170800000,\"lat\":28.540000915527344,\"lon\":-81.37000274658203,\"member_count\":326,\"name\":\"R-Ladies - Orlando\",\"past_events\":17,\"past_rsvps\":221,\"pro_join_date\":1540769037165,\"repeat_rsvpers\":45,\"rsvps_per_event\":13,\"state\":\"FL\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10232,\"name\":\"Women's Social\",\"urlkey\":\"women\"},{\"id\":21283,\"name\":\"Women's - Business Networking\",\"urlkey\":\"womens-business-networking\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":126344,\"name\":\"Weka\",\"urlkey\":\"weka\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-orlando\",\"status\":\"Active\",\"cursor\":\"[['1540769037165'],['24292488']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":223826011,\"name\":\"Kathy - Joshi\",\"permission\":\"event_organizer\"},{\"member_id\":228958350,\"name\":\"R-Ladies - Orlando\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.24720001220703,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Miami\",\"country\":\"USA\",\"description\":\"

Data Science Meetup - Female Organizers

\\n

Our Mission

\\n

The - goal of R-Ladies Miami is to build a more inclusive R community in Miami/Broward. - We welcome members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring & networking. 

\\n

Our - non-profit, female-centric civil society community is designed to develop - our members' R skills & knowledge through social, collaborative learning - & sharing.

\\n

Supporting access to STEM careers, the Free Software - Movement, and contributing to the global R community! Come and - join us!

\\n

R - Ladies Miami

\\n

• Twitter: https://twitter.com/RLadiesMiami

\\n

• eMail: - miami@rladies.org

\\n

• Instagram: https://instagra.com/rladiesmiami

\\n

• URL: - https://rladies.org/

\",\"founded_date\":1496532867000,\"gender_female\":0.5783132314682007,\"gender_male\":0.28227195143699646,\"gender_other\":0.006884681526571512,\"gender_unknown\":0.1325301229953766,\"id\":24259185,\"last_event\":1607643000000,\"lat\":25.780000686645508,\"lon\":-80.19999694824219,\"member_count\":1101,\"name\":\"R-Ladies - Miami\",\"past_events\":31,\"past_rsvps\":1172,\"pro_join_date\":1540769029938,\"repeat_rsvpers\":206,\"rsvps_per_event\":37.80644989013672,\"state\":\"FL\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":503032,\"name\":\"AI Algorithms\",\"urlkey\":\"ai-algorithms\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":0,\"urlname\":\"rladies-miami\",\"status\":\"Active\",\"cursor\":\"[['1540769029938'],['24259185']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":68733072,\"name\":\"Laura - Gabrysiak\",\"permission\":\"coorganizer\"},{\"member_id\":94995372,\"name\":\"Catalina - Arango\",\"permission\":\"coorganizer\"},{\"member_id\":253473676,\"name\":\"Hema - Raju\",\"permission\":\"coorganizer\"},{\"member_id\":268888086,\"name\":\"Layla - B\",\"permission\":\"coorganizer\"}]},{\"average_age\":38.79999923706055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Buffalo\",\"country\":\"USA\",\"description\":\"

R-Ladies - Buffalo is part of a world-wide organization to promote gender diversity in - the R community, R-Ladies Global. R is a is an open source programming language - and software environment for statistical computing and graphics. Our goal - is to connect and support R users identifying as female providing a safe space - to collaborate and learn. We aim to provide a comfortable environment to teach - and ask questions. R-Ladies Buffalo welcomes users of all levels from beginner - to expert. 

\\n


\\n

Additional contact - information:

\\n

R-Ladies Buffalo: 

\\n

Email: - buffalo@rladies.org 

\\n

Twitter: @RLadiesBuff 

\\n


\\n

R-Ladies - Global:

\\n

Email: info@rladies.org

\\n

Twitter: - @RLadiesGlobal 

\\n

Website: https://rladies.org/ 

\\n

-

\\n


\\n

Any additional questions - can be sent to: lori@rladies.org

\",\"founded_date\":1496006407000,\"gender_female\":0.7894737124443054,\"gender_male\":0.10526315867900848,\"gender_other\":0,\"gender_unknown\":0.10526315867900848,\"id\":24100709,\"last_event\":1574377200000,\"lat\":42.900001525878906,\"lon\":-78.87999725341797,\"member_count\":28,\"name\":\"R-Ladies - Buffalo\",\"past_events\":4,\"past_rsvps\":12,\"pro_join_date\":1540769023040,\"repeat_rsvpers\":4,\"rsvps_per_event\":3,\"state\":\"NY\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"}],\"upcoming_events\":0,\"urlname\":\"rladies-buffalo\",\"status\":\"Active\",\"cursor\":\"[['1540769023040'],['24100709']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":186359051,\"name\":\"Kayla - Morrell\",\"permission\":\"coorganizer\"},{\"member_id\":202359909,\"name\":\"Regis - O'Connor\",\"permission\":\"event_organizer\"},{\"member_id\":226751921,\"name\":\"Member - ID: #226751921\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.65850067138672,\"categories\":[{\"id\":2,\"name\":\"career/business\",\"shortname\":\"career-business\"}],\"city\":\"Cape - Town\",\"country\":\"South Africa\",\"description\":\"

R-Ladies Cape Town - is part of R-Ladies Global and was founded to celebrate and promote gender - diversity in the R community.

\\n

This group is mainly aimed at female - and female-identifying persons but is open to all. However, leadership roles - remain reserved for female and female-identifying persons.

\",\"founded_date\":1488792247000,\"gender_female\":0.6666666865348816,\"gender_male\":0.25827813148498535,\"gender_other\":0.008830022066831589,\"gender_unknown\":0.06622516363859177,\"id\":22790744,\"last_event\":1603899000000,\"lat\":-33.93000030517578,\"lon\":18.459999084472656,\"member_count\":719,\"name\":\"R-Ladies - Cape Town\",\"past_events\":30,\"past_rsvps\":668,\"pro_join_date\":1540769016124,\"repeat_rsvpers\":130,\"rsvps_per_event\":22.266666412353516,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15280,\"name\":\"Statistical Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cape-town\",\"status\":\"Active\",\"cursor\":\"[['1540769016124'],['22790744']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":110021292,\"name\":\"Megan - Beckett\",\"permission\":\"coorganizer\"},{\"member_id\":223235433,\"name\":\"Theoni - Photopoulou\",\"permission\":\"coorganizer\"},{\"member_id\":227611711,\"name\":\"Astrid - Lillie Radermacher\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.16669845581055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Adelaide\",\"country\":\"Australia\",\"description\":\"RLadies - Adelaide is run by Maria and Helen, who both use the R coding language at - work for data analysis, sorting and visualisation. \\n
\\n
\\n

We - organise workshops and talks to give you an insight into the many ways that - people use R, and to get you started with R too. It doesn't matter whether - you are a beginner or an experienced R coder, come and join us!

\\n

RLadies - Adelaide is part of the international organisation RLadies, and aims to encourage - more women to get involved in their local programming communities. We encourage - all genders to attend our events, and aim always to create a welcoming environment. - All talks and workshops at RLadies will be presented by women, in order to - strengthen the presence of women in the coding community.

\\n

Our - goal is to bring diversity into R community and get more women excited about - technology!

\\n

We hope to see you at our next event!

\",\"founded_date\":1486037613000,\"gender_female\":0.6971428394317627,\"gender_male\":0.19428572058677673,\"gender_other\":0.017142856493592262,\"gender_unknown\":0.09142857044935226,\"id\":22202405,\"last_event\":1570055400000,\"lat\":-34.93000030517578,\"lon\":138.60000610351562,\"member_count\":308,\"name\":\"R-Ladies - Adelaide\",\"past_events\":9,\"past_rsvps\":125,\"pro_join_date\":1540769005924,\"repeat_rsvpers\":18,\"rsvps_per_event\":13.88888931274414,\"state\":\"\",\"topics\":[{\"id\":1245,\"name\":\"Database - Professionals\",\"urlkey\":\"databasepro\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":77965,\"name\":\"Introduction - to Functional Programming in R\",\"urlkey\":\"introduction-to-functional-programming-in-r\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":98842,\"name\":\"Business - Analytics\",\"urlkey\":\"business-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"}],\"upcoming_events\":0,\"urlname\":\"rladies-adelaide\",\"status\":\"Active\",\"cursor\":\"[['1540769005924'],['22202405']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":211572260,\"name\":\"Helen - Dockrell\",\"permission\":\"coorganizer\"},{\"member_id\":213388578,\"name\":\"Maria - Dmtrv\",\"permission\":\"coorganizer\"},{\"member_id\":254187029,\"name\":\"Rachel - S\",\"permission\":\"coorganizer\"},{\"member_id\":277112119,\"name\":\"Brittany - Child\",\"permission\":\"coorganizer\"},{\"member_id\":291011528,\"name\":\"R-Ladies - Adelaide\",\"permission\":\"coorganizer\"}]},{\"average_age\":29.04840087890625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Chennai\",\"country\":\"India\",\"description\":\"

R-Ladies - Chennai is a local chapter of the R-Ladies Global organization http://rladies.org, - which aims to promote gender diversity in the R community. We are open to - all women or those who identify as women. Whether you are new to R or an expert, - please join us.

\\n

We follow the R-Ladies International Code of Conduct, - which can be found at this link: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct -

\\n

Follow us on twitter @RLadiesChennai - and @RLadiesGlobal

\\n


\\n


\",\"founded_date\":1508102894000,\"gender_female\":0.48148149251937866,\"gender_male\":0.45370370149612427,\"gender_other\":0.004629629664123058,\"gender_unknown\":0.06018518656492233,\"id\":26276685,\"last_event\":1599913800000,\"lat\":13.09000015258789,\"lon\":80.2699966430664,\"member_count\":330,\"name\":\"R-Ladies - Chennai\",\"past_events\":6,\"past_rsvps\":58,\"pro_join_date\":1540768997970,\"repeat_rsvpers\":10,\"rsvps_per_event\":9.666666984558105,\"state\":\"\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-chennai\",\"status\":\"Active\",\"cursor\":\"[['1540768997970'],['26276685']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":214163022,\"name\":\"Praveena\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.727298736572266,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Pasadena\",\"country\":\"USA\",\"description\":\"

R-Ladies - Pasadena (Caltech Chapter), a chapter of the global R-Ladies community, welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our non-profit, civil society community is designed to develop - our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!

\\n

R-Ladies - Pasadena (Caltech Chapter) promotes gender diversity in the R Community, especially - at Caltech and in the Greater Pasadena-San Gabriel Valley area. We are pro-actively - inclusive of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n

We are part - of Global R-Ladies group. You can access our presentations, R scripts and - Projects on our Github account and follow us on twitter to stay up to date - about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

* - Community Policies & Code of Conduct *

\\n

The leadership, mentoring - & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Due to - unexpected demand, we have opened learning participation to all genders, dependent - on initial and on-going vetting by the leadership team. However, the stated - priority of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Pasadena is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

\\n

* - Photos, Films and all other media/recordings *

\\n

Photos, Films, and - all other media/recordings: photographs and/or video/other media will be taken - at events held by this community. By taking part in an R-Ladies Pasadena event - you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1524671387000,\"gender_female\":0.7446808218955994,\"gender_male\":0.1702127605676651,\"gender_other\":0,\"gender_unknown\":0.08510638028383255,\"id\":28280039,\"last_event\":1573093800000,\"lat\":34.150001525878906,\"lon\":-118.13999938964844,\"member_count\":95,\"name\":\"R-Ladies - Pasadena\",\"past_events\":5,\"past_rsvps\":59,\"pro_join_date\":1540768985822,\"repeat_rsvpers\":11,\"rsvps_per_event\":11.800000190734863,\"state\":\"CA\",\"topics\":[{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":127585,\"name\":\"Open Science\",\"urlkey\":\"open-science\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1504791,\"name\":\"Markdown\",\"urlkey\":\"markdown\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-pasadena\",\"status\":\"Active\",\"cursor\":\"[['1540768985822'],['28280039']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":104809812,\"name\":\"Zhi - Yang\",\"permission\":\"coorganizer\"},{\"member_id\":252999860,\"name\":\"Gail - Clement\",\"permission\":\"coorganizer\"},{\"member_id\":253650648,\"name\":\"Donna - Wrublewski\",\"permission\":\"coorganizer\"},{\"member_id\":261581644,\"name\":\"Keren - Xu\",\"permission\":\"coorganizer\"},{\"member_id\":264609121,\"name\":\"Helen - Foley\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.517601013183594,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"San - Diego\",\"country\":\"USA\",\"description\":\"

Our goal is to make R more - popular especially among women. Anyone with an interest in R is encouraged - to participate. It doesn't matter if you never used R or if you are an R expert. - The goal is to promote R, exchange knowledge and create a network among women.

\\n

Come - and join us!

\\n

All events are intended for all women who are interested - in attending. We are emphatically queer and trans friendly. Men are - welcome to attend as long as they are respectful that this a woman run space. - Individuals who do not adhere to the spirit of R-Ladies may be asked to leave.

\\n

Information - about upcoming events can also be found on our Twitter - or Facebook - page.

\\n

We are a part of the global network of R-Ladies. More information - can be found at rladies.org. Please - see our Global - Code of Conduct if you have any questions.

\\n

NOTICE FOR APRIL 2020:

\\n

Hello - R-Ladies San Diego members,

\\n

While Covid-19 is still a public health - issue, we are cancelling all upcoming meetups. We have decided to take a hiatus - until we are allowed to get out and socialize again. That does not mean that - we cannot still connect. Check out our resources below:

\\n

R-Ladies - SD GitHub Repo: https://github.com/rladies-san-diego

\\n

R-Ladies - Global GitHub Repo: https://github.com/rladies

\\n

R-Ladies - SD Slack: https://rladies-san-diego.slack.com/

\\n

R-Ladies - community Slack signup: https://rladies-community-slack.herokuapp.com/

\\n

R-Ladies - SD Twitter (@RLadiesSanDiego) https://twitter.com/RLadiesSanDiego

\\n

R-Ladies - Global Twitter (@RLadiesGlobal) https://twitter.com/RLadiesGlobal

\\n

Looking - forward to seeing everyone soon. Stay healthy!

\\n

Your R-Ladies SD organizers

\\n
\",\"founded_date\":1497649358000,\"gender_female\":0.7453083395957947,\"gender_male\":0.17426273226737976,\"gender_other\":0.00804289523512125,\"gender_unknown\":0.07238605618476868,\"id\":24506595,\"last_event\":1608170400000,\"lat\":32.75,\"lon\":-117.16999816894531,\"member_count\":607,\"name\":\"R-Ladies - San Diego\",\"past_events\":34,\"past_rsvps\":577,\"pro_join_date\":1540768974533,\"repeat_rsvpers\":89,\"rsvps_per_event\":16.97058868408203,\"state\":\"CA\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":18060,\"name\":\"Hadoop\",\"urlkey\":\"hadoop\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":26273,\"name\":\"Professional Women\",\"urlkey\":\"professional-women\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":98380,\"name\":\"R Project - for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":144477,\"name\":\"Women's - Support\",\"urlkey\":\"womens-support\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-san-diego\",\"status\":\"Active\",\"cursor\":\"[['1540768974533'],['24506595']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":197454783,\"name\":\"Viola - Glenn\",\"permission\":\"coorganizer\"},{\"member_id\":217933700,\"name\":\"EP\",\"permission\":\"coorganizer\"},{\"member_id\":247455757,\"name\":\"Juliana - Capitanio\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.06629943847656,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Austin\",\"country\":\"USA\",\"description\":\"

Our - goal is to make R more popular and accessible especially among women. Anyone - with an interest in R is welcome. You can be an R expert or novice. We will - promote R, exchange ideas and knowledge and create a friendly network among - women who use R!

\\n

Twitter: https://twitter.com/RLadiesAustin

\\n

Please - consider opting into emails to get period messages from the organizers about - upcoming events! The most recent updates will also be posted here: https://www.meetup.com/rladies-austin/messages/boards/. 

\",\"founded_date\":1485879617000,\"gender_female\":0.7817745804786682,\"gender_male\":0.12949639558792114,\"gender_other\":0.011990407481789589,\"gender_unknown\":0.07673861086368561,\"id\":22180445,\"last_event\":1579653000000,\"lat\":30.219999313354492,\"lon\":-97.75,\"member_count\":626,\"name\":\"R-Ladies - Austin\",\"past_events\":45,\"past_rsvps\":658,\"pro_join_date\":1540768967486,\"repeat_rsvpers\":111,\"rsvps_per_event\":14.622221946716309,\"state\":\"TX\",\"topics\":[{\"id\":659,\"name\":\"Web - Design\",\"urlkey\":\"webdesign\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-austin\",\"status\":\"Active\",\"cursor\":\"[['1540768967486'],['22180445']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":124162892,\"name\":\"Caitlin - Hudon\",\"permission\":\"coorganizer\"},{\"member_id\":220478539,\"name\":\"R-Ladies - Austin\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.446399688720703,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Tbilisi\",\"country\":\"Georgia\",\"description\":\"

R-Ladies - თბილისის ჯგუფი გლობალური R-Ladies (http://rladies.org) - ნაწილია, რომლის მიზანსაც წარმოადგენს R პროგრამული ენით დაინტერესებულ ადამიანებს - შორის ცოდნისა და გამოცდილების გაზიარება.

\\n

R არის ღია კოდის მქონე უფასო - სტატისტიკური პროგრამა, რომლის საშუალებითაც შეგიძლიათ მონაცემების ანალიზი და - ვიზუალიზაცია.

\\n

R-ით დაინტერესებულ ადამიანებს შეუძლიათ, შემოუერთდნენ - ამ ჯგუფის შეხვედრებს, როგორც ტრენერი, მონაწილე ან ორგანიზატორი/თანაორგანიზატორი. - R-ის ცოდნის დონეს მნიშვნელობა არ აქვს.

\\n

გთხოვთ, შეავსოთ ეს ფორმა, - რათა ორგანიზატორებმა შეძლონ შეხვედრების დაგეგმვა და თქვენი მოწვევა: http://bit.ly/R-LadiesTbilisi -

\\n

====================================================================================

\\n

R-Ladies - Tbilisi \x7Fis part of the global R-Ladies community (http://rladies.org). Our goal is to exchange knowledge - and experiences of R programme in Georgia, especially among women.

\\n

R - is an open-source free statistical programme that allows for more flexibility - in creating analysis and graphics (https://www.r-project.org/).

\\n

Anyone with - an interest in R is encouraged to participate in the community. It is meant - for all R proficiency levels, whether you are a new or an experienced R user - interested in mentoring and networking.

\\n

Please fill in the following - survey in order for the meetup organisers to get a better idea of your interests - regarding R:

\\n

http://bit.ly/R-LadiesTbilisi

\\n


-

\\n

Twitter: @RLadiesTbilisi

\\n

E-mail: tbilisi [at] rladies - [dot] org

\\n

Github: https://github.com/rladies/meetup-presentations_tbilisi

\",\"founded_date\":1480449123000,\"gender_female\":0.5733333230018616,\"gender_male\":0.35333332419395447,\"gender_other\":0.006666666828095913,\"gender_unknown\":0.06666667014360428,\"id\":21313292,\"last_event\":1607961600000,\"lat\":41.720001220703125,\"lon\":44.790000915527344,\"member_count\":286,\"name\":\"R-Ladies - Tbilisi\",\"next_event\":1611241200000,\"past_events\":61,\"past_rsvps\":519,\"pro_join_date\":1540768956654,\"repeat_rsvpers\":67,\"rsvps_per_event\":8.508196830749512,\"state\":\"\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-tbilisi\",\"status\":\"Active\",\"cursor\":\"[['1540768956654'],['21313292']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":212924195,\"name\":\"Tamuna - Margievi\",\"permission\":\"coorganizer\"},{\"member_id\":213401088,\"name\":\"liilia\",\"permission\":\"coorganizer\"},{\"member_id\":267152110,\"name\":\"Mariam - Asatiani\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.79999923706055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Budapest\",\"country\":\"Hungary\",\"description\":\"

Az - R-Ladies Budapest célja az adatelemzés, adatbányászat vagy konkrétan az R - nyelv iránt érdeklődő, esetleg e területeken már jártas lányok/nők számára - egy barátságos szakmai fórum létrehozása. A világ számos pontján működő rendezvényhez - hasonlóan itt mindenki sztereotípiáktól mentes közegben fejlesztheti képességeit - (akár a kezdetektől) és oszthatja meg tudását másokkal.

\\n

Kiket - várunk?

\\n

Kortól függetlenül mindenkit, aki természettudományos - vagy műszaki érdeklődéssel rendelkezik és izgatja az adatok világa. Semmilyen - előzetes ismeretre nem támaszkodunk, de előnyt jelent, ha láttál már Excel - táblát (esetleg néha eleged is lett belőle) vagy valaha programoztál akármilyen - nyelven.

\\n

Ha kíváncsi vagy, gyere el egyik alkalmunkra és/vagy - kövesd Twitter (https://twitter.com/RLadiesBudapest) - vagy Facebook (https://www.facebook.com/RLadiesBudapest) - csatornánkat! Ha kérdésed van, segíteni szeretnél a szervezésben vagy előadóként/mentorként - megosztanád a tudásodat, keress meg bennünket a budapest@rladies.org e-mail - címen.

\\n

This is a local chapter of http://rladies.org, a world-wide organization - to promote gender diversity in the R community.

\\n

Our code of conduct: - https://github.com/rladies/starter-kit/wiki...

\",\"founded_date\":1485298222000,\"gender_female\":0.720973789691925,\"gender_male\":0.22846442461013794,\"gender_other\":0.00561797758564353,\"gender_unknown\":0.04494382068514824,\"id\":22066895,\"last_event\":1580313600000,\"lat\":47.5099983215332,\"lon\":19.079999923706055,\"member_count\":862,\"name\":\"R-Ladies - Budapest\",\"past_events\":33,\"past_rsvps\":1481,\"pro_join_date\":1540768951219,\"repeat_rsvpers\":224,\"rsvps_per_event\":44.878787994384766,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"}],\"upcoming_events\":0,\"urlname\":\"rladies-budapest\",\"status\":\"Active\",\"cursor\":\"[['1540768951219'],['22066895']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14046281,\"name\":\"Windhager-Pokol - Eszter\",\"permission\":\"coorganizer\"},{\"member_id\":108815342,\"name\":\"Ágnes - Salánki\",\"permission\":\"coorganizer\"},{\"member_id\":110856732,\"name\":\"Rita - Klein\",\"permission\":\"coorganizer\"},{\"member_id\":179040492,\"name\":\"Eszter - Pázmándi\",\"permission\":\"coorganizer\"},{\"member_id\":184916492,\"name\":\"Böjte - Berta\",\"permission\":\"coorganizer\"},{\"member_id\":195093007,\"name\":\"Zsuzsanna - Szabó-Krausz\",\"permission\":\"coorganizer\"},{\"member_id\":232376429,\"name\":\"Lukácsné - Szabó Gerda\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.137901306152344,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Ames\",\"country\":\"USA\",\"description\":\"

Mission:

\\n

R-Ladies - is a worldwide organization whose mission is to promote Gender Diversity in - the R community.

\\n

The R community suffers from an underrepresentation - of Women* in every role and area of participation, whether as leaders, package - developers, conference speakers, conference participants, educations, or users - (see recent stats). As a diversity initiative, R-Ladies’ mission is to achieve - proportionate representation by encouraging, inspiring, and empowering the - minorities currently underrepresented in the R community. R-Ladies’ primary - focus, therefore, is on supporting the R enthusiasts who identify as an underrepresented - minority to achieve their programming potential, by building a collaborative - global network of R leaders, mentors, learners, and developers to facilitate - individual and collective progress worldwide.

\\n

*Please note all references - to ‘W/women’ and ‘F/female’ are used fully inclusively w.r.t trans women, - genderqueer women, and non-binary people who are significantly female-identified.

\\n

R-Ladies - Rules, Guidelines, and Code of Conduct:

\\n

The rules for participation - in the R-Ladies organization as well as the member code of conduct are posted - here. - Please read them when you join the Meetup.

\\n


\",\"founded_date\":1480118246000,\"gender_female\":0.7259259223937988,\"gender_male\":0.2074074000120163,\"gender_other\":0.007407407276332378,\"gender_unknown\":0.05925925821065903,\"id\":21280054,\"last_event\":1605218400000,\"lat\":42.029998779296875,\"lon\":-93.63999938964844,\"member_count\":237,\"name\":\"R-Ladies - Ames\",\"past_events\":79,\"past_rsvps\":252,\"pro_join_date\":1540768940826,\"repeat_rsvpers\":27,\"rsvps_per_event\":3.189873456954956,\"state\":\"IA\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ames\",\"status\":\"Active\",\"cursor\":\"[['1540768940826'],['21280054']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":228301582,\"name\":\"Anabelle - Laurent\",\"permission\":\"coorganizer\"},{\"member_id\":305537866,\"name\":\"Annie - Lyu\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.65039825439453,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Dublin\",\"country\":\"Ireland\",\"description\":\"

R-Ladies - Dublin is part of R-Ladies Global. -

\\n

R is a powerful open-source software for statistical - analysis and data visualisation.

\\n

Our goal is to make - R loved and used by more people, especially women and gender minorities. We - meet to exchange knowledge and create network of learners & mentors.

\\n

Our - Meetups are open to everyone, all levels of R and are free of charge.

\\n

We - share our presentations and code on GitHub.

\\n

If - you want to support R-Ladies Dublin or get involved in our meetups, we'd - love to hear from you. Please email Jo at dublin (at) rladies (dot) org.

\\n

___________________________________________________________________________

\\n

To - stay in touch between the meetups, we created r-ladies-dublin channel - on Irish Tech Community Slack. Here's how to join it:

\\n

1. Go - to http://irishtechcommunity.com/

\\n

2. - Click Sign Up Here

\\n

3. Enter your email address, accept code of conduct - and click get my invite - you will receive an email from slack that will allow - you to join the team. Click join the team.

\\n

4. Create your username - and password - you're in

\\n

5. To join the r-ladies-dublin channel, - hit channels in top left corner, you will see a list of available channels, - search for r-ladies-dublin and click join

\",\"founded_date\":1478992820000,\"gender_female\":0.7234432101249695,\"gender_male\":0.2032967060804367,\"gender_other\":0.009157509543001652,\"gender_unknown\":0.06410256773233414,\"id\":21149852,\"last_event\":1606151700000,\"lat\":53.33000183105469,\"lon\":-6.25,\"member_count\":818,\"name\":\"R-Ladies - Dublin\",\"past_events\":24,\"past_rsvps\":740,\"pro_join_date\":1540768937435,\"repeat_rsvpers\":132,\"rsvps_per_event\":30.83333396911621,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-dublin\",\"status\":\"Active\",\"cursor\":\"[['1540768937435'],['21149852']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":184648029,\"name\":\"Jo - Nieć\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.75,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Berlin\",\"country\":\"Germany\",\"description\":\"

~English - version in between~

\\n

Die erste Community für Frauen, die sich - für alles rund ums Thema R, Big data oder Datenvisualisierung interessieren. - R-Ladies Berlin ist Teil der R-Ladies Global Gemeinschaft und unterstützt - Geschlechter-Vielfalt in Deutschland und weltweit.
Wir sind offen für - jede Art geschlechtlicher Orientierung und schaffen einen sicheren Raum für - jede Interessierte R zu erlernen, sich auszutauschen und zu vernetzen. Wir - möchten jede Frau, unabhängig vom Wissensstand, in unserer Gemeinschaft willkommen - heißen. Gleich ob du ein Neueinsteiger bist oder ein erfahrener R-Programmierer, - interessiert an Mentoring und Networking - sei mit dabei.

\\n

R-Ladies - sind eine gemeinnützige, an Frauen adressierte Gemeinschaft deren Ziel es - ist, eine Plattform für den gegenseitigen Erfahrungs- und den gemeinschaftlichen - Wissensaustausch zu bieten.
R-Ladies Berlin richtet sich an Frauen, die - in den Bereichen STEM (Science, Technology, Engineering and Mathematics), - der freien Softwareentwicklung arbeiten oder ganz allgemein Teil der globalen - R-Gemeinschaft werden wollen. Themen der R-Ladies Berlin

\\n


The - first German R Programming community for Women! We are a local chapter of - R-Ladies Global rladies.org, a Linux - Foundation grant recipient. R-Ladies Berlin exists to promote gender diversity - in the R community, both in Germany and worldwide. We are fully inclusive - and respectful of queer and trans identities - providing a safe space for - anyone identifying as female interested in/working with R is of paramount - importance.

\\n

R-Ladies Berlin welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring & networking. Our non-profit, female-centric - civil society community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting women's access - to STEM careers, the Free Software Movement, and contributing to the global - R community!

\\n

Themen / Topics:

\\n

• Einstieg - in die Programmierung mit R & RStudio / Kickstarting R & RStudio

- \\n

• Datenvisualisierung / Data visualisation

\\n

• Machine - Learning algorithms

\\n

• Mathematik & Statistik / Mathematics and - statistics

\\n

• Text Mining

\\n

• Spatial Analytics

\\n

• - Entwicklung von interaktiven Web Apps / Building Interactive Web Apps

- \\n

• Aufbau von dynamischen Berichten / Building Dynamic Reports & Dashboards

- \\n

• ... und vieles Weitere, was euch interessiert / ... and many more - :)

\\n


\\n

Gemeinschaftspolitik & Verhaltenskodex: - Die Führung und das Mentoring innerhalb der Gemeinschaft ist exklusiv - Frauen vorbehalten. In Anbetracht des Bedarfs ist jedoch formal die Teilnahme - für alle Geschlechter offen.
Dennoch ist die Unterstützung der Frauen - oberste Priorität dieser Gemeinschaft. Aus diesem Grund behalten wir uns das - Recht vor diese Priorität im vollen Umfang zu verfolgen. Alle Mitglieder und - Event-Teilnehmer sind angehalten sich gegenseitig und das Ziel dieses Meetups - zu respektieren. Diese Community ist gemeinnützig und zu keinem Zeitpunkt - werden Gebühren gleich weder Form erhoben. Im Fall der Missachtung der oben - genannten Regeln behalten wir uns den Ausschluss von weiteren Veranstaltungen - vor.

\\n

PS Community Policies & Code of Conduct: the leadership - & mentoring roles within this Community are held exclusively by women - however - due to demand, we have formally opened learning participation to all genders, - hence are fully inclusive re. attendance in order to learn. However, the stated - priority of this meetup is the development & support of it's female members - acting in whichever roles, and we therefore reserve the right to guard this - interest through whatever measures we deem appropriate. All members & event - attendees are expected to fully respect each other & the mandate of this Meetup, - or face expulsion of any form, whether from events, Meetup membership, or - any other Community participation. This Community is a social initiative, - hence will never involve charges or fees to participate, unless a member is - found to be disrespectful of the goodwill on which the Meetup exists - in - this case the Meetup may impose a monetary penalty should the offending member - wish to participate in further events (at the discretion of the leadership - team).

\",\"founded_date\":1477914332000,\"gender_female\":0.7533156275749207,\"gender_male\":0.13793103396892548,\"gender_other\":0.02122015878558159,\"gender_unknown\":0.08753315359354019,\"id\":20977178,\"last_event\":1604512800000,\"lat\":52.52000045776367,\"lon\":13.380000114440918,\"member_count\":644,\"name\":\"R-Ladies - Berlin\",\"past_events\":28,\"past_rsvps\":751,\"pro_join_date\":1540768527049,\"repeat_rsvpers\":137,\"rsvps_per_event\":26.821428298950195,\"state\":\"\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-berlin\",\"status\":\"Active\",\"cursor\":\"[['1540768527049'],['20977178']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14208764,\"name\":\"Noa - Tamir\",\"permission\":\"coorganizer\"},{\"member_id\":135594502,\"name\":\"Ulrike\",\"permission\":\"coorganizer\"},{\"member_id\":211816295,\"name\":\"Christin - Zasada\",\"permission\":\"coorganizer\"},{\"member_id\":211879746,\"name\":\"Hanna\",\"permission\":\"coorganizer\"},{\"member_id\":212997331,\"name\":\"Lisa - Reiber\",\"permission\":\"coorganizer\"},{\"member_id\":229752079,\"name\":\"Olena - Smotrova\",\"permission\":\"coorganizer\"},{\"member_id\":238491483,\"name\":\"Elizaveta - Zinovyeva\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.42470169067383,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Barcelona\",\"country\":\"Spain\",\"description\":\"

R-Ladies - Barcelona is part of a worldwide organization to promote Gender Diversity - in the R community.

\\n

R-Ladies Barcelona es primera comunidad - en Cataluña de R para mujeres! Aquí encontrarás compañeras en el mundo - de la programación en R, desde profesionales que tienen R como herramienta - principal de trabajo hasta aficionadas que quieren aprender y seguir mejorando. - ¡Unete, te esperamos! R-Ladies Barcelona es una rama local parte de R-Ladies - Global, una comunidad open source donde mujeres nos apoyamos y nos ayudamos - a crecer dentro de la comunidad de R. Además R-Ladies Global es un proyecto - financiado por el R Consortium-Linux - Foundation. Para mas detalles puedes ir a rladies.org. - Twitter: @RLadiesBCN y @RLadiesGlobal.

\\n

Si alguien está interesada - en impartir un taller o dar una charla en un evento de R-Ladies escribid a -  

\\n

bcn[at]rladies[dot]org

\\n

Políticas y Código de - Conducta 
En la comunidad R-Ladies los puestos de responsabilidad - como speakers y orientadoras son exclusivamente para mujeres, aún así la asistencia - a las reuniones está abierta a gente de todos los géneros. Siempre se dará - prioridad a la participación femenina ya que este grupo nació con la intención - de animar y apoyar a mujeres en los trabajos STEM (Science, Technology, Engineering - & Math) y en la comunidad de R por lo que las organizadoras de R-Ladies - Barcelona tienen la responsabilidad y el derecho de tomar las acciones oportunas - para salvaguardar los intereses de la comunidad. 

\\n

Código - de conducta

\\n
\\n

R-Ladies se dedica a proporcionar una experiencia - libre de acoso para todos.

\\n

Desde R-Ladies no toleramos el acoso de - los participantes en ninguna de las formas posibles.

\\n

Este código - de conducta aplica en todos los espacios de participación de R-Ladies, incluyendo - reuniones, Twitter, Slack, listas de correo, tanto online como offline. Cualquier - persona que viole este código de conducta deberá ser sancionado o expulsado - de estos espacios a discreción de los miembros fundadores.

\\n
\\n

Algunos - espacios de R-Ladies pueden tener reglas de conducta adicionales, las cuales - serán de libre acceso y estarán disponibles para los participantes.

\\n

Los - participantes en R-Ladies deben conocer, ser responsables y respetar las reglas - de conducta.

\\n

El acoso incluye:

\\n

● Comentarios ofensivos relacionados - con género, identidad y expresión de género, orientación sexual, discapacidad, - enfermedad mental, neuro (a) tipicidad, apariencia física, tamaño corporal, - edad, raza o religión.

\\n

● Comentarios no deseados sobre las opciones - y prácticas de estilo de vida de una persona, incluyendo aquellos relacionados - con alimentos, salud, crianza de los hijos, drogas y empleo.

\\n

● Deliberación - de malentendido o uso de nombres \\\"muertos\\\" o rechazados.

\\n

● - Imágenes o comportamientos sexuales gratuitos o fuera de tema en espacios - donde no son apropiados.

\\n

● Contacto físico y contacto físico simulado - (por ejemplo, descripciones textuales como \\\"* hug *\\\" o \\\"* backrub - *\\\") sin consentimiento o después de una solicitud de detención. 4

\\n

● - Amenazas de violencia

\\n

● Incitación a la violencia hacia cualquier - individuo, incluyendo el alentar a una persona a suicidarse oa auto agredir. -

\\n

● Intimidación deliberada

\\n

● Acechando o siguiendo de forma - que pueda ser intimidador para otra persona

\\n

● Acosando mediante fotografías - o grabaciones, incluyendo registro de actividad en línea para propósitos de - acoso.

\\n

● Interrupción sostenida del debate y/o discusiones.

\\n

● - Atención sexual no deseada .

\\n

● Patrón de contacto social inapropiado, - como solicitar / asumir niveles inadecuados de intimidad con otros.

\\n

● - Continuación de la comunicación uno-a-uno después de las solicitudes de cesación. -

\\n

● Deliberar \\\"salida\\\" de cualquier aspecto de la identidad - de una persona sin su consentimiento, salvo cuando sea necesario para proteger - a las personas vulnerables de abuso intencional.

\\n

● Publicación de - una comunicación privada no hostigadora. R-Ladies prioriza la seguridad de - las personas marginadas sobre la comodidad de las personas privilegiadas. - Los miembros fundadores no actuarán sobre las quejas relativas a:

\\n

● - Los \\\"inversos\\\", como el racismo inverso, el sexismo inverso y la cisfobia. -

\\n

● La comunicación razonable de los límites, como \\\"déjame en paz\\\", - \\\" \\\"O\\\" No estoy hablando de esto contigo \\\".

\\n

● Comunicándolo - en un \\\"tono\\\" que no se encuentra agradable.

\\n

● Criticando comportamientos - o suposiciones racistas, sexistas, cissexistas o opresivas. Reporte

\\n

Si - estás siendo acosado por un miembro / Invitado / participante de / en R-Ladies, - tenga en cuenta que alguien más está siendo acosado, o tiene cualquier otra - preocupación, por favor póngase en contacto con los miembros fundadores a - través de reporting@rladies.org. Las incidencias locales serán manejadas junto - con los organizadores locales. Si la persona que lo está acosando está en - el equipo, ellos se rehusarán a manejar su incidente. Responderemos tan pronto - como podamos. Este código de conducta se aplica a los espacios de R-Ladies, - pero si usted está siendo acosado por un miembro / invitado / participante - de R-Ladies fuera de nuestros espacios, todavía queremos saberlo. Tomaremos - en serio todos los informes de buena fe de acoso de los miembros de R-Ladies, - especialmente de los 5 miembros fundadores. Esto incluye el acoso fuera de - nuestros espacios y el acoso que tuvo lugar en cualquier momento. Los miembros - fundadores se reservan el derecho de excluir a las personas de R-Ladies sobre - la base de su comportamiento pasado, incluyendo el comportamiento fuera de - R-Ladies espacios y el comportamiento hacia las personas que no están en R-Ladies.

\\n
\\n

Con - el fin de proteger a los voluntarios contra el abuso y el agotamiento que - este podría generar, nos reservamos el derecho de rechazar cualquier informe - que creamos haber sido hecho de mala fe. Los informes destinados a silenciar - las críticas legítimas pueden ser eliminados sin respuesta. Respetaremos las - solicitudes de confidencialidad con el propósito de proteger a las víctimas - de abuso. A nuestra discreción, podemos nombrar públicamente a una persona - sobre quien hemos recibido quejas de acoso, o advertir privadamente a terceros - acerca de ellos, si creemos que hacerlo aumentará la seguridad de los miembros - de R-Ladies o del público en general. No nombraremos víctimas de acoso sin - su consentimiento afirmativo.

\\n
\\n

Consecuencias

\\n

Se - espera que los participantes pidan detener cualquier comportamiento de acoso - que cumplan de inmediato.

\\n
\\n

Si un participante comete un comportamiento - de acoso, los miembros fundadores podrán tomar cualquier acción que consideren - apropiada, incluyendo la expulsión de todos los espacios de R-Ladies y la - identificación del participante como acosador a otros miembros de R-Ladies - o al público en general.

\\n

Esta política se encuentra bajo licencia - Creative Commons Zero.

\\n

---

\\n

Catalonia’s R programming - community for women! Building a social network of female R practitioners and - learners in Barcelona to support knowledge sharing and collaborative learning! - Join us! R-Ladies Barcelona is a local chapter of a global open source community - promoting female R practitioners and learners, R-Ladies Global, which is an - R Consortium-Linux Foundation - supported project.  To find more details about R-Ladies global - initiative visit rladies.org. Follow - us on Twitter @RLadiesBCN and @RLadiesGlobal.

\\n


\\n

Code - of Conduct

\\n

R-Ladies is dedicated to providing a harassment-free - experience for everyone. We do not tolerate harassment of participants in - any form. This code of conduct applies to all R-Ladies spaces, including meetups, - Twitter, Slack, mailing lists, both online and offline. Anyone who violates - this code of conduct may be sanctioned or expelled from these spaces at the - discretion of the Founding Members. Some R-Ladies spaces may have additional - rules in place, which will be made clearly available to participants. Participants - are responsible for knowing and abiding by these rules.

\\n

Harassment - includes:

\\n

● Offensive comments related to gender, gender identity - and expression, sexual orientation, disability, mental illness, neuro(a)typicality, - physical appearance, body size, age, race, or religion.

\\n

● Unwelcome - comments regarding a person’s lifestyle choices and practices, including those - related to food, health, parenting, drugs, and employment.

\\n

● Deliberate - misgendering or use of ‘dead’ or rejected names.

\\n

● Gratuitous or - off-topic sexual images or behaviour in spaces where they’re not appropriate. - ● Physical contact and simulated physical contact (eg, textual descriptions - like “*hug*” or “*backrub*”) without consent or after a request to stop. 4 -

\\n

● Threats of violence

\\n

● Incitement of violence towards - any individual, including encouraging a person to commit suicide or to engage - in self-harm.

\\n

● Deliberate intimidation

\\n

● Stalking or - following

\\n

● Harassing photography or recording, including logging - online activity for harassment purposes.

\\n

● Sustained disruption - of discussion

\\n

● Unwelcome sexual attention

\\n

● Pattern of - inappropriate social contact, such as requesting/assuming inappropriate levels - of intimacy with others.

\\n

● Continued one-on-one communication after - requests to cease.

\\n

● Deliberate “outing” of any aspect of a person’s - identity without their consent except as necessary to protect vulnerable people - from intentional abuse.

\\n

● Publication of non-harassing private communication. - R-Ladies prioritizes marginalized people’s safety over privileged people’s - comfort. The Founding Members will not act on complaints regarding:

\\n

● - ‘Reverse’ -isms, including ‘reverse racism,’ ‘reverse sexism,’ and ‘cisphobia’ -

\\n

● Reasonable communication of boundaries, such as “leave me alone,” - “go away,” or “I’m not discussing this with you.”

\\n

● Communicating - in a ‘tone’ you don’t find congenial

\\n

● Criticizing racist, sexist, - cissexist, or otherwise oppressive behavior or assumptions Reporting If you - are being harassed by a member/guest/participant of/at R-Ladies, notice that - someone else is being harassed, or have any other concerns, please contact - the Founding Members via reporting@rladies.org. Local incidences will be handled - together with the local organisers. If the person who is harassing you is - on the team, they will recuse themselves from handling your incident. We will - respond as promptly as we can. This code of conduct applies to R-Ladies spaces, - but if you are being harassed by a member/guest/participant of/at R-Ladies - outside our spaces, we still want to know about it. We will take all good-faith - reports of harassment by R-Ladies members, especially the 5 Founding Members, - seriously. This includes harassment outside our spaces and harassment that - took place at any point in time. The Founding Members reserve the right to - exclude people from R-Ladies based on their past behavior, including behavior - outside R-Ladies spaces and behavior towards people who are not in R-ladies. - In order to protect volunteers from abuse and burnout, we reserve the right - to reject any report we believe to have been made in bad faith. Reports intended - to silence legitimate criticism may be deleted without response. We will respect - confidentiality requests for the purpose of protecting victims of abuse. At - our discretion, we may publicly name a person about whom we’ve received harassment - complaints, or privately warn third parties about them, if we believe that - doing so will increase the safety of R-Ladies members or the general public. - We will not name harassment victims without their affirmative consent.

\\n

Consequences -

\\n

Participants asked to stop any harassing behavior are expected - to comply immediately. If a participant engages in harassing behavior, the - Founding Members may take any action they deem appropriate, up to and including - expulsion from all R-Ladies spaces and identification of the participant as - a harasser to other R-Ladies members or the general public.

\\n
\\n

This - policy is licensed under the Creative Commons Zero license.

\\n
\\n
\",\"founded_date\":1477133796000,\"gender_female\":0.7680000066757202,\"gender_male\":0.14666666090488434,\"gender_other\":0.01066666655242443,\"gender_unknown\":0.07466666400432587,\"id\":20851840,\"last_event\":1605807000000,\"lat\":41.400001525878906,\"lon\":2.1700000762939453,\"member_count\":592,\"name\":\"R-Ladies - Barcelona\",\"past_events\":19,\"past_rsvps\":569,\"pro_join_date\":1540768517043,\"repeat_rsvpers\":121,\"rsvps_per_event\":29.947368621826172,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15280,\"name\":\"Statistical Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":118103,\"name\":\"Women Mentoring - Women\",\"urlkey\":\"women-mentoring-women\"},{\"id\":133584,\"name\":\"statistical - programming\",\"urlkey\":\"statistical-programming\"},{\"id\":144477,\"name\":\"Women's - Support\",\"urlkey\":\"womens-support\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-barcelona\",\"status\":\"Active\",\"cursor\":\"[['1540768517043'],['20851840']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":182521490,\"name\":\"Natalia - VT\",\"permission\":\"coorganizer\"},{\"member_id\":201257471,\"name\":\"Ania - A\",\"permission\":\"coorganizer\"},{\"member_id\":215388867,\"name\":\"R-Ladies - BCN\",\"permission\":\"coorganizer\"},{\"member_id\":225104176,\"name\":\"Mireia - Ramos-Rodríguez\",\"permission\":\"coorganizer\"},{\"member_id\":285202446,\"name\":\"Sarah - B\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.91740036010742,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Manchester\",\"country\":\"United - Kingdom\",\"description\":\"

R-Ladies Manchester is part of a global initiative, - R-Ladies Global, designed to improve the gender diversity of R users worldwide - and in particular, to improve the participation and experience of women in - the R community. As part of the initiative, R-Ladies Manchester will host - a number of talks and workshops about the use of R. It doesn't matter if you - never used R or if you are an R expert, R-Ladies Manchester welcomes anyone - with an interest in R. The goal is to promote R, exchange knowledge and create - an R community among women. We are fully inclusive and respectful of LGBT - identities - our priority is to provide a safe community space for anyone - identifying as female who is interested in and/or working with R.

\\n

Follow - us on twitter @RladiesManchester - and @RLadiesGlobal, and - on Github at github.com/RLadiesManchester

\\n
\",\"founded_date\":1480459381000,\"gender_female\":0.7847682237625122,\"gender_male\":0.09602648764848709,\"gender_other\":0.0066225165501236916,\"gender_unknown\":0.11258278042078018,\"id\":21314716,\"last_event\":1586280600000,\"lat\":53.470001220703125,\"lon\":-2.2300000190734863,\"member_count\":476,\"name\":\"R-Ladies - Manchester\",\"past_events\":20,\"past_rsvps\":402,\"pro_join_date\":1540768511070,\"repeat_rsvpers\":87,\"rsvps_per_event\":20.100000381469727,\"state\":\"18\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1452302,\"name\":\"Statistical - Modeling\",\"urlkey\":\"statistical-modeling\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-manchester\",\"status\":\"Active\",\"cursor\":\"[['1540768511070'],['21314716']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":90907592,\"name\":\"Tatjana - Kecojevic Derbyshire\",\"permission\":\"coorganizer\"},{\"member_id\":107413022,\"name\":\"Ellen - Talbot\",\"permission\":\"coorganizer\"},{\"member_id\":169122972,\"name\":\"Bethan - Blakeley\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.11429977416992,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Columbus\",\"country\":\"USA\",\"description\":\"

R-Ladies - Columbus is part of a worldwide organization to promote gender diversity in - the R community. Midwest’s first R Programming Community for Women! We are - aiming to bring together women at all R proficiency levels living in/or near - Columbus, Ohio. Members can have different motivations such as:

\\n

- “I want to learn R”,

\\n

“I want to switch to R”,

\\n

“I am an - expert and want to share my expertise”,

\\n

“I am looking for a co-developer - for my R package”.

\\n

No matter what your motivation is and how well - you use R, we would like to see you among us. All events are FREE

\\n

Leadership - and mentoring roles are reserved for women and nonbinary people, and men are - welcome to attend meetings as guests. The priority of this meetup is the development - and support of its female members, and we therefore reserve the right to guard - this interest through whatever measures we deem appropriate. R-Ladies is emphatically - queer and trans friendly. R-Ladies is dedicated to providing a harassment-free - experience for everyone. We do not tolerate harassment of participants in - any form.

\\n

Find us on Twitter: https://twitter.com/RLadiesColumbus

\\n

We - also have a Slack workspace! Join us for more news, discussions and getting - help from the R-Ladies Columbus members. 

\\n

Fill out this short - form: https://forms.gle/Jic3mgQjLZ8E7Y9RA

\\n

And - we will send you the invitation link!

\\n


\\n

R-Ladies Columbus - is a local chapter of R-Ladies Global. More information on R- Ladies can be - found at:

\\n

Github: https://github.com/rladies

\\n

Twitter: - https://twitter.com/rladiesglobal

\\n

Website: - https://rladies.org/

\",\"founded_date\":1475608147000,\"gender_female\":0.6270871758460999,\"gender_male\":0.27087199687957764,\"gender_other\":0.011131725274026394,\"gender_unknown\":0.09090909361839294,\"id\":20600376,\"last_event\":1607641200000,\"lat\":40.0099983215332,\"lon\":-83.0199966430664,\"member_count\":890,\"name\":\"R-Ladies - Columbus\",\"next_event\":1610665200000,\"past_events\":42,\"past_rsvps\":1201,\"pro_join_date\":1540768496010,\"repeat_rsvpers\":212,\"rsvps_per_event\":28.595237731933594,\"state\":\"OH\",\"topics\":[{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":15083,\"name\":\"Intellectual - Discussion\",\"urlkey\":\"intellectual-discussion\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":65780,\"name\":\"Knowledge Sharing\",\"urlkey\":\"knowledge-sharing\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":3,\"urlname\":\"rladies-columbus\",\"status\":\"Active\",\"cursor\":\"[['1540768496010'],['20600376']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":108454502,\"name\":\"Genelle - Denzin\",\"permission\":\"coorganizer\"},{\"member_id\":214405594,\"name\":\"Nikki - Thomas\",\"permission\":\"coorganizer\"},{\"member_id\":214923751,\"name\":\"Amanda - Gadrow\",\"permission\":\"coorganizer\"},{\"member_id\":223383412,\"name\":\"Ezgi - Karaesmen\",\"permission\":\"coorganizer\"},{\"member_id\":225591719,\"name\":\"Katie - Sasso\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.576698303222656,\"categories\":[{\"id\":2,\"name\":\"career/business\",\"shortname\":\"career-business\"}],\"city\":\"Nashville\",\"country\":\"USA\",\"description\":\"

R-Ladies - Nashville is part of a worldwide organization to promote gender diversity - in the R community. We aspire to encourage and support minority genders in - Nashville interested in learning or sharing their knowledge of R. For more - information, contact us at nashville@rladies.org.

\\n

R-Ladies - Nashville seeks to create a space where minority genders (including but not - limited to cis/trans women, trans men, non-binary, genderqueer, agender) are - empowered to teach and are comfortable with asking questions. We welcome all - those who will help us toward that goal. Those identifying with minority genders - can be leaders, mentors, and members/attendees; others are welcome to attend - as guests of a member (+1 on RSVP). The R-Ladies Global Code of Conduct can - be found here, - and full mission statement can be found here.

\\n

Follow - us on Twitter @RLadiesNash - and @RLadiesGlobal. - Welcome!

\",\"founded_date\":1475090435000,\"gender_female\":0.7528089880943298,\"gender_male\":0.16011236608028412,\"gender_other\":0.008426966145634651,\"gender_unknown\":0.07865168899297714,\"id\":20493986,\"last_event\":1583794800000,\"lat\":36.16999816894531,\"lon\":-86.77999877929688,\"member_count\":507,\"name\":\"R-Ladies - Nashville\",\"past_events\":18,\"past_rsvps\":322,\"pro_join_date\":1540768487077,\"repeat_rsvpers\":61,\"rsvps_per_event\":17.88888931274414,\"state\":\"TN\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-nashville\",\"status\":\"Active\",\"cursor\":\"[['1540768487077'],['20493986']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":132559112,\"name\":\"MaryLvV\",\"permission\":\"coorganizer\"},{\"member_id\":202811487,\"name\":\"Lucy\",\"permission\":\"coorganizer\"},{\"member_id\":213434886,\"name\":\"Jennifer - Thompson\",\"permission\":\"coorganizer\"},{\"member_id\":214116347,\"name\":\"Meredith - Broadway\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.775800704956055,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Istanbul\",\"country\":\"Turkey\",\"description\":\"

İstanbul'un - KADINLAR için ilk R Programlama topluluğu! 

\\n

İster yeni ister - profesyonel R kullanıcısı olun, topluluğumuza katılın.
R yeneteklerinizi - geliştirmek, programlama konusunda cesaretlendirmek, katılımcıların R kullanımını - öğrenmesine ve R ile tecrübe kazanmasına yardımcı olmak adına programlar düzenleyeceğiz. 

\\n

KADINLARIN - programalama dünyasında daha çok yer alması, STEM (science, technology, engineering, - math) kariyerlerinde ilerlemesi ve tüm dünyada yaygın olarak kullanılan R - pogramlama dünyasına adım atmaları için güzel bir fırsat olduğunu düşündüğümüz - etkinliğimize davetlisiniz!

\\n

Bazı konu başlıklarımız şu şekilde:

\\n

• - R & RStudio

\\n

• R'ın kullanım alanları ve sizlere nasıl yardımcı olacağı - (iş/pozisyon, maaş)

\\n

• Veri Görselleştirmek • Makine Öğrenmesi • Matematik - & İstatistik

\\n

• Metin analizi

\\n

• Boyutsal analiz

\\n

• - Dinamik raporlar ve Dashboardlar oluşturmak

\\n

• .....ve ilgi alanınız - olabilecek her şey! :) 

\\n

Organizasyonla ilgili her soru için: hazel@rladies.org, - istanbul@rladies.org

\\n

NOT: Topluluk Politikası ve Davranış - İlkeleri: 

\\n

Topluluktaki liderlik ve mentorluk rolleri KADIN katılımcılar - tarafından yapılacak, talebe göre öğrenmek konusunda ısrarlı olan diğer cinsiyetten - katılımcıları da ağırlayacağız. Lütfen kadınlar haricindeki diğer katılımcılar - gelmeden önce bir maille bize durumu bildirsinler. Bununla birlikte - topluluğun asıl amacı, hangi rolde olursa olsun KADIN katılımcıların gelişimini - sağlamak ve bunu korumak. 

\\n

Tüm üyeler ve katılımcılardan birbirilerine - saygı göstermesi beklenmektedir.
Bu topluluk sosyal bir grişimdir, ve - herhangi bir şekilde katılımcılardan ya da üyelerden ücret talep edilmeyecektir. - Ancak üyelerden nezaketsiz ve saygısız davrananlar olduğunda, bildirildiği - takdirde, Meetup diğer etkinlikler için kendisine para cezası uygulayabilir. 

\\n

------------------------------- -
ENGLISH
------------------------------
Istanbul's first - R Programming Community for Women!
This is a non-profit women's coding - club for all R proficiency levels, whether you're a new or aspiring R user, - or an experienced female R programmer interested in mentoring & networking. - We are a community designed to encourage, support and ultimately drive the - development of our own R skills, through meetups where members tackle hands-on - tutorials and exercises to learn specific functionality, or attending relevant - external events, building knowledge and experience with each event. Promoting - women's access to STEM careers, the Free Software Movement, and contributing - to the global R Community! Meetup topics include: • Kickstarting R & RStudio

\\n

• - Importance/Relevance of R skills (use-cases, jobs/roles, salaries)

\\n

• - Data Visualisation

\\n

• Machine Learning algorithms

\\n

• Maths - & Stats

\\n

• Text Mining

\\n

• Spatial Analytics

\\n

• Building - Interactive Web Apps

\\n

• Building Dynamic Reports & Dashboards

\\n

• - .....and anything else of interest! :)

\\n

Further questions about - the organisation: hazel@rladies.org, istanbul@rladies.org

\\n


PS - Community Policies & Code of Conduct: the leadership & mentoring roles - within this Community are held exclusively by women - however due to demand, - we have formally opened learning participation to all genders, hence are fully - inclusive re. attendance in order to learn. However, the stated priority of - this meetup is the development & support of it's female members acting in - whichever roles, and we therefore reserve the right to guard this interest - through whatever measures we deem appropriate. All members & event attendees - are expected to fully respect each other & the mandate of this Meetup, or - face expulsion of any form, whether from events, Meetup membership, or any - other Community participation. This Community is a social initiative, hence - will never involve charges or fees to participate, unless a member is found - to be disrespectful of the goodwill on which the Meetup exists - in this case - the Meetup may impose a monetary penalty should the offending member wish - to participate in further events (at the discretion of the leadership team).

\",\"founded_date\":1473166132000,\"gender_female\":0.6395899057388306,\"gender_male\":0.2823343873023987,\"gender_other\":0.007886434905230999,\"gender_unknown\":0.07018927484750748,\"id\":20394109,\"last_event\":1594227600000,\"lat\":41.0099983215332,\"lon\":28.959999084472656,\"member_count\":1905,\"name\":\"R-Ladies - Istanbul\",\"past_events\":35,\"past_rsvps\":1197,\"pro_join_date\":1540768480426,\"repeat_rsvpers\":222,\"rsvps_per_event\":34.20000076293945,\"state\":\"\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-istanbul\",\"status\":\"Active\",\"cursor\":\"[['1540768480426'],['20394109']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":148141522,\"name\":\"Hazel - Kavılı\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.0088005065918,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Madrid\",\"country\":\"Spain\",\"description\":\"

¡La - primera comunidad de España de R para mujeres! Aquí encontrarás compañeras - en el mundo de la programación en R, desde profesionales que tienen R como - herramienta principal de trabajo hasta aficionadas que quieren aprender y - seguir mejorando. ¡Unete, te esperamos! 

\\n

R-Ladies Madrid es - una rama local parte de R-Ladies Global, una comunidad open source donde mujeres - nos apoyamos y nos ayudamos a crecer dentro de la comunidad de R. Además R-Ladies - Global es un proyecto financiado por el R Consortium-Linux Foundation.

\\n

Si - alguien está interesada en impartir un taller o dar una charla en un evento - de R-Ladies escribid a 

\\n

madrid[at]rladies[dot]org

\\n

- https://www.r-consortium.org/news/blogs/201... -

\\n

Spain's first R programming community for women! Building - a social network of female R practitioners and learners in Madrid to support - knowledge sharing and collaborative learning! Join us!

\\n

R-Ladies Madrid - is a local chapter of a global open source community promoting female R practitioners - and learners, R-Ladies Global, which is an R Consortium-Linux Foundation supported - project.

\\n


\\n

Políticas y Código de Conducta

\\n

En - la comunidad R-Ladies los puestos de responsabilidad como speakers y orientadoras - son exclusivamente para mujeres, aún así la asistencia a las reuniones está - abierta a gente de todos los géneros. Siempre se dará prioridad a la participación - femenina ya que este grupo nació con la intención de animar y apoyar a mujeres - en los trabajos STEM (Science, Technology, Engineering & Math) y en la - comunidad de R por lo que las organizadoras de R-Ladies Madrid tienen la responsabilidad - y el derecho de tomar las acciones oportunas para salvaguardar los intereses - de la comunidad.

\\n

Todos los miembros y asistentes tienen que - ser respetuosos tanto en la comunidad online como en los eventos, si no es - así la penalización es la expulsión del evento o de la comunidad, dependiendo - del caso. 

\\n

Esta comunidad es una iniciativa social por - lo que no hay ninguna clase de recargo y todos los eventos serán gratuitos.

\\n

Código - de conducta completo.

\",\"founded_date\":1472848175000,\"gender_female\":0.6695278882980347,\"gender_male\":0.2424892634153366,\"gender_other\":0.01287553645670414,\"gender_unknown\":0.07510729879140854,\"id\":20381623,\"last_event\":1605807000000,\"lat\":40.41999816894531,\"lon\":-3.7100000381469727,\"member_count\":1584,\"name\":\"R-Ladies - Madrid\",\"past_events\":40,\"past_rsvps\":1536,\"pro_join_date\":1540768473214,\"repeat_rsvpers\":254,\"rsvps_per_event\":38.400001525878906,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":22076,\"name\":\"Women - Coders\",\"urlkey\":\"women-coders\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":90286,\"name\":\"Social - Coding\",\"urlkey\":\"social-coding\"},{\"id\":98380,\"name\":\"R Project - for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-madrid\",\"status\":\"Active\",\"cursor\":\"[['1540768473214'],['20381623']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":130630162,\"name\":\"Inés - Huertas\",\"permission\":\"coorganizer\"},{\"member_id\":185513227,\"name\":\"Leticia - Martín-Fuertes\",\"permission\":\"coorganizer\"},{\"member_id\":199151887,\"name\":\"Bea - Hernández\",\"permission\":\"coorganizer\"},{\"member_id\":239726117,\"name\":\"Elen - Irazabal\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.23680114746094,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Melbourne\",\"country\":\"Australia\",\"description\":\"

Australia's - first R Programming community for women & supporters! A local chapter - of R-Ladies Global, R-Ladies Melbourne Inc. exists to promote gender diversity - in the R community, both in the Australia and worldwide.

\\n

Find - us on TwitterFacebook and Github for more - information on news, presentations and code!

\\n

The R community - suffers from an underrepresentation of minority genders (including but not - limited to cis/trans women, trans men, non-binary, genderqueer, agender) in - every role and area of participation, whether as leaders, package developers, - conference speakers, conference participants, educators, or users (see - recent stats).

\\n

As a diversity initiative, the mission of R-Ladies - is to achieve proportionate representation by encouraging, inspiring, and - empowering people of genders currently underrepresented in the R community. - R-Ladies’ primary focus, therefore, is on supporting minority gender R enthusiasts - to achieve their programming potential, by building a collaborative global - network of R leaders, mentors, learners, and developers to facilitate individual - and collective progress worldwide.

\\n

R-Ladies Melbourne welcomes members - of all R proficiency levels, whether you're a new or aspiring R user, or an - experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing.

\\n

Please - note that cis men are welcome to join our meetups. However, speakers and teachers - at R-Ladies Melbourne events are of minority genders.

\\n


PS - Community Policies & Code of Conduct: R-Ladies Melbourne is dedicated - to providing a harassment-free event experiences for everyone, regardless - of gender, gender identity and expression, age, sexual orientation, disability, - physical appearance, body size, race, ethnicity, or religion (or lack thereof). - We do not tolerate harassment of R-Ladies Melbourne event participants in - any form. Sexual language and imagery is not appropriate for any event venue, - including talks, workshops, parties, Twitter and other online media. R-Ladies - Melbourne event participants violating these rules may be sanctioned or expelled - from future events hosted by R-Ladies Melbourne at the discretion of the organisers. -

We also want to remind the R - User Group Code of Conduct to which all our members should comply.  -

PPS Photos, Films and all other media/recordings: Photographs - and/or video/other media will be taken at events held by this community. By - taking part in an R-Ladies Melbourne event you grant the community organisers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organiser. -

\\n

See you at our next meet-up. 

\\n



-

\",\"founded_date\":1472776317000,\"gender_female\":0.6967930197715759,\"gender_male\":0.18950437009334564,\"gender_other\":0.0058309040032327175,\"gender_unknown\":0.10787171870470047,\"id\":20378903,\"last_event\":1605508200000,\"lat\":-37.810001373291016,\"lon\":144.9600067138672,\"member_count\":1739,\"name\":\"R-Ladies - Melbourne\",\"past_events\":61,\"past_rsvps\":2705,\"pro_join_date\":1540768464971,\"repeat_rsvpers\":467,\"rsvps_per_event\":44.344261169433594,\"state\":\"\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":47731,\"name\":\"Women - Science Technology Engineering & Mathematics\",\"urlkey\":\"women-science-technology-engineering-mathematics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":65944,\"name\":\"Girls - in Tech\",\"urlkey\":\"girlsintech\"},{\"id\":77965,\"name\":\"Introduction - to Functional Programming in R\",\"urlkey\":\"introduction-to-functional-programming-in-r\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-melbourne\",\"status\":\"Active\",\"cursor\":\"[['1540768464971'],['20378903']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14186305,\"name\":\"Alexandra\",\"permission\":\"coorganizer\"},{\"member_id\":80280332,\"name\":\"Göknur\",\"permission\":\"coorganizer\"},{\"member_id\":121333022,\"name\":\"Sepideh\",\"permission\":\"coorganizer\"},{\"member_id\":185671538,\"name\":\"Nikki - Rubinstein\",\"permission\":\"coorganizer\"},{\"member_id\":199345919,\"name\":\"Anna - Quaglieri\",\"permission\":\"coorganizer\"},{\"member_id\":212144532,\"name\":\"Soroor\",\"permission\":\"coorganizer\"},{\"member_id\":213502834,\"name\":\"Adele - Barug\",\"permission\":\"coorganizer\"},{\"member_id\":217727369,\"name\":\"Marie - Trussart\",\"permission\":\"coorganizer\"},{\"member_id\":217781044,\"name\":\"Lucy - \",\"permission\":\"coorganizer\"},{\"member_id\":248808709,\"name\":\"Sehrish - Kanwal\",\"permission\":\"coorganizer\"},{\"member_id\":278863118,\"name\":\"Ming - Kong\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.81209945678711,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Durham\",\"country\":\"USA\",\"description\":\"

The - mission of R-Ladies groups is to increase representation of women in global - R community through establishing local communities providing mentorship, collaborative - learning & support.

\\n

Anyone with an interest in R - is encouraged to participate. It doesn't matter if you never used R or if - you are an R expert.

\\n

Come and join us!

\\n

Github: - https://github.com/rladies

\\n

Twitter: - https://twitter.com/RLadiesRTP -

\\n

Website: https://rladies.org/

\\n

All - events are intended for women as leaders, mentors, members, and attendees. - We are emphatically queer and trans friendly. Men are welcomed to attend - as guests.

\\n


\\n

Community - Policies & Code of Conduct:
The leadership and mentoring roles - within this Community are held exclusively by women - however learning participation - is open to all genders. The stated priority of this meetup is the development - and support of its female members, and we therefore reserve the right to guard - this interest through whatever measures we deem appropriate. All members and - event attendees are expected to fully respect each other and the mandate of - this meetup, or face expulsion of any form, whether from events, meetup membership, - or any other Community participation.

\",\"founded_date\":1471270976000,\"gender_female\":0.821670413017273,\"gender_male\":0.09255079180002213,\"gender_other\":0.0022573363967239857,\"gender_unknown\":0.08352144807577133,\"id\":20317472,\"last_event\":1609975800000,\"lat\":36,\"lon\":-78.9000015258789,\"member_count\":799,\"name\":\"R-Ladies - RTP\",\"past_events\":50,\"past_rsvps\":895,\"pro_join_date\":1540768376771,\"repeat_rsvpers\":148,\"rsvps_per_event\":17.899999618530273,\"state\":\"NC\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":47731,\"name\":\"Women - Science Technology Engineering & Mathematics\",\"urlkey\":\"women-science-technology-engineering-mathematics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":280601,\"name\":\"Women - in Computing\",\"urlkey\":\"women-in-computing\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-rtp\",\"status\":\"Active\",\"cursor\":\"[['1540768376771'],['20317472']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":4780099,\"name\":\"Elaine - McVey\",\"permission\":\"coorganizer\"},{\"member_id\":92462292,\"name\":\"Rolliene - Mallari\",\"permission\":\"event_organizer\"},{\"member_id\":184247241,\"name\":\"Stephanie - Zimmer\",\"permission\":\"coorganizer\"},{\"member_id\":214092340,\"name\":\"Sheila - Saia\",\"permission\":\"coorganizer\"},{\"member_id\":230770866,\"name\":\"Kateri - Salk\",\"permission\":\"coorganizer\"},{\"member_id\":268094763,\"name\":\"Ezinne - Nwankwo\",\"permission\":\"event_organizer\"}]},{\"average_age\":33.93840026855469,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"London\",\"country\":\"United - Kingdom\",\"description\":\"

The UK's first R Programming community for - self-identified women & minority genders! A local chapter of R-Ladies - Global, R-Ladies London exists to promote gender diversity in the R community, - both in the UK and worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities (which many lead R-Ladies are) - our priority is to provide a safe - community space for anyone identifying as a minority gender who is interested - in and/or working with R. As a founding principle, there is no cost or charge - to participate in any of our R-Ladies communities around the world.

\\n

R-Ladies - London welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community! 

\\n

@RLadiesLondon | london@rladies.org - (email)

\\n

@RLadiesGlobal | info@rladies.org (email) | rladies.org - (website) | github.com/rladies

\\n

PS Community Policies - & Code of Conduct: the leadership, mentoring & teaching roles - within this Community are held exclusively by minority genders (majority gender - speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we therefore reserve the right to guard this interest through - whatever measures the leadership team deem appropriate. Anyone involved with - R-Ladies London is expected to fully respect each other, the mandate of this - community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team. 

\\n

Full - community guidelines are found here: https://github.com/rladies/starter-kit/wiki...

\\n

PPS - Photos, Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies London event you grant the community organisers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organiser. 

\",\"founded_date\":1454258193000,\"gender_female\":0.8669354915618896,\"gender_male\":0.04838709533214569,\"gender_other\":0.011088709346950054,\"gender_unknown\":0.07358870655298233,\"id\":19474893,\"last_event\":1593109800000,\"lat\":51.52000045776367,\"lon\":-0.10000000149011612,\"member_count\":1554,\"name\":\"R-Ladies - London\",\"past_events\":55,\"past_rsvps\":1822,\"pro_join_date\":1540768369203,\"repeat_rsvpers\":401,\"rsvps_per_event\":33.12727355957031,\"state\":\"17\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":22076,\"name\":\"Women - Coders\",\"urlkey\":\"women-coders\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":98842,\"name\":\"Business - Analytics\",\"urlkey\":\"business-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":672792,\"name\":\"To promote - R for big data analytics\",\"urlkey\":\"to-promote-r-for-big-data-analytics\"},{\"id\":773382,\"name\":\"Open - Source Analytics\",\"urlkey\":\"open-source-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-london\",\"status\":\"Active\",\"cursor\":\"[['1540768369203'],['19474893']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":11407379,\"name\":\"Kasia - \",\"permission\":\"coorganizer\"},{\"member_id\":12084070,\"name\":\"Grace - Meyer\",\"permission\":\"coorganizer\"},{\"member_id\":108815342,\"name\":\"Ágnes - Salánki\",\"permission\":\"coorganizer\"},{\"member_id\":141168862,\"name\":\"Claudia - Vitolo\",\"permission\":\"coorganizer\"},{\"member_id\":200017844,\"name\":\"Hannah\",\"permission\":\"coorganizer\"},{\"member_id\":203864701,\"name\":\"Emma - Vestesson\",\"permission\":\"coorganizer\"},{\"member_id\":213957998,\"name\":\"Fiona - Spooner\",\"permission\":\"event_organizer\"},{\"member_id\":220567958,\"name\":\"Teresa - Del Bianco\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.237300872802734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Perth\",\"country\":\"Australia\",\"description\":\"

R-Ladies - Perth welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!
A local - chapter of R-Ladies Global, R-Ladies Perth exists to promote gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Perth is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Perth event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1540267446000,\"gender_female\":0.6320000290870667,\"gender_male\":0.17599999904632568,\"gender_other\":0,\"gender_unknown\":0.19200000166893005,\"id\":30375344,\"last_event\":1576575000000,\"lat\":-31.959999084472656,\"lon\":115.83999633789062,\"member_count\":249,\"name\":\"R-Ladies - Perth\",\"past_events\":10,\"past_rsvps\":136,\"pro_join_date\":1540267526006,\"repeat_rsvpers\":27,\"rsvps_per_event\":13.600000381469727,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-perth\",\"status\":\"Active\",\"cursor\":\"[['1540267526006'],['30375344']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":209337441,\"name\":\"Rebecca\",\"permission\":\"coorganizer\"},{\"member_id\":259652859,\"name\":\"Pallavi - Verma \",\"permission\":\"coorganizer\"},{\"member_id\":265302912,\"name\":\"Alyce - Russell\",\"permission\":\"coorganizer\"},{\"member_id\":266664064,\"name\":\"Sarita - Bennett\",\"permission\":\"coorganizer\"},{\"member_id\":266749885,\"name\":\"Nicola - Armstrong\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.214298248291016,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"La - Paz\",\"country\":\"Bolivia\",\"description\":\"

Lo que hacemos

\\n

R-Ladies - La Paz es parte de una organización mundial para promover la Diversidad de - Género en la comunidad R.

\\n
\\n

Nuestra meta es crear una atmósfera - amigable para personas interesadas en programar en R en La Paz que se identifiquen - como mujer o con géneros disidentes (por ejemplo, personas con género fluído - o agénero, entre otras). No importa si nunca usaste R ó si tienes R como herramienta - principal de trabajo. El objetivo es promover R, intercambiar conocimiento - y crear una red de contactos.

\\n
\\n

Esta es una iniciativa social. - Todos los eventos serán gratuitos.

\\n
\\n

¡Súmate a este Meetup para - enterarte de los próximos eventos! ¡Te esperamos!

\\n
\\n

Nos encuentras - en:

\\n

Facebook: https://www.facebook.com/RLadiesLaPaz

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n
\\n

Para - más detalles sobre la iniciativa R-Ladies Global visita rladies.org (https://rladies.org/).

\\n
\\n

Política - y Código de Conducta de R-Ladies:

\\n
\\n

En la comunidad R-Ladies - los puestos de responsabilidad como organizador, orador o mentor son exclusivamente - para personas que se identifican con el género femenino o con géneros disidentes. - Aún así, la asistencia a las reuniones está abierta a personas de todos los - géneros.

\\n
\\n

Siempre se dará prioridad a la participación de minorías - de género en la comunidad ya que este grupo nació con la intención de animar - y apoyar a las personas cuyo género está subrepresentado en los trabajos STEM - (Science, Technology, Engineering & Math) y en la comunidad de R. Les - organizadores de R-Ladies tienen la responsabilidad y el derecho de tomar - las acciones oportunas para salvaguardar los intereses de la comunidad.

\\n
\\n

Código - de conducta completo. (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. (https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct)

\",\"founded_date\":1540266215000,\"gender_female\":0.6461538672447205,\"gender_male\":0.32307693362236023,\"gender_other\":0,\"gender_unknown\":0.03076923079788685,\"id\":30375244,\"last_event\":1607781600000,\"lat\":-16.5,\"lon\":-68.1500015258789,\"member_count\":270,\"name\":\"R-Ladies - La Paz\",\"next_event\":1610825400000,\"past_events\":23,\"past_rsvps\":349,\"pro_join_date\":1540266374463,\"repeat_rsvpers\":77,\"rsvps_per_event\":15.17391300201416,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-la-paz\",\"status\":\"Active\",\"cursor\":\"[['1540266374463'],['30375244']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":97934722,\"name\":\"Nathaly - Alarcón\",\"permission\":\"coorganizer\"},{\"member_id\":113249082,\"name\":\"Ruth - Chirinos\",\"permission\":\"coorganizer\"},{\"member_id\":305753937,\"name\":\"Carmiña - Matienzo\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.47370147705078,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Montpellier\",\"country\":\"France\",\"description\":\"

R-Ladies - Montpellier welcomes members of all R proficiency levels, whether you're a - new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
-

\\n

A local chapter of R-Ladies Global, R-Ladies Montpellier exists - to promote gender diversity in the R community worldwide. We are pro-actively - inclusive of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.
We are part of Global - R-Ladies group. You can access our presentations, R scripts, and Projects - on our Github account and follow us on twitter to stay up to date about R-Ladies - news!

\\n

Website: https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Montpellier is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Montpellier event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1539810390000,\"gender_female\":0.6666666865348816,\"gender_male\":0.2982456088066101,\"gender_other\":0,\"gender_unknown\":0.035087719559669495,\"id\":30339934,\"last_event\":1606842000000,\"lat\":43.61000061035156,\"lon\":3.869999885559082,\"member_count\":133,\"name\":\"R-Ladies - Montpellier\",\"past_events\":8,\"past_rsvps\":142,\"pro_join_date\":1539810549758,\"repeat_rsvpers\":30,\"rsvps_per_event\":17.75,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1512213,\"name\":\"Data Science - using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-montpellier\",\"status\":\"Active\",\"cursor\":\"[['1539810549758'],['30339934']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":205761030,\"name\":\"Faustine - B\",\"permission\":\"coorganizer\"},{\"member_id\":212136517,\"name\":\"Cécile - SAUDER\",\"permission\":\"coorganizer\"},{\"member_id\":266132487,\"name\":\"Criscely - Luján\",\"permission\":\"coorganizer\"}]},{\"average_age\":30,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Kathmandu\",\"country\":\"Nepal\",\"description\":\"

R-Ladies - Kathmandu welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!

\\n

A - local chapter of R-Ladies Global, R-Ladies Kathmandu exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesKtm ( https://twitter.com/RLadiesKtm )
Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Kathmandu is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Kathmandu event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1538413406000,\"gender_female\":0.5714285969734192,\"gender_male\":0.3571428656578064,\"gender_other\":0,\"gender_unknown\":0.0714285746216774,\"id\":30017254,\"last_event\":1585379700000,\"lat\":27.709999084472656,\"lon\":85.30999755859375,\"member_count\":80,\"name\":\"R-Ladies - Kathmandu\",\"past_events\":4,\"past_rsvps\":53,\"pro_join_date\":1538413849947,\"repeat_rsvpers\":8,\"rsvps_per_event\":13.25,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-kathmandu\",\"status\":\"Active\",\"cursor\":\"[['1538413849947'],['30017254']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":264512633,\"name\":\"Prakriti - Dhungana\",\"permission\":\"coorganizer\"}]},{\"average_age\":31,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Des - Moines\",\"country\":\"USA\",\"description\":\"

R-Ladies Des Moines welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Des Moines exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Des Moines is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Des Moines event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1537717266000,\"gender_female\":0.9285714030265808,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0.0714285746216774,\"id\":29929892,\"last_event\":1558395000000,\"lat\":41.599998474121094,\"lon\":-93.62999725341797,\"member_count\":25,\"name\":\"R-Ladies - Des Moines\",\"past_events\":4,\"past_rsvps\":14,\"pro_join_date\":1537717403205,\"repeat_rsvpers\":3,\"rsvps_per_event\":3.5,\"state\":\"IA\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":24553,\"name\":\"Natural - Language Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-des-moines\",\"status\":\"Active\",\"cursor\":\"[['1537717403205'],['29929892']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":247340649,\"name\":\"Amanda - Rae\",\"permission\":\"coorganizer\"},{\"member_id\":264162819,\"name\":\"Catie - Bach\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.5713996887207,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Iowa - City\",\"country\":\"USA\",\"description\":\"

R-Ladies Iowa City welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Iowa City exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )
Github: - https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Iowa City is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies Iowa - City event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1537307694000,\"gender_female\":0.5833333134651184,\"gender_male\":0.23333333432674408,\"gender_other\":0,\"gender_unknown\":0.18333333730697632,\"id\":29865126,\"last_event\":1571351400000,\"lat\":41.65999984741211,\"lon\":-91.52999877929688,\"member_count\":109,\"name\":\"R-Ladies - Iowa City\",\"past_events\":5,\"past_rsvps\":41,\"pro_join_date\":1537308025014,\"repeat_rsvpers\":8,\"rsvps_per_event\":8.199999809265137,\"state\":\"IA\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural - Language Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-iowa-city\",\"status\":\"Active\",\"cursor\":\"[['1537308025014'],['29865126']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":263592273,\"name\":\"Marie - Ozanne\",\"permission\":\"coorganizer\"},{\"member_id\":263595916,\"name\":\"Alexandra - Curtis\",\"permission\":\"coorganizer\"},{\"member_id\":263597325,\"name\":\"Anna - Reisetter\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.69379997253418,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Toronto\",\"country\":\"Canada\",\"description\":\"

R-Ladies - Toronto welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!

\\n

A - local chapter of R-Ladies Global, R-Ladies Toronto exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

\\n

We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Toronto is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Toronto event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1537287846000,\"gender_female\":0.5942028760910034,\"gender_male\":0.17971014976501465,\"gender_other\":0.0028985508251935244,\"gender_unknown\":0.2231884002685547,\"id\":29862217,\"last_event\":1597273200000,\"lat\":43.7400016784668,\"lon\":-79.36000061035156,\"member_count\":616,\"name\":\"R-Ladies - Toronto\",\"past_events\":6,\"past_rsvps\":266,\"pro_join_date\":1537288053158,\"repeat_rsvpers\":47,\"rsvps_per_event\":44.33333206176758,\"state\":\"ON\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural Language - Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":39679,\"name\":\"Neural - Networks\",\"urlkey\":\"neural-networks\"},{\"id\":55324,\"name\":\"Data Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-toronto\",\"status\":\"Active\",\"cursor\":\"[['1537288053158'],['29862217']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":12761493,\"name\":\"Nicole - Radziwill\",\"permission\":\"coorganizer\"},{\"member_id\":104574762,\"name\":\"Erle - Holgersen\",\"permission\":\"coorganizer\"},{\"member_id\":143064702,\"name\":\"Sharla - Gelfand\",\"permission\":\"coorganizer\"},{\"member_id\":200494051,\"name\":\"Monica - Alexander\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.270301818847656,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Vienna\",\"country\":\"Austria\",\"description\":\"

R-Ladies - Vienna welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! <br>A - local chapter of R-Ladies Global, R-Ladies Vienna exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. <br>We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org - <br>Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal ) <br>Github: - https://github.com/rladies

- \\n

PS Community Policies & Code of Conduct: <br>The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Vienna is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. <br> <br>

\\n

Full - community guidelines are found here: https://github.com/rladies/starter-kit/wiki <br> - <br>

\\n

PPS Photos, Films and all other media/recordings: - <br>Photos, Films, and all other media/recordings: photographs and/or - video/other media will be taken at events held by this community. By taking - part in an R-Ladies Vienna event you grant the community organizers full rights - to use the images resulting from the photography/video filming/media, and - any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1537203820000,\"gender_female\":0.698113203048706,\"gender_male\":0.1320754736661911,\"gender_other\":0.01886792480945587,\"gender_unknown\":0.15094339847564697,\"id\":29851462,\"last_event\":1575046800000,\"lat\":48.220001220703125,\"lon\":16.3700008392334,\"member_count\":216,\"name\":\"R-Ladies - Vienna\",\"past_events\":10,\"past_rsvps\":134,\"pro_join_date\":1537203930606,\"repeat_rsvpers\":28,\"rsvps_per_event\":13.399999618530273,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural - Language Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-vienna\",\"status\":\"Active\",\"cursor\":\"[['1537203930606'],['29851462']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":145424142,\"name\":\"Laura - Vana\",\"permission\":\"coorganizer\"},{\"member_id\":263694593,\"name\":\"Camilla - Damian\",\"permission\":\"coorganizer\"}]},{\"average_age\":37.851898193359375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lancaster\",\"country\":\"United - Kingdom\",\"description\":\"

R-Ladies Lancaster welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. 

\\n

A local - chapter of R-Ladies Global, R-Ladies Lancaster exists to promote gender diversity - in the R community worldwide. All events are intended for all women who are - interested in attending. We are emphatically queer and trans friendly. Men - are welcome to attend as long as they are respectful that this a woman run - space. 

\\n

We are part of Global R-Ladies group. You can access - our presentations, R scripts, and Projects on our Github account and follow - us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -
Twitter: @RLadiesLancs( https://twitter.com/RLadiesLancs)
Github: https://github.com/rladies/meetup-presentations_lancaster
-

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Lancaster is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings: -
Photos, Films, and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Lancaster event you grant the community organizers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community’s aims. This might include (but is - not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

\",\"founded_date\":1536766624000,\"gender_female\":0.7454545497894287,\"gender_male\":0.05454545468091965,\"gender_other\":0.0181818176060915,\"gender_unknown\":0.1818181872367859,\"id\":29783351,\"last_event\":1583344800000,\"lat\":54.04999923706055,\"lon\":-2.799999952316284,\"member_count\":129,\"name\":\"R-Ladies - Lancaster\",\"past_events\":8,\"past_rsvps\":138,\"pro_join_date\":1536766682139,\"repeat_rsvpers\":31,\"rsvps_per_event\":17.25,\"state\":\"H2\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lancaster\",\"status\":\"Active\",\"cursor\":\"[['1536766682139'],['29783351']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":215843528,\"name\":\"Jamie-Leigh - Chapman\",\"permission\":\"coorganizer\"},{\"member_id\":222200433,\"name\":\"Rhian - Davies\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.283599853515625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Helsinki\",\"country\":\"Finland\",\"description\":\"

R-Ladies Helsinki - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' - R skills & knowledge through social, collaborative learning & sharing. - Supporting minority identity access to STEM skills & careers, the Free - Software Movement, and contributing to the global R community!
A local - chapter of R-Ladies Global, R-Ladies Helsinki exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone - identifying as a minority gender who is interested in and/or working with - R. As a founding principle, there is no cost or charge to participate in any - of our R-Ladies communities around the world.

\\n

We are part - of Global R-Ladies group. You can access our presentations, R scripts, and - Projects on our Github account and follow us on twitter to stay up to date - about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: - @RLadiesHelsinki and @RLadiesGlobal 
-

\\n

Github: All RLadies repos on https://github.com/rladies and the Helsinki - meetup presentations on https://github.com/rladies/meetup-presentations_helsinki  -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Helsinki is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. 

\\n

-

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings: -
Photos, Films, and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Helsinki event you grant the community organizers full rights - to use the images resulting from the photography/video filming/media, and - any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1536341830000,\"gender_female\":0.729468584060669,\"gender_male\":0.15458936989307404,\"gender_other\":0.009661835618317127,\"gender_unknown\":0.10628019273281097,\"id\":29734242,\"last_event\":1592499600000,\"lat\":60.16999816894531,\"lon\":24.940000534057617,\"member_count\":381,\"name\":\"R-Ladies - Helsinki\",\"past_events\":14,\"past_rsvps\":322,\"pro_join_date\":1536341922844,\"repeat_rsvpers\":70,\"rsvps_per_event\":23,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":15167,\"name\":\"Cloud - Computing\",\"urlkey\":\"cloud-computing\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-helsinki\",\"status\":\"Active\",\"cursor\":\"[['1536341922844'],['29734242']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":148141522,\"name\":\"Hazel - Kavılı\",\"permission\":\"event_organizer\"},{\"member_id\":193131506,\"name\":\"Eija-Leena - Koponen\",\"permission\":\"coorganizer\"},{\"member_id\":260991371,\"name\":\"Suvi - Vasama\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.23379898071289,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Stockholm\",\"country\":\"Sweden\",\"description\":\"

R-Ladies - Stockholm welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Stockholm exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of the Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!
Website: - https://www.rladies.org -
Twitter: @RLadiesSTHLM ( https://twitter.com/RLadiesSTHLM)  or @RLadiesGlobal - ( https://twitter.com/RLadiesGlobal - )

\\n

Facebook: R-Ladies Stockholm (https://www.facebook.com/RLadiesStockholm) -

\\n

Github: https://github.com/rladies/meetup-presentations_stockholm -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Stockholm is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Stockholm event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1534434893000,\"gender_female\":0.6625514626502991,\"gender_male\":0.17283950746059418,\"gender_other\":0.016460904851555824,\"gender_unknown\":0.14814814925193787,\"id\":29540437,\"last_event\":1574787600000,\"lat\":59.33000183105469,\"lon\":18.06999969482422,\"member_count\":378,\"name\":\"R-Ladies - Stockholm\",\"past_events\":7,\"past_rsvps\":269,\"pro_join_date\":1534439603256,\"repeat_rsvpers\":55,\"rsvps_per_event\":38.42856979370117,\"state\":\"\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural Language - Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-stockholm\",\"status\":\"Active\",\"cursor\":\"[['1534439603256'],['29540437']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":114637122,\"name\":\"Nina - Lindell\",\"permission\":\"coorganizer\"},{\"member_id\":153447422,\"name\":\"Ines - \",\"permission\":\"coorganizer\"},{\"member_id\":187194990,\"name\":\"elisabeth - dahlqwist\",\"permission\":\"coorganizer\"},{\"member_id\":209502224,\"name\":\"Maya - Alsheh-Ali\",\"permission\":\"coorganizer\"},{\"member_id\":247352211,\"name\":\"Nissa - Ferm\",\"permission\":\"coorganizer\"},{\"member_id\":249891012,\"name\":\"Ashley - Thompson\",\"permission\":\"coorganizer\"},{\"member_id\":255028135,\"name\":\"Yuliya\",\"permission\":\"coorganizer\"},{\"member_id\":256040048,\"name\":\"Sophie - Debonneville\",\"permission\":\"coorganizer\"},{\"member_id\":261778063,\"name\":\"Aminata\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.47829818725586,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Xalapa\",\"country\":\"Mexico\",\"description\":\"

El - capítulo local R-Ladies Xalapa busca promover la diversidad de género - en la comunidad de R (un lenguaje de programación para la manipulación - y análisis estadístico de datos).

\\n

Nuestra prioridad es proporcionar - un espacio comunitario seguro para cualquier persona que se identifique como - un género minoritario que esté interesada y/o trabaje con R.

\\n

Algunos - de los temas que se abordaran en las sesiones son:

\\n

• Análisis - estadístico

\\n

• Visualización de datos

\\n

• - Minería de textos

\\n

• Análisis exploratorio de datos

- \\n

• Aplicaciones en R Shiny

\\n

* Sesiones gratuitas

- \\n

* Grupo enfocado a mujeres y minorías de género.

\\n

Website: - https://www.rladies.org/

- \\n

Github: https://github.com/rladies

- \\n

¿Te gustaría participar como expositora? ¿Tienes algún proyecto realizado - con R que te gustaría compartir? ¿Te gustaría enseñar a otras a utilizar R? - ¡No dudes en ponerte en contacto con nosotras!

\\n

También buscamos - patrocinadores para poder continuar con esta iniciativa. Si crees que puedes - entregarnos apoyo, escríbenos.

\\n

Consulta el código de conducta aquí: - https://github.com/rladies/starter-kit/wiki...

- \\n

</a> - <a href=\\\"https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish\\\">

- \\n

- - - - - - - - - - - - - - - - - - - -

\\n

R-Ladies Xalapa welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community! <br>A local chapter of R-Ladies - Global, R-Ladies Xalapa exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. <br>We are part of the Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news! <br> - <br>

\\n

Website: https://www.rladies.org - <br>Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal ) <br>Github: - https://github.com/rladies - <br> <br>

\\n

PS Community Policies & Code of Conduct: - <br>The leadership, mentoring & teaching roles within this Community - are held exclusively by minority genders (majority gender speakers may be - allowed/invited as one-off guests in exceptional circumstances at the leadership - team's discretion). Due to unexpected demand, we have opened learning participation - to all genders, dependent on initial and on-going vetting by the leadership - team. However, the stated priority of the R-Ladies communities is the development - & support specifically of those identifying as a minority gender, and - we, therefore, reserve the right to guard this interest through whatever measures - the leadership team deems appropriate. Anyone involved with R-Ladies Xalapa - is expected to fully respect each other, the mandate of this community, and - the goodwill on which R-Ladies is founded, or face expulsion/a penalty of - any form, at the discretion of the leadership team. <br> <br>

- \\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki <br> - <br>

\\n

PPS Photos, Films and all other media/recordings: - <br>Photos, Films, and all other media/recordings: photographs and/or - video/other media will be taken at events held by this community. By taking - part in an R-Ladies Xalapa event you grant the community organizers full rights - to use the images resulting from the photography/video filming/media, and - any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1532984622000,\"gender_female\":0.9406779408454895,\"gender_male\":0.025423727929592133,\"gender_other\":0.016949152573943138,\"gender_unknown\":0.016949152573943138,\"id\":29397372,\"last_event\":1608249600000,\"lat\":19.530000686645508,\"lon\":-96.91999816894531,\"member_count\":402,\"name\":\"R-Ladies - Xalapa\",\"past_events\":20,\"past_rsvps\":630,\"pro_join_date\":1532984710726,\"repeat_rsvpers\":125,\"rsvps_per_event\":31.5,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":24553,\"name\":\"Natural - Language Processing\",\"urlkey\":\"natural-language-processing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":39679,\"name\":\"Neural - Networks\",\"urlkey\":\"neural-networks\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-xalapa\",\"status\":\"Active\",\"cursor\":\"[['1532984710726'],['29397372']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":219703173,\"name\":\"Marcela - Dolores Guerra Osorno\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.310298919677734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Edinburgh\",\"country\":\"United - Kingdom\",\"description\":\"

R-Ladies Edinburgh welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. - Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Edinburgh exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of the Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Edinburgh is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Edinburgh event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1532714399000,\"gender_female\":0.71100914478302,\"gender_male\":0.18807339668273926,\"gender_other\":0.004587155766785145,\"gender_unknown\":0.09633027762174606,\"id\":29370129,\"last_event\":1608139800000,\"lat\":55.95000076293945,\"lon\":-3.2200000286102295,\"member_count\":509,\"name\":\"R-Ladies - Edinburgh\",\"next_event\":1610645400000,\"past_events\":13,\"past_rsvps\":450,\"pro_join_date\":1532714511925,\"repeat_rsvpers\":113,\"rsvps_per_event\":34.61538314819336,\"state\":\"U8\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":3,\"urlname\":\"rladies-edinburgh\",\"status\":\"Active\",\"cursor\":\"[['1532714511925'],['29370129']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":43436462,\"name\":\"Mine - Çetinkaya-Rundel\",\"permission\":\"coorganizer\"},{\"member_id\":259803103,\"name\":\"Karim - Rivera\",\"permission\":\"coorganizer\"},{\"member_id\":259985092,\"name\":\"Alexia - Revueltas\",\"permission\":\"coorganizer\"},{\"member_id\":264676296,\"name\":\"Kasia - Banas\",\"permission\":\"event_organizer\"}]},{\"average_age\":30.613300323486328,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Salvador\",\"country\":\"Brazil\",\"description\":\"

R-Ladies - Salvador welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Salvador exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of the Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Salvador is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Salvador event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\\n

R - Ladies - Salvador was founded in July, 2018 by Karla Esquerre in leadership, Júlia - Bijos, Herica Oliveira, Caroline Fernandes and Isabela Almeida as - coorganizers. This leadership team remained in organization team until August, - 2018 when teacher Gecynalda Gomes and a new team of coorganizers started to - lead the group.

\\n


\",\"founded_date\":1532362049000,\"gender_female\":0.7401574850082397,\"gender_male\":0.19685038924217224,\"gender_other\":0.007874015718698502,\"gender_unknown\":0.05511811003088951,\"id\":29332380,\"last_event\":1607796000000,\"lat\":-12.970000267028809,\"lon\":-38.5,\"member_count\":228,\"name\":\"R-Ladies - Salvador\",\"past_events\":6,\"past_rsvps\":78,\"pro_join_date\":1532362133513,\"repeat_rsvpers\":15,\"rsvps_per_event\":13,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10538,\"name\":\"Business Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":15167,\"name\":\"Cloud - Computing\",\"urlkey\":\"cloud-computing\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-salvador\",\"status\":\"Active\",\"cursor\":\"[['1532362133513'],['29332380']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":279102735,\"name\":\"Beatriz - Trindade\",\"permission\":\"coorganizer\"},{\"member_id\":314182164,\"name\":\"Gecynalda - Gomes\",\"permission\":\"coorganizer\"},{\"member_id\":314184568,\"name\":\"Edleide - Brito\",\"permission\":\"coorganizer\"},{\"member_id\":314191777,\"name\":\"Ester - Torres\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.45829963684082,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Gainesville\",\"country\":\"USA\",\"description\":\"

R-Ladies - Gainesville welcomes members of all R proficiency levels, whether you're a - new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Gainesville exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news! 

\\n

We - are aiming to have an inaugural meeting in August 2018, and we will send out - more information closer to the date. In the meantime, we’d like to find out - from *you* what you would like to see us implement. We have developed a survey - to guide our activities, and it would be great if you could take a few minutes - to let us know your thoughts and wishes: https://docs.google.com/forms/d/e/1FAIpQLSf3q9uhxYQs15srv5uFAx6b6QyeYrtgZjlY6y9ocB3jSTAj2g/viewform -

\\n
\\n

Website: https://www.rladies.org -

\\n

Twitter: @RladiesGainesville 
-

\\n

Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Gainesville is - expected to fully respect each other, the mandate of this community, and the - goodwill on which R-Ladies is founded, or face expulsion/a penalty of any - form, at the discretion of the leadership team.

\\n

Full - community guidelines are found here: https://github.com/rladies/starter-kit/wiki
-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Gainesville event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1530678527000,\"gender_female\":0.7011494040489197,\"gender_male\":0.18390804529190063,\"gender_other\":0.005747126415371895,\"gender_unknown\":0.10919540375471115,\"id\":29096058,\"last_event\":1604970000000,\"lat\":29.649999618530273,\"lon\":-82.30000305175781,\"member_count\":343,\"name\":\"R-Ladies - Gainesville\",\"past_events\":31,\"past_rsvps\":336,\"pro_join_date\":1530678651321,\"repeat_rsvpers\":52,\"rsvps_per_event\":10.838709831237793,\"state\":\"FL\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-gainesville\",\"status\":\"Active\",\"cursor\":\"[['1530678651321'],['29096058']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":106188832,\"name\":\"Amy\",\"permission\":\"coorganizer\"},{\"member_id\":192787084,\"name\":\"Kristen - Sauby\",\"permission\":\"coorganizer\"},{\"member_id\":237251484,\"name\":\"Geraldine\",\"permission\":\"coorganizer\"},{\"member_id\":258655169,\"name\":\"Punam - Amratia\",\"permission\":\"coorganizer\"},{\"member_id\":261007282,\"name\":\"Javi - Rudolph\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.45280075073242,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"San - Francisco\",\"country\":\"USA\",\"description\":\"

R-Ladies Remote welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & knowledge - through social, collaborative learning & sharing. Supporting minority identity - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!
A local chapter of R-Ladies Global, R-Ladies - Remote exists to promote gender diversity in the R community worldwide. We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. As a founding principle, there is no - cost or charge to participate in any of our R-Ladies communities around the - world.
We are part of Global R-Ladies group. You can access our presentations, - R scripts, and Projects on our Github account and follow us on twitter to - stay up to date about R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Due to - unexpected demand, we have opened learning participation to all genders, dependent - on initial and on-going vetting by the leadership team. However, the stated - priority of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Remote is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are - found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Remote event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1529440266000,\"gender_female\":0.8548387289047241,\"gender_male\":0.07526881992816925,\"gender_other\":0.01075268816202879,\"gender_unknown\":0.059139784425497055,\"id\":28887085,\"last_event\":1576602000000,\"lat\":37.779998779296875,\"lon\":-122.41999816894531,\"member_count\":345,\"name\":\"R-Ladies - Remote\",\"past_events\":9,\"past_rsvps\":179,\"pro_join_date\":1529440312478,\"repeat_rsvpers\":35,\"rsvps_per_event\":19.88888931274414,\"state\":\"CA\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-remote\",\"status\":\"Active\",\"cursor\":\"[['1529440312478'],['28887085']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":233963517,\"name\":\"Auriel - Fournier\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.911800384521484,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Boulder\",\"country\":\"USA\",\"description\":\"

R-Ladies - Boulder welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! <br>A - local chapter of R-Ladies Global, R-Ladies Boulder exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. <br>We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news! <br> - <br>

\\n

Website: https://www.rladies.org - <br> <br>

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal ) <br> - <br>

\\n

Github: https://github.com/rladies - <br> <br>

\\n

PS Community Policies & Code of Conduct: - <br>The leadership, mentoring & teaching roles within this Community - are held exclusively by minority genders (majority gender speakers may be - allowed/invited as one-off guests in exceptional circumstances at the leadership - team's discretion). Due to unexpected demand, we have opened learning participation - to all genders, dependent on initial and on-going vetting by the leadership - team. However, the stated priority of the R-Ladies communities is the development - & support specifically of those identifying as a minority gender, and - we, therefore, reserve the right to guard this interest through whatever measures - the leadership team deems appropriate. Anyone involved with R-Ladies Boulder - is expected to fully respect each other, the mandate of this community, and - the goodwill on which R-Ladies is founded, or face expulsion/a penalty of - any form, at the discretion of the leadership team. <br> <br>

- \\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki <br> - <br>

\\n

PPS Photos, Films and all other media/recordings: - <br>Photos, Films, and all other media/recordings: photographs and/or - video/other media will be taken at events held by this community. By taking - part in an R-Ladies Boulder event you grant the community organizers full - rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1528754519000,\"gender_female\":0.8148148059844971,\"gender_male\":0.1111111119389534,\"gender_other\":0.02469135820865631,\"gender_unknown\":0.04938271641731262,\"id\":28789217,\"last_event\":1605056400000,\"lat\":40.04999923706055,\"lon\":-105.20999908447266,\"member_count\":165,\"name\":\"R-Ladies - Boulder\",\"past_events\":10,\"past_rsvps\":161,\"pro_join_date\":1528754565645,\"repeat_rsvpers\":31,\"rsvps_per_event\":16.100000381469727,\"state\":\"CO\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":10494,\"name\":\"Data - Management\",\"urlkey\":\"datamanagement\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-boulder\",\"status\":\"Active\",\"cursor\":\"[['1528754565645'],['28789217']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":20540541,\"name\":\"Lisa - Moller\",\"permission\":\"coorganizer\"},{\"member_id\":79732232,\"name\":\"Leigh - Alexander\",\"permission\":\"coorganizer\"},{\"member_id\":200724485,\"name\":\"Marta - Jankowska\",\"permission\":\"coorganizer\"},{\"member_id\":251586592,\"name\":\"Courtney - Van Den Elzen\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.110599517822266,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"São - Paulo\",\"country\":\"Brazil\",\"description\":\"

R-Ladies é uma organização - que promove a diversidade de gênero na comunidade da linguagem R. R-Ladies - São Paulo integra, orgulhosamente, a organização R-Ladies Global, em São Paulo.

\\n

Nosso - principal objetivo é promover a linguagem computacional estatística R compartilhando - conhecimento, assim, quem tiver interesse na linguagem será bem-vinda, independente - do nível de conhecimento. Nosso principal público-alvo são as pessoas que - se identificam com o gênero feminino, portanto, mulheres cis, mulheres trans, - bem como pessoas não-binárias e queer.

\\n

Não toleramos nenhuma forma - de assédio aos participantes.

\\n

As organizadoras têm a responsabilidade, - compromisso e direito de tomar as ações oportunas para priorizar os interesses - da comunidade, conforme nosso código de conduta: https://github.com/rladies/.github/blob/master/CODE_OF_CONDUCT.md#Portuguese

\\n

Código - de conduta - R-Consortium: https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct

\\n

Para - saber mais sobre o R-Ladies Global, visite: rladies.org.

\\n

Confira - os materiais dos encontros passados no nosso repositório do GitHub:  https://github.com/rladies/meetup-presentations_sao-paulo

\\n

Nos - siga no twitter, em: @RLadiesSaoPaulo e @RLadiesGlobal

\\n

Fotos, - filmes e todos os outros meios de comunicação: fotografias, vídeos e outros - meios de comunicação serão tomadas em eventos realizados por esta comunidade. - Ao participar de um evento do R-Ladies São Paulo, você concede aos organizadores - da comunidade plenos direitos para usar as imagens resultantes da filmagem, - fotografia e quaisquer reproduções ou adaptações das imagens para publicidade, - captação de recursos ou outros propósitos para ajudar a alcançar objetivos - da comunidade. Isso pode incluir (mas não se limita a) o direito de usá-los - em sua publicidade impressa e on-line, mídia social e aplicativos de financiamento. - Se você não deseja ser gravado nessas mídias, por favor, informe uma organizadora - da comunidade.

\",\"founded_date\":1518298986000,\"gender_female\":0.8892989158630371,\"gender_male\":0.06457564234733582,\"gender_other\":0.007380073890089989,\"gender_unknown\":0.03874538838863373,\"id\":27456719,\"last_event\":1607169600000,\"lat\":-23.530000686645508,\"lon\":-46.630001068115234,\"member_count\":1148,\"name\":\"R-Ladies - São Paulo\",\"past_events\":21,\"past_rsvps\":1001,\"pro_join_date\":1528722883260,\"repeat_rsvpers\":181,\"rsvps_per_event\":47.66666793823242,\"state\":\"\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18333,\"name\":\"Ladies\",\"urlkey\":\"ladies\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-sao-paulo\",\"status\":\"Active\",\"cursor\":\"[['1528722883260'],['27456719']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":54194782,\"name\":\"Haydee - Svab\",\"permission\":\"coorganizer\"},{\"member_id\":54763422,\"name\":\"Cecília - Do Lago\",\"permission\":\"coorganizer\"},{\"member_id\":92220102,\"name\":\"Maria - Marinho\",\"permission\":\"coorganizer\"},{\"member_id\":210431953,\"name\":\"Nathália - Demetrio\",\"permission\":\"coorganizer\"},{\"member_id\":227185468,\"name\":\"Bruna - Wundervald\",\"permission\":\"coorganizer\"},{\"member_id\":229506599,\"name\":\"Bruna - Garbes\",\"permission\":\"coorganizer\"},{\"member_id\":254055554,\"name\":\"Beatriz - Milz\",\"permission\":\"coorganizer\"},{\"member_id\":257569233,\"name\":\"Carolina - M.\",\"permission\":\"coorganizer\"},{\"member_id\":267687633,\"name\":\"Mariana - Dias Guilardi\",\"permission\":\"coorganizer\"},{\"member_id\":291704905,\"name\":\"Evelin - Haslinger\",\"permission\":\"coorganizer\"},{\"member_id\":295483270,\"name\":\"Jean - Prado\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.57390022277832,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Belgrade\",\"country\":\"Serbia\",\"description\":\"

R-Ladies - Belgrade is part of a global initiative, R-Ladies Global, designed to improve - the gender diversity of R users worldwide and in particular, to improve the - participation and experience of women in the R community. As part of the initiative, - R-Ladies Belgrade will host a number of talks and workshops about the use - of R. It doesn't matter if you never used R or if you are an R expert, R-Ladies - Belgrade welcomes anyone with an interest in R. The goal is to promote R, - exchange knowledge and create an R community among women. Our meetings and - workshops are open for participation to all genders. We are fully inclusive - and respectful of LGBT identities - our priority is to provide a safe community - space for anyone identifying as female who is interested in and/or working - with R.

Follow us on twitter @RLadiesBelgrade - and @RLadiesGlobal, - and on Github at github.com/RLadiesBelgrade -

> #------------------------------------------------------------------------- -

R-Ladies Belgrade je deo globalne inicijative, R-Ladies Global, - namenjen poboljšanju rodne raznolikosti R-ovih korisnika širom sveta, a posebno - kako bi se poboljšalo učešće i razmena iskustava žena u R zajednici. U sklopu - ove inicijative, R-Ladies Belgrade će organizovati niz sastanaka i radionica - o korišćenju R-a. Nije bitno da li ste početnik ili R-stručnjak, R-Ladies - Belgrade podržava svakoga ko je zainteresovan da koristi R. Cilj je popularisanje - R-a, razmena znanja, veština i iskustava korišćenja R-a među ženama. Naši - sastanci i radionice su otvoreni za učesnike svih polova. U potpunosti smo - otvoreni i podržavamo prava LGBT zajednice - naš prioritet je osigurati siguran - prostor zajednice za svakoga ko se identifikuje kao ženska osoba koja je zainteresovana - i / ili radi sa R-om. 

Pratite nas na twitteru @RLadiesBelgrade - i @RLadiesGlobal, a - na Githubu na github.com/RLadiesBelgrade

\",\"founded_date\":1505491915000,\"gender_female\":0.7427536249160767,\"gender_male\":0.19565217196941376,\"gender_other\":0,\"gender_unknown\":0.06159420311450958,\"id\":25935651,\"last_event\":1610385300000,\"lat\":44.83000183105469,\"lon\":20.5,\"member_count\":455,\"name\":\"R-Ladies - Belgrade\",\"past_events\":23,\"past_rsvps\":443,\"pro_join_date\":1528722793680,\"repeat_rsvpers\":65,\"rsvps_per_event\":19.2608699798584,\"state\":\"\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-belgrade\",\"status\":\"Active\",\"cursor\":\"[['1528722793680'],['25935651']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":90907592,\"name\":\"Tatjana - Kecojevic Derbyshire\",\"permission\":\"coorganizer\"},{\"member_id\":204453168,\"name\":\"Katarina - Kosmina\",\"permission\":\"coorganizer\"},{\"member_id\":222474968,\"name\":\"Jovana - Savic\",\"permission\":\"coorganizer\"},{\"member_id\":236597041,\"name\":\"Vesna - Oro Radovanovic\",\"permission\":\"coorganizer\"},{\"member_id\":245640685,\"name\":\"Dragana - Pavlovic\",\"permission\":\"event_organizer\"},{\"member_id\":259869289,\"name\":\"Tijana - Blagojev\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.0181999206543,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Montréal\",\"country\":\"Canada\",\"description\":\"

R-Ladies - Montreal is part of a worldwide organization to promote gender diversity in - the R community. We aspire to encourage and support minority genders in Montreal - interested in learning or sharing their knowledge of R. 

\\n

R-Ladies - seeks to create a space where minority genders (including but not limited - to cis/trans women, trans men, non-binary, genderqueer, agender) are empowered - to teach and are comfortable with asking questions. We welcome all those who - will help us toward that goal. Those identifying with minority genders can - be leaders, mentors, and members/attendees; others are welcome to attend as - guests of a member (+1 on RSVP). The R-Ladies Global Code of Conduct can be - found here (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct), - and full mission statement can be found here (https://rladies.org/about-us/).

\\n

All - our slides can be found online: https://github.com/rladies/meetup-presentations_montreal

\\n

-

\",\"founded_date\":1505415381000,\"gender_female\":0.7218309640884399,\"gender_male\":0.1267605572938919,\"gender_other\":0.01056338008493185,\"gender_unknown\":0.14084507524967194,\"id\":25925303,\"last_event\":1608246000000,\"lat\":45.529998779296875,\"lon\":-73.5999984741211,\"member_count\":523,\"name\":\"R-Ladies - Montreal\",\"past_events\":24,\"past_rsvps\":504,\"pro_join_date\":1528722786094,\"repeat_rsvpers\":112,\"rsvps_per_event\":21,\"state\":\"QC\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1512213,\"name\":\"Data - Science using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-montreal\",\"status\":\"Active\",\"cursor\":\"[['1528722786094'],['25925303']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":187283281,\"name\":\"Kathryn - Morrison\",\"permission\":\"coorganizer\"},{\"member_id\":203710820,\"name\":\"Erika - Braithwaite\",\"permission\":\"coorganizer\"}]},{\"average_age\":36.88240051269531,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"London\",\"country\":\"Canada\",\"description\":\"

R-Ladies - London, Ontario is part of a worldwide organization to promote Gender Diversity - in the R community. We are a group of people interested in learning, sharing - resources, and tinkering around with new skills in R together. While we are - female-led, our membership is fully gender inclusive. Any and all are welcome - to join!

\\n

Our meetups generally consist of workshops/tutorials - featuring different aspects of R. 

\\n

We are always - looking for new presenters, and you don't have to be an expert! Everyone brings - different skills to the table, and the purpose of our group is to share those - skills and provide a fun social accepting space to learn. 

\\n

FAQs:

\\n

What - is R?

\\n

• R is a computer programming language and - a software environment for statistical computing and graphics. Check - it out here. It's used for data analysis and visualization across a wide - varieties of fields. While our tutorials assume at least a base level interest - in R (some prior knowledge is helpful, but not required), you are more than - welcome to drop into any of our sessions to see what we do.

\\n

Where - can I access your materials?

\\n

• We will upload materials to our - Github. - We will also provide the relevant link to the GitHub repository following - each meetup on our Discussion/Message - Board. If you can't find the materials you're looking for, you can - also check our Google - Drive folder, which we no longer will be updating. Lastly, if you - still can't find it, send us an email at ldnont@rladies.org!

\\n

I - don't really know that much about R, can I still join?

\\n

• Absolutely! - All levels are welcome, all you need to have is at least some interest in - R. 

\\n

I'm a guy, can I join?

\\n

• R-Ladies #LdnOnt - is a female-organized initiative, meaning we prioritize female/non-binary - leaders and presenters. That being said, if you're a guy and want to attend - our meetups and participate in our tutorials, you are welcome to join! Note - that all our members must adhere to the R-Ladies - Global code of conduct.

\\n

I don't live in London... are - there chapters near me?

\\n

• There might be! Check - out the R-Ladies Meetup locations.

\\n

What - if I want to start up my OWN chapter in another city?!

\\n

• You - can do that too! Email the head R-Ladies at info[at]rladies[dot]org

\\n

-

\\n

Learn more about the R-Ladies - Global initiative here, as well as the code - of conduct.

\",\"founded_date\":1484658259000,\"gender_female\":0.692307710647583,\"gender_male\":0.22756409645080566,\"gender_other\":0.0032051282469183207,\"gender_unknown\":0.07692307978868484,\"id\":21965959,\"last_event\":1583276400000,\"lat\":43.0099983215332,\"lon\":-81.18000030517578,\"member_count\":463,\"name\":\"R-Ladies - London, Ontario\",\"past_events\":28,\"past_rsvps\":380,\"pro_join_date\":1528722761339,\"repeat_rsvpers\":64,\"rsvps_per_event\":13.571428298950195,\"state\":\"ON\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":15568,\"name\":\"Information - Technology\",\"urlkey\":\"information-technology\"},{\"id\":22203,\"name\":\"Technology - Professionals\",\"urlkey\":\"technology-professionals\"},{\"id\":108403,\"name\":\"Technology - Startups\",\"urlkey\":\"technology-startups\"},{\"id\":153215,\"name\":\"DIY - Technology\",\"urlkey\":\"diy-technology\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-ldnont\",\"status\":\"Active\",\"cursor\":\"[['1528722761339'],['21965959']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":220125904,\"name\":\"R-Ladies - London, Ontario\",\"permission\":\"coorganizer\"},{\"member_id\":220127405,\"name\":\"R-Ladies - Valencia\",\"permission\":\"coorganizer\"}]},{\"average_age\":38.625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Corrientes\",\"country\":\"Argentina\",\"description\":\"

R-Ladies - Resistencia-Corrientes es parte de una organización mundial para promover - la Diversidad de Género en la comunidad R.

\\n

Nuestra meta es crear - una atmósfera amigable para personas interesadas en programar en R en Resistencia - y Corrientes que se identifiquen como mujer o con géneros disidentes (por - ejemplo, personas con género fluído o agénero, entre otras). No importa si - nunca usaste R o si tenés R como herramienta principal de trabajo. El objetivo - es promover R, intercambiar conocimiento y crear una red de contactos.
-
Esta es una iniciativa social. Todos los eventos serán gratuitos.
-
¡Sumate a este Meetup para enterarte de los próximos eventos! ¡Te esperamos!

\\n

Encontranos - en:

\\n

Twitter: https://twitter.com/RLadies_rciacte

\\n

Facebook: - R-Ladies - Rcia Ctes

\\n

Github: https://github.com/RLadiesResistenciaCorrientes

\\n

Github: - https://github.com/rladies

\\n

Email: - rciactes@rladies.org

\\n


\\n

Para más detalles sobre la iniciativa - R-Ladies Global visitá rladies.org (https://rladies.org/). -

Política y Código de Conducta de R-Ladies:

En la comunidad - R-Ladies los puestos de responsabilidad como organizador, orador o mentor - son exclusivamente para personas que se identifican con el género femenino - o con géneros disidentes. Aún así, la asistencia a las reuniones está abierta - a personas de todos los géneros.

Siempre se dará prioridad a la participación - de minorías de género en la comunidad ya que este grupo nació con la intención - de animar y apoyar a las personas cuyo género está subrepresentado en los - trabajos de las áreas de STEM (Science, Technology, Engineering & Math) y - en la comunidad de R. Las organizadoras de R-Ladies tienen la responsabilidad - y el derecho de tomar las acciones oportunas para salvaguardar los intereses - de la comunidad.

Código de conducta completo

\\n

(https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) -

\\n

También adherimos al código de conducta del R Consortium y del resto - de la Comunidad R

\\n

(https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct)

\",\"founded_date\":1528501631000,\"gender_female\":0.8181818127632141,\"gender_male\":0.15584415197372437,\"gender_other\":0.012987012974917889,\"gender_unknown\":0.012987012974917889,\"id\":28753666,\"last_event\":1607374800000,\"lat\":-27.489999771118164,\"lon\":-58.810001373291016,\"member_count\":143,\"name\":\"R-Ladies - Resistencia-Corrientes\",\"past_events\":11,\"past_rsvps\":178,\"pro_join_date\":1528501721645,\"repeat_rsvpers\":33,\"rsvps_per_event\":16.18181800842285,\"state\":\"\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":39679,\"name\":\"Neural - Networks\",\"urlkey\":\"neural-networks\"},{\"id\":55324,\"name\":\"Data Mining\",\"urlkey\":\"data-mining\"},{\"id\":98137,\"name\":\"Machine - Intelligence\",\"urlkey\":\"machine-intelligence\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-resistencia-corrientes\",\"status\":\"Active\",\"cursor\":\"[['1528501721645'],['28753666']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":250784466,\"name\":\"Patricia - Loto\",\"permission\":\"coorganizer\"},{\"member_id\":255786290,\"name\":\"Roxana - Noelia\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.668701171875,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Boston\",\"country\":\"USA\",\"description\":\"

R-Ladies - Boston was founded as a way for women and other gender minorities (including - but not limited to cis/trans women, trans men, non-binary, genderqueer, agender) - interested in the R programming language to make connections and learn more - about R. We hope that members with a range of skills, from \\\"I think I want - to learn\\\" to \\\"expert\\\" will feel comfortable in our spaces - we are - lucky in Boston to have folks all along this expertise spectrum!

\\n

Meetup - structure will be guided by the needs of our members - starting from scratch, - my intention is to follow a PyLadies-like model: a mix of lightning talks, - tutorials, and camaraderie. Events will be free of charge. 

\\n

Mentorship - and leadership roles are limited to members of gender minority groups (described - above), however learners of all genders are welcome to learning-focused - meetings* as guests of the organization. R-Ladies is emphatically queer - and trans friendly.

\\n

* We ask that social-only events (pub nite, - etc.) be limited to folks in the gender minority

\\n


\\n

R-Ladies - Code of Conduct

\\n

R-Ladies is dedicated to providing a harassment-free - experience for everyone. We do not tolerate harassment of participants in - any form.

\\n

This code of conduct applies to all R-Ladies spaces, including - meetups, Twitter, Slack, mailing lists, both online and offline. Anyone who - violates this code of conduct may be sanctioned or expelled from these spaces - at the discretion of the Founding Members.

\\n

Some R-Ladies spaces may - have additional rules in place, which will be made clearly available to participants. - Participants are responsible for knowing and abiding by these rules.

\\n

-

\\n

If you are being harassed by a member/guest/participant - of/at R-Ladies, notice that someone else is being harassed, or have any other - concerns, please contact the Founding Members via reporting@rladies.org. - Local incidences will be handled together with the local organisers. If the - person who is harassing you is on the team, they will recuse themselves from - handling your incident. We will respond as promptly as we can.

\\n

Please - read the full Code of Conduct here

\\n



\\n
\",\"founded_date\":1474065871000,\"gender_female\":0.8382353186607361,\"gender_male\":0.06617647409439087,\"gender_other\":0.009191176854074001,\"gender_unknown\":0.08639705926179886,\"id\":20433637,\"last_event\":1605826800000,\"lat\":42.36000061035156,\"lon\":-71.06999969482422,\"member_count\":943,\"name\":\"R-Ladies - Boston\",\"next_event\":1610492400000,\"past_events\":41,\"past_rsvps\":818,\"pro_join_date\":1528206251779,\"repeat_rsvpers\":167,\"rsvps_per_event\":19.95121955871582,\"state\":\"MA\",\"topics\":[{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":22792,\"name\":\"Functional - Programming\",\"urlkey\":\"functional-programming\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":77965,\"name\":\"Introduction - to Functional Programming in R\",\"urlkey\":\"introduction-to-functional-programming-in-r\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":480642,\"name\":\"Data\",\"urlkey\":\"data\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-boston\",\"status\":\"Active\",\"cursor\":\"[['1528206251779'],['20433637']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":5231675,\"name\":\"Ivana\",\"permission\":\"event_organizer\"},{\"member_id\":11780777,\"name\":\"Mena\",\"permission\":\"coorganizer\"},{\"member_id\":164123992,\"name\":\"Marianna - Foos\",\"permission\":\"coorganizer\"},{\"member_id\":193242413,\"name\":\"Phoebe - Wong\",\"permission\":\"coorganizer\"},{\"member_id\":213093253,\"name\":\"Mara - Alexeev\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.8981990814209,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Quito\",\"country\":\"Ecuador\",\"description\":\"

¡La - primera comunidad de Programación de R en Quito para las mujeres! Aquí encontrarás - compañeras en el mundo de la programación en R, desde profesionales que tienen - R como herramienta principal de trabajo hasta aficionadas que quieren aprender - y seguir mejorando.

\\n

Nuestros medios de contacto:

\\n

-

\\n

• Twitter: @RLadiesQuito 

\\n

• Email: quito@rladies.org

\\n

• Github: https://github.com/rladies

\\n

• Slack: https://rladies-quito.slack.com

\\n

• Website: http://www.r-ladies.com/

\\n

• Facebook: https://www.facebook.com/RLadiesUIO

\\n

¡Unete, - te esperamos! R-Ladies Quito, es un capítulo local de R-Ladies Global, que - promueve la diversidad de género en la comunidad R, tanto en Quito como en - todo el mundo, una comunidad open source donde mujeres nos apoyamos y nos - ayudamos a crecer dentro de la comunidad de R. Además R-Ladies Global es un - proyecto financiado por el R Consortium-Linux Foundation. Somos una comunidad - pro-activa, inclusiva de las identidades queer, trans, y todas las minorías, - nuestra prioridad es proporcionar un espacio comunitario seguro para desarrollar - las habilidades y conocimientos de nuestras compañeras a través del aprendizaje, - el compartir social y colaborativo. Como principio fundacional, no hay costo - alguno para participar en cualquiera de nuestras comunidades de R-Ladies en - todo el mundo. R-Ladies Quito te da la bienvenida, si alguien está interesada - en impartir un taller o dar una charla en un evento de R-Ladies escribir a - \Lquito[at]rladies[dot]org 

\\n

Si bien se dará prioridad - a la participación femenina, cualquier persona con interés en R es bienvenida. - Los eventos serán siempre gratuitos porque R-Ladies es una iniciativa social. - El Código de Conducta Global de R-Ladies lo encontrarás en (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish). -

\\n


\\n

The Quito's first R Programming community - for self-identified women & minority genders! A local chapter of R-Ladies - Global, R-Ladies Quito exists to promote gender diversity in the R community, - both in the Quito and worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities (which many lead R-Ladies are) - our priority is to provide a safe - community space for anyone identifying as a minority gender who is interested - in and/or working with R. As a founding principle, there is no cost or charge - to participate in any of our 30+ R-Ladies communities around the world.

\\n

R-Ladies - Quito welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our non-profit, civil society community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

\",\"founded_date\":1500409959000,\"gender_female\":0.6029962301254272,\"gender_male\":0.3314606845378876,\"gender_other\":0.00187265919521451,\"gender_unknown\":0.06367041170597076,\"id\":25039212,\"last_event\":1593561600000,\"lat\":-0.1899999976158142,\"lon\":-78.5,\"member_count\":809,\"name\":\"R-Ladies - Quito\",\"past_events\":10,\"past_rsvps\":407,\"pro_join_date\":1528206193357,\"repeat_rsvpers\":44,\"rsvps_per_event\":40.70000076293945,\"state\":\"\",\"topics\":[{\"id\":10209,\"name\":\"Web - Technology\",\"urlkey\":\"web\"},{\"id\":10494,\"name\":\"Data Management\",\"urlkey\":\"datamanagement\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":383411,\"name\":\"Big Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-quito\",\"status\":\"Active\",\"cursor\":\"[['1528206193357'],['25039212']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":213001949,\"name\":\"Elena - Chicaiza\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.406898498535156,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Santiago\",\"country\":\"Chile\",\"description\":\"

R-Ladies - Santiago es parte de una organización mundial que busca promover la diversidad - de género en la comunidad R. Nuestro objetivo es generar un espacio colaborativo - amigable para intercambiar ideas, experiencias y conocimientos, y así hacer - R más popular y accesible.
Este es un grupo abierto a interesadas con - cualquier nivel de conocimiento: desde quienes recién están acercándose a - R y quieren aprender más, hasta quienes lo utilizan como su principal herramienta - de trabajo. Únete para estar al tanto de nuestras próximas reuniones :)

\\n

También - nos puedes encontrar en Twitter - y Facebook: @RLadiesSantiago - y al correo santiago[at]rladies[dot]org.

\\n

Todos nuestros eventos son - gratuitos. Si bien se dará prioridad a la participación femenina, cualquier - persona con interés en R es bienvenida. Revisa - el Código de Conducta Global de R-Ladies.

\\n

¿Te gustaría participar - como expositora? ¿Tienes algún proyecto realizado con R que te gustaría compartir? - ¿Te gustaría enseñar a otras a utilizar R? ¡No dudes en ponerte en contacto - con nosotras!
También buscamos patrocinadores para poder continuar con - esta iniciativa. Si crees que puedes entregarnos apoyo, escríbenos.
Si - quieres saber más sobre la iniciativa R-Ladies Global visita rladies.org - y @RLadiesGlobal.

\",\"founded_date\":1500409431000,\"gender_female\":0.6739130616188049,\"gender_male\":0.23411370813846588,\"gender_other\":0.005852842703461647,\"gender_unknown\":0.08612040430307388,\"id\":25039094,\"last_event\":1601298000000,\"lat\":-33.459999084472656,\"lon\":-70.63999938964844,\"member_count\":2151,\"name\":\"R-Ladies - Santiago\",\"past_events\":40,\"past_rsvps\":1911,\"pro_join_date\":1528206184683,\"repeat_rsvpers\":342,\"rsvps_per_event\":47.775001525878906,\"state\":\"\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":15582,\"name\":\"Web Development\",\"urlkey\":\"web-development\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":47731,\"name\":\"Women - Science Technology Engineering & Mathematics\",\"urlkey\":\"women-science-technology-engineering-mathematics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-scl\",\"status\":\"Active\",\"cursor\":\"[['1528206184683'],['25039094']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":229443884,\"name\":\"Gaby - Sandoval\",\"permission\":\"coorganizer\"},{\"member_id\":231243347,\"name\":\"Riva - Quiroga\",\"permission\":\"coorganizer\"},{\"member_id\":258211275,\"name\":\"Stephanie - Orellana\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.868900299072266,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Milano\",\"country\":\"Italy\",\"description\":\"

R-Ladies - is a worldwide organization whose mission is to promote gender diversity in - the R community. We are setting up this community for the first time in Milan! - Whether you are an experienced R programmmer or new to R or just have a passion - for data science, this will be a community for you (No gender restrication).  -

\\n

To get the latest updates about our event, please follow us - on any of these channels: 

\\n

• Twitter page: https://twitter.com/RladiesMilan

\\n

• - Facebook page: - https://www.facebook.com/rladiesmilan

\\n

• Linkedin page: https://www.linkedin.com/company/25167785/

\\n

• - Github account: https://github.com/parvanesh/rladies-milan

\\n

• - Slack group: https://join.slack.com/t/rladiesmilan/share... -

\\n

Come & join us!

\\n


\\n

Community - Policies & Code of Conduct: The leadership and mentoring roles within - this community are held exclusively by women (trans and cis) and gender-variant - people. Men are welcome to attend as long as they come as a guest of a specific - female member who is also in attendance. However, the stated priority of this - meetup is the development and support of its female members acting in whichever - roles, and we therefore reserve the right to guard this interest through whatever - measures we deem appropriate. All members and event attendees are expected - to fully respect each other and the mandate of this Meetup, or face expulsion - of any form, whether from events, Meetup membership, or any other community - participation. This community is a social initiative, hence will never involve - charges or fees to participate.

\",\"founded_date\":1498774567000,\"gender_female\":0.6124401688575745,\"gender_male\":0.26953747868537903,\"gender_other\":0,\"gender_unknown\":0.11802233010530472,\"id\":24752511,\"last_event\":1608053400000,\"lat\":45.459999084472656,\"lon\":9.1899995803833,\"member_count\":937,\"name\":\"R-Ladies - Milan\",\"next_event\":1611250200000,\"past_events\":24,\"past_rsvps\":677,\"pro_join_date\":1528206178423,\"repeat_rsvpers\":137,\"rsvps_per_event\":28.20833396911621,\"state\":\"MI\",\"topics\":[{\"id\":4422,\"name\":\"Social - Networking\",\"urlkey\":\"socialnetwork\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10102,\"name\":\"Internet - Professionals\",\"urlkey\":\"internetpro\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":10579,\"name\":\"Technology\",\"urlkey\":\"technology\"},{\"id\":15582,\"name\":\"Web - Development\",\"urlkey\":\"web-development\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":55324,\"name\":\"Data Mining\",\"urlkey\":\"data-mining\"},{\"id\":1448582,\"name\":\"Artificial - Intelligence Machine Learning Robotics\",\"urlkey\":\"artificial-intelligence-machine-learning-robotics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-milan\",\"status\":\"Active\",\"cursor\":\"[['1528206178423'],['24752511']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":118029672,\"name\":\"Parvane - Sh\",\"permission\":\"coorganizer\"},{\"member_id\":183481301,\"name\":\"Erica_Yu\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.69430160522461,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Washington\",\"country\":\"USA\",\"description\":\"

R-Ladies - DC is part of a worldwide organization to promote Gender Diversity in the - R statistical computing community.

\\n

Check - out the R Project for Statistical Computing

\\n

Connect with us on - Twitter @RLadiesDC

\",\"founded_date\":1481140109000,\"gender_female\":0.7228820323944092,\"gender_male\":0.15756136178970337,\"gender_other\":0.0047505940310657024,\"gender_unknown\":0.11480601876974106,\"id\":21510971,\"last_event\":1610236800000,\"lat\":38.90999984741211,\"lon\":-77.0199966430664,\"member_count\":2059,\"name\":\"R-Ladies - Washington D.C.\",\"next_event\":1610665200000,\"past_events\":89,\"past_rsvps\":2510,\"pro_join_date\":1528206161799,\"repeat_rsvpers\":442,\"rsvps_per_event\":28.202247619628906,\"state\":\"DC\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":480642,\"name\":\"Data\",\"urlkey\":\"data\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":2,\"urlname\":\"rladies-dc\",\"status\":\"Active\",\"cursor\":\"[['1528206161799'],['21510971']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":18759561,\"name\":\"Simina - Boca\",\"permission\":\"coorganizer\"},{\"member_id\":32656852,\"name\":\"Shari - McGee\",\"permission\":\"coorganizer\"},{\"member_id\":63528402,\"name\":\"Gwynn - Sturdevant\",\"permission\":\"coorganizer\"},{\"member_id\":217353817,\"name\":\"Sam - Tyner\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.215599060058594,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"New - York\",\"country\":\"USA\",\"description\":\"

This group is a local chapter - of the R-Ladies Global organization and open to all members with an interest - in coding.  The group is focused on increasing the representation of - women in global R community through establishing local communities providing - mentorship, collaborative learning & support.

\\n


\\n

Meetup - topics include: (credit to the Rladies London group)

\\n

• Kickstarting - R & RStudio

\\n

• Importance/Relevance of R skills (use-cases, - jobs/roles, salaries)

\\n

• Data Visualisation

\\n

• Machine - Learning algorithms

\\n

• Math & Stats

\\n

• Text - Mining

\\n

• Spatial Analytics

\\n

• Building Interactive - Web Apps

\\n

• Building Dynamic Reports & Dashboards

\\n

• .....and - anything else of interest! :)

\\n
\\n

We encourage all genders - to attend!

\",\"founded_date\":1471986060000,\"gender_female\":0.746073305606842,\"gender_male\":0.15008726716041565,\"gender_other\":0.013089004904031754,\"gender_unknown\":0.09075043350458145,\"id\":20346526,\"last_event\":1607472000000,\"lat\":40.75,\"lon\":-73.98999786376953,\"member_count\":1980,\"name\":\"R-Ladies - New York\",\"past_events\":53,\"past_rsvps\":3003,\"pro_join_date\":1528206139709,\"repeat_rsvpers\":488,\"rsvps_per_event\":56.660377502441406,\"state\":\"NY\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":7203,\"name\":\"Education & Technology\",\"urlkey\":\"edtech\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":480642,\"name\":\"Data\",\"urlkey\":\"data\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-newyork\",\"status\":\"Active\",\"cursor\":\"[['1528206139709'],['20346526']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":202097213,\"name\":\"Emily - Dodwell\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.240501403808594,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Niterói\",\"country\":\"Brazil\",\"description\":\"

R-Ladies - Niterói welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Niterói exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:
The leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deems appropriate. Anyone involved with R-Ladies Niterói is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

\\n

Full community guidelines are - found here: https://github.com/rladies/starter-kit/wiki -

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Niterói event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1528155077000,\"gender_female\":0.6570680737495422,\"gender_male\":0.2513088881969452,\"gender_other\":0.007853402756154537,\"gender_unknown\":0.08376963436603546,\"id\":28706674,\"last_event\":1601989200000,\"lat\":-22.899999618530273,\"lon\":-43.130001068115234,\"member_count\":745,\"name\":\"R-Ladies - Niterói\",\"past_events\":9,\"past_rsvps\":519,\"pro_join_date\":1528155299889,\"repeat_rsvpers\":72,\"rsvps_per_event\":57.66666793823242,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software - Development\",\"urlkey\":\"softwaredev\"},{\"id\":10209,\"name\":\"Web Technology\",\"urlkey\":\"web\"},{\"id\":10494,\"name\":\"Data - Management\",\"urlkey\":\"datamanagement\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1456952,\"name\":\"Deep Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-niteroi\",\"status\":\"Active\",\"cursor\":\"[['1528155299889'],['28706674']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":223393487,\"name\":\"Luciane - Alcoforado\",\"permission\":\"coorganizer\"},{\"member_id\":255325773,\"name\":\"Noelle - Camello\",\"permission\":\"coorganizer\"},{\"member_id\":261661398,\"name\":\"Julia - Hellen Ferreira\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.918399810791016,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Valparaíso\",\"country\":\"Chile\",\"description\":\"

R-Ladies - Valparaíso es parte de RLadies Global, una organización mundial que busca - promover la diversidad de género en la comunidad de R. Nuestro objetivo es - generar un espacio de aprendizaje colaborativo amigable y seguro, en el que - podamos intercambiar ideas, experiencias y conocimientos. Así, esperamos - que R se vuelva más accesible y cercano. 
Este es un grupo - abierto a personas interesadas con cualquier nivel de conocimiento y de cualquier - disciplina: desde quienes recién están acercándose a R hasta quienes lo utilizan - como su principal herramienta de trabajo.
Todos nuestros - eventos son gratuitos y en ellos se dará prioridad a la participación femenina - y de géneros disidentes. Cualquier persona es bienvenida siempre y cuando - se ciña al Código de Conducta de R-Ladies Global: https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish  -
Si quieres saber más sobre esta iniciativa, visita nuestro - sitio web: rladies.org.

\\n

Para - estar al tanto de nuestra novedades, puedes seguirnos en Twitter (@RLadiesValpo) - o Facebook (fb.me/RLadiesValpo)  

\\n

Pronto anunciaremos - nuestras próximas actividades.
¡Te esperamos!

\\n

-

\\n


\\n

* En nuestros eventos - tomamos fotos y a veces realizamos grabaciones que nos permiten compartir - lo que hacemos. Al unirte a nuestro grupo nos entregas el derecho a usar esas - imagenes para dar a conocer nuestras actividades. Este uso incluye (pero no - se limita a) su utilización en formato impreso o digital para hacer promoción - de esta iniciativa, para postular a fondos de apoyo, entre otros. Si no quieres - aparecer en estos registros gráficos, por favor avisa a las organizadoras.   -

\\n


\\n


\",\"founded_date\":1526670156000,\"gender_female\":0.6460176706314087,\"gender_male\":0.21238937973976135,\"gender_other\":0,\"gender_unknown\":0.14159291982650757,\"id\":28530966,\"last_event\":1601298000000,\"lat\":-33.040000915527344,\"lon\":-71.63999938964844,\"member_count\":272,\"name\":\"R-Ladies - Valparaíso\",\"past_events\":18,\"past_rsvps\":418,\"pro_join_date\":1526670321143,\"repeat_rsvpers\":74,\"rsvps_per_event\":23.22222137451172,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":15280,\"name\":\"Statistical Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":97728,\"name\":\"Digital Humanities\",\"urlkey\":\"digital-humanities\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-valparaiso\",\"status\":\"Active\",\"cursor\":\"[['1526670321143'],['28530966']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":231243347,\"name\":\"Riva - Quiroga\",\"permission\":\"coorganizer\"},{\"member_id\":256222769,\"name\":\"Lisette - Arce Carrillo\",\"permission\":\"coorganizer\"}]},{\"average_age\":33,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Bari\",\"country\":\"Italy\",\"description\":\"

R-Ladies - is a worldwide organization whose mission is to promote gender diversity in - the R community. We are setting up this community for the first time in Bari! - Whether you are an experienced R programmmer or new to R or just have a passion - for data science, this will be a community for you (No gender restrictions).

\\n

<br> - <br> To get the latest updates about our event, please follow us on - any of these channels:

\\n

<br> <br> • Facebook page:
https://m.facebook.com/rladiesbari/ -
<br>

\\n

• Linkedin Page:

\\n

https://www.linkedin.com/company/r-ladies-b... - <br>

\\n

<br>

\\n

Come & join us! <br>

\\n

<br> - Community Policies & Code of Conduct: The leadership and mentoring roles - within this community are held exclusively by women (trans and cis) and gender-variant - people. Men are welcome to attend as long as they come as a guest of a specific - female member who is also in attendance. However, the stated priority of this - meetup is the development and support of its female members acting in whichever - roles, and we therefore reserve the right to guard this interest through whatever - measures we deem appropriate. All members and event attendees are expected - to fully respect each other and the mandate of this Meetup, or face expulsion - of any form, whether from events, Meetup membership, or any other community - participation. This community is a social initiative, hence will never involve - charges or fees to participate.

\",\"founded_date\":1526580162000,\"gender_female\":0.6274510025978088,\"gender_male\":0.29411765933036804,\"gender_other\":0,\"gender_unknown\":0.0784313753247261,\"id\":28519562,\"last_event\":1608053400000,\"lat\":41.130001068115234,\"lon\":16.8700008392334,\"member_count\":91,\"name\":\"R-Ladies - Bari\",\"next_event\":1611250200000,\"past_events\":15,\"past_rsvps\":112,\"pro_join_date\":1526580444610,\"repeat_rsvpers\":16,\"rsvps_per_event\":7.4666666984558105,\"state\":\"BA\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1456952,\"name\":\"Deep - Learning\",\"urlkey\":\"deep-learning\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":1,\"urlname\":\"rladies-bari\",\"status\":\"Active\",\"cursor\":\"[['1526580444610'],['28519562']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":187142904,\"name\":\"Giovanna - de Vincenzo\",\"permission\":\"coorganizer\"},{\"member_id\":247158872,\"name\":\"Sara - Iacozza\",\"permission\":\"coorganizer\"},{\"member_id\":253330861,\"name\":\"Francesca\",\"permission\":\"coorganizer\"}]},{\"average_age\":34,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Brisbane\",\"country\":\"Australia\",\"description\":\"

R-Ladies - Brisbane welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Brisbane exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

\\n

We are part of Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Brisbane is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Brisbane event you grant - the community organizers full rights to use the images resulting from the - photography/video filming/media, and any reproductions or adaptations of the - images for publicity, fundraising or other purposes to help achieve the community’s - aims. This might include (but is not limited to), the right to use them in - their printed and online publicity, social media, press releases and funding - applications. If you do not wish to be recorded in these media please inform - a community organizer.

\",\"founded_date\":1525984402000,\"gender_female\":0.7543859481811523,\"gender_male\":0.10087719559669495,\"gender_other\":0,\"gender_unknown\":0.14473684132099152,\"id\":28448818,\"last_event\":1607067000000,\"lat\":-27.459999084472656,\"lon\":153.02000427246094,\"member_count\":478,\"name\":\"R-Ladies - Brisbane\",\"past_events\":17,\"past_rsvps\":545,\"pro_join_date\":1525984522865,\"repeat_rsvpers\":105,\"rsvps_per_event\":32.05882263183594,\"state\":\"\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-brisbane\",\"status\":\"Active\",\"cursor\":\"[['1525984522865'],['28448818']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":216086595,\"name\":\"Valentine\",\"permission\":\"coorganizer\"},{\"member_id\":254211983,\"name\":\"Paula - \",\"permission\":\"coorganizer\"},{\"member_id\":256528521,\"name\":\"Ati - \",\"permission\":\"coorganizer\"},{\"member_id\":309358970,\"name\":\"Catherine - Kim\",\"permission\":\"event_organizer\"}]},{\"average_age\":34.318199157714844,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"San - Carlos de Bariloche\",\"country\":\"Argentina\",\"description\":\"

R-Ladies - Bariloche es parte de una organización mundial para promover la Diversidad - de Género en la comunidad R. En R-Ladies nos brindamos apoyo - mutuo entre les entusiastas de R que nos identificamos como mujer o con géneros - disidentes (personas con género fluído o agénero, entre otras) para alcanzar - nuestro potencial en programación, a través de la construcción de una red - colaborativa mundial de líderes, mentorxs, estudiantes, entusiastas, aprendices - y desarrolladorxs de R,  facilitando el progreso colectivo e individual - en todo el mundo.

En Bariloche buscamos impulsar el aprendizaje colectivo - entre personas interesadas en programar en R. No importa si nunca usaste R - o si sos experta. Queremos intercambiar ideas, saberes y construir una red - que nos permita crecer en este ámbito, y bogar por un equilibrio en la representación - de géneros en todos los ámbitos donde R es utilizado. Para ello, organizamos - encuentros abarcando distintas temáticas de R y programación.

Todos - los eventos serán siempre gratuitos, esta es una iniciativa social.

¡Sumate - a este Meetup para enterarte de los próximos eventos!

Si querés - ser disertante o patrocinarnos no dudes en contactarte. Nos encontrás en: -

GitHub ( https://github.com/rladies ) -

Twitter @RLadiesGlobal (R-Ladies de todo el mundo)

\\n
- \\n

    @RLadiesBA (colegas de Buenos Aires)

- \\n
\\n


Para más detalles sobre la iniciativa R-Ladies - visitá rladies.org ( https://rladies.org/ ). -

Política y Código de Conducta de R-Ladies:

En la comunidad - R-Ladies los puestos de responsabilidad como organizador, orador o mentor - son exclusivamente para personas que se identifican con el género femenino - o con géneros disidentes. Aún así, la asistencia a las reuniones está abierta - a todas las personas.

Siempre se dará prioridad a la participación - de minorías de género en la comunidad ya que este grupo nació con la intención - de animar y apoyar a las personas cuyo género está subrepresentado en los - trabajos STEM (Science, Technology, Engineering & Math) y en la comunidad - de R. Les organizadores de R-Ladies tienen la responsabilidad y el derecho - de tomar las acciones oportunas para salvaguardar los intereses de la comunidad. -

Código de conducta completo. ( https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish ) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. ( https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct) -

English Version

\\n

R-Ladies Bariloche welcomes members - of all R proficiency levels, whether you're a new or aspiring R user, or an - experienced R programmer interested in mentoring, networking & expert - upskilling. Our community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!
A local chapter of R-Ladies - Global, R-Ladies Bariloche exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of Global R-Ladies group. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org -

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

Github: - https://github.com/rladies -

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Bariloche is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:
Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Bariloche event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1525918935000,\"gender_female\":0.7857142686843872,\"gender_male\":0.17142857611179352,\"gender_other\":0.014285714365541935,\"gender_unknown\":0.02857142873108387,\"id\":28441250,\"last_event\":1603733400000,\"lat\":-41.13999938964844,\"lon\":-71.31999969482422,\"member_count\":278,\"name\":\"R-Ladies - Bariloche\",\"past_events\":13,\"past_rsvps\":397,\"pro_join_date\":1525919021050,\"repeat_rsvpers\":82,\"rsvps_per_event\":30.538461685180664,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":15167,\"name\":\"Cloud Computing\",\"urlkey\":\"cloud-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-bariloche\",\"status\":\"Active\",\"cursor\":\"[['1525919021050'],['28441250']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":226118453,\"name\":\"Paula - F\",\"permission\":\"coorganizer\"},{\"member_id\":254160066,\"name\":\"Lina - Moreno Azocar,\",\"permission\":\"coorganizer\"},{\"member_id\":254221708,\"name\":\"Sofia - Ruiz\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.7672004699707,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Sydney\",\"country\":\"Australia\",\"description\":\"

R-Ladies - Sydney welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
A - local chapter of R-Ladies Global, R-Ladies Sydney exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.
We are part of the Global R-Ladies group- - https://www.rladies.org. You - can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Email: - sydney@rladies.org

\\n

Blog: https://rladiessydney.org/ -

\\n

Twitter: @RLadiesSydney  -

\\n

Github: https://github.com/rladiessydney -

\\n

PS Community Policies & Code of Conduct:
The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Sydney is expected to - fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

-

\\n

PPS Photos, Films and all other media/recordings:
Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Sydney event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1525883315000,\"gender_female\":0.7158351540565491,\"gender_male\":0.16485899686813354,\"gender_other\":0.006507592275738716,\"gender_unknown\":0.11279826611280441,\"id\":28436046,\"last_event\":1606957200000,\"lat\":-33.869998931884766,\"lon\":151.2100067138672,\"member_count\":800,\"name\":\"R-Ladies - Sydney\",\"past_events\":39,\"past_rsvps\":976,\"pro_join_date\":1525883579509,\"repeat_rsvpers\":179,\"rsvps_per_event\":25.0256404876709,\"state\":\"\",\"topics\":[{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"},{\"id\":1515428,\"name\":\"Machine - Learning & Artificial Intelligence\",\"urlkey\":\"machine-learning-artificial-intelligence\"}],\"upcoming_events\":0,\"urlname\":\"rladies-sydney\",\"status\":\"Active\",\"cursor\":\"[['1525883579509'],['28436046']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":2747841,\"name\":\"Jen\",\"permission\":\"coorganizer\"},{\"member_id\":81546932,\"name\":\"Belinda\",\"permission\":\"event_organizer\"},{\"member_id\":254586369,\"name\":\"Lisa - Williams\",\"permission\":\"coorganizer\"},{\"member_id\":254800702,\"name\":\"Danielle - Navarro\",\"permission\":\"coorganizer\"},{\"member_id\":254897478,\"name\":\"Steph - de Silva\",\"permission\":\"coorganizer\"},{\"member_id\":255478566,\"name\":\"Jennifer - Sloane\",\"permission\":\"event_organizer\"},{\"member_id\":274240143,\"name\":\"Heidi - Han\",\"permission\":\"event_organizer\"},{\"member_id\":275553019,\"name\":\"Indako\",\"permission\":\"event_organizer\"}]},{\"average_age\":36.076900482177734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Santa - Fe\",\"country\":\"Argentina\",\"description\":\"

R-Ladies Santa Fe - es parte de una organización mundial para promover la Diversidad de Género - en la comunidad R.

\\n

Nuestra meta es crear una atmósfera - amigable para personas interesadas en programar en R en Santa Fe ciudad, que - se identifiquen como mujer o con géneros disidentes (por ejemplo, personas - con género fluído o agénero, entre otras). No importa si nunca usaste R o - si tenés R como herramienta principal de trabajo. El objetivo es promover - R, intercambiar conocimiento y crear una red de contactos.

\\n

Esta es - una iniciativa social. Todos los eventos serán gratuitos.

\\n

¡Sumate - a este Meetup para enterarte de los próximos eventos! ¡Te esperamos!

\\n
\\n

Nos - encontrás en: GitHub - yTwitter

\\n

Email: - santafe [arroba] rladies [punto] org

\\n
\\n

Para más detalles sobre - la iniciativa R-Ladies Global visitá R-Ladies.

\\n
\\n
\\n
\\n
\\n

Política - y Código de Conducta de R-Ladies:

\\n

En la comunidad R-Ladies los - puestos de responsabilidad como organizador, orador o mentor son exclusivamente - para personas que se identifican con el género femenino o con géneros disidentes. - Aún así, la asistencia a las reuniones está abierta a personas de todos los - géneros.

\\n

Siempre se dará prioridad a la participación de minorías - de género en la comunidad ya que este grupo nació con la intención de animar - y apoyar a las personas cuyo género está subrepresentado en los trabajos STEM - (Science, Technology, Engineering & Math) y en la comunidad de R. La organización - de R-Ladies tiene la responsabilidad y el derecho de tomar las acciones oportunas - para salvaguardar los intereses de la comunidad.

\\n


\\n

Código - de conducta completo. También adherimos al código - de conducta del R Consortium y del resto de la Comunidad R.

\",\"founded_date\":1525794192000,\"gender_female\":0.7802197933197021,\"gender_male\":0.18681319057941437,\"gender_other\":0.010989011265337467,\"gender_unknown\":0.021978022530674934,\"id\":28424845,\"last_event\":1595620800000,\"lat\":-31.600000381469727,\"lon\":-60.689998626708984,\"member_count\":214,\"name\":\"R-Ladies - Santa Fe\",\"past_events\":14,\"past_rsvps\":220,\"pro_join_date\":1525794306193,\"repeat_rsvpers\":36,\"rsvps_per_event\":15.714285850524902,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-santa-fe\",\"status\":\"Active\",\"cursor\":\"[['1525794306193'],['28424845']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":249802252,\"name\":\"Melina - Vidoni\",\"permission\":\"coorganizer\"},{\"member_id\":253211090,\"name\":\"Mariel\",\"permission\":\"coorganizer\"},{\"member_id\":254192642,\"name\":\"Liza - D\",\"permission\":\"coorganizer\"},{\"member_id\":257512133,\"name\":\"Andrea - Bergesio\",\"permission\":\"coorganizer\"},{\"member_id\":265154453,\"name\":\"Cecilia\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.79750061035156,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Nijmegen\",\"country\":\"Netherlands\",\"description\":\"

R-Ladies - Nijmegen welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n

A - local chapter of R-Ladies Global, R-Ladies Nijmegen exists to promote diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. 

\\n

We are part of Global R-Ladies - group. You can access our presentations, R scripts, and Projects on our Github - account and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

You - can also find the local Nijmegen chapter on social media!

\\n

Twitter: - @RLadiesNijmegen ( https://twitter.com/RladiesNijmegen - )

\\n

PS Community Policies & Code of Conduct: 

\\n

The - leadership, mentoring & teaching roles within this Community are held - exclusively by minority genders (majority gender speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Nijmegen is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team. 

\\n

Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n


\\n

PPS - Photos, Films and all other media/recordings: 

\\n

Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Nijmegen event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1525545741000,\"gender_female\":0.7587939500808716,\"gender_male\":0.16080401837825775,\"gender_other\":0,\"gender_unknown\":0.08040200918912888,\"id\":28393787,\"last_event\":1597766400000,\"lat\":51.84000015258789,\"lon\":5.849999904632568,\"member_count\":346,\"name\":\"R-Ladies - Nijmegen\",\"past_events\":12,\"past_rsvps\":373,\"pro_join_date\":1525545885244,\"repeat_rsvpers\":76,\"rsvps_per_event\":31.08333396911621,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-nijmegen\",\"status\":\"Active\",\"cursor\":\"[['1525545885244'],['28393787']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":196858147,\"name\":\"Eirini - Zormpa\",\"permission\":\"coorganizer\"},{\"member_id\":240758951,\"name\":\"Laurel - Brehm\",\"permission\":\"coorganizer\"},{\"member_id\":247158872,\"name\":\"Sara - Iacozza\",\"permission\":\"coorganizer\"},{\"member_id\":254756266,\"name\":\"Limor - Raviv\",\"permission\":\"coorganizer\"},{\"member_id\":256807140,\"name\":\"Laura - Giglio\",\"permission\":\"coorganizer\"},{\"member_id\":282046770,\"name\":\"Anne - Mickan\",\"permission\":\"coorganizer\"}]},{\"average_age\":30.97439956665039,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Guayaquil\",\"country\":\"Ecuador\",\"description\":\"

¡Bienvenid@s - a R-Ladies Guayaquil!

\\n

Somos un capítulo local de la organización - mundial  R-Ladies Global que tiene por finalidad promover la diversidad - de género en la comunidad de R.

\\n

Nuestra meta es apoyar, alentar y - empoderar a mujeres entusiastas interesadas en desarrollar habilidades colectivas - e individuales de programación en R promoviendo el aprendizaje colaborativo, - la réplica del conocimiento, el uso de software libre y la construcción de - una red de usuari@s, novat@s, desarrollador@s y/o expert@s en R.

\\n

Al - ser una iniciativa social, todos los eventos a realizarse son gratuitos. En - dichos eventos puede participar cualquier persona interesada en la comunidad - R, priorizando la participación femenina.

\\n

¡Únete a este meet-up para - estar al día en nuestros próximos eventos!

\\n

Te dejamos algunos - links de interés donde encontrarás información sobre nuestra comunidad:

\\n


\\n

Website: - https://www.rladies.org

\\n

Github: - https://github.com/rladies

\\n

E-mail: - info [at] rladies [dot] org

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

GitHub: http://github.com/rladies

\\n


\\n

Política - y Código de Conducta de R-Ladies:

En la comunidad R-Ladies los puestos - de responsabilidad como presentadoras y orientadoras son exclusivamente para - personas que se identifican con el género femenino. Aún así la asistencia - a las reuniones está abierta a personas de todos los géneros.

Siempre - se dará prioridad a la participación femenina ya que este grupo nació con - la intención de animar y apoyar a mujeres en los trabajos STEM (Science, Technology, - Engineering & Math) y en la comunidad de R. Las organizadoras de R-Ladies - tienen la responsabilidad y el derecho de tomar las acciones oportunas para - salvaguardar los intereses de la comunidad.

Código de conducta completo. - (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) -

\\n

R-Ladies Guayaquil welcomes members of all R proficiency levels, - whether you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling. Our non-profit, civil society - community is designed to develop our members' R skills & knowledge through - social, collaborative learning & sharing. Supporting minority identity - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

\\n

A local chapter of R-Ladies Global, R-Ladies - Guayaquil exists to promote gender diversity in the R community, both locally - and worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

\\n

We are part of Global R-Ladies group. - Here are some links! You can access our presentations, R scripts and more - (soon) on our Github account and follow us on twitter to stay up to date about - R-Ladies news!

\\n

Website: https://www.rladies.org

\\n

Github: - https://github.com/rladies

\\n

E-mail: - info [at] rladies [dot] org

\\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

\\n

GitHub: - http://github.com/rladies

\\n

Community - Policies & Code of Conduct:

\\n

The leadership, mentoring & teaching - roles within this Community are held exclusively by minority genders (majority - gender speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we, therefore, reserve the right to guard this interest through - whatever measures the leadership team deems appropriate. Anyone involved with - R-Ladies Guayaquil is expected to fully respect each other, the mandate of - this community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team.

\\n

Full - community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

Photos, - Films and all other media/recordings:

\\n

Photos, Films, and all other - media/recordings: photographs and/or video/other media will be taken at events - held by this community. By taking part in an R-Ladies Guayaquil event you - grant the community organizers full rights to use the images resulting from - the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1522968527000,\"gender_female\":0.5974441170692444,\"gender_male\":0.29392972588539124,\"gender_other\":0.00958466436713934,\"gender_unknown\":0.09904153645038605,\"id\":28062692,\"last_event\":1596812400000,\"lat\":-2.2100000381469727,\"lon\":-79.9000015258789,\"member_count\":541,\"name\":\"R-Ladies - Guayaquil\",\"past_events\":7,\"past_rsvps\":158,\"pro_join_date\":1523304941996,\"repeat_rsvpers\":13,\"rsvps_per_event\":22.571428298950195,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3833,\"name\":\"Software Development\",\"urlkey\":\"softwaredev\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":102002,\"name\":\"Gender - Equality\",\"urlkey\":\"gender-equality\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-guayaquil\",\"status\":\"Active\",\"cursor\":\"[['1523304941996'],['28062692']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":251757860,\"name\":\"Zulemma\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.701000213623047,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Porto - Alegre\",\"country\":\"Brazil\",\"description\":\"

R-Ladies Porto Alegre - faz parte de uma organização mundial para promover a diversidade de gênero - na comunidade R, R-Ladies Global. Somos uma rede de mulheres praticantes de - R em Porto Alegre. Nossos objetivos são fornecer uma rede solidária e encorajadora - para usuárias de R que se identifiquem como mulheres e promovam a aprendizagem - e a colaboração na comunidade R. Nós somos enfaticamente amigáveis ​​a comunidade - LGBTQ e abertos a todas as mulheres interessadas em programar em R, de novatos - a especialistas. Junte-se a nós!

\\n

Políticas e Código de Conduta da - Comunidade: atividades de liderança, orientação e ensino dentro desta Comunidade - são realizados exclusivamente por mulheres (speakers do gênero masculino podem - ser permitidos/convidados como convidados únicos em circunstâncias excepcionais, - a critério da equipe organizadora). Diante de demanda inesperada, é possível - abrirmos participação de aprendizado para todos os gêneros, mediante verificação - inicial e contínua da equipe organizadora. No entanto, a prioridade das comunidades - R-Ladies é o desenvolvimento e apoio específico daqueles que se identificam - como mulheres, e, portanto, reservamos o direito de proteger esse interesse - por qualquer medida que a equipe de liderança considere apropriada. Todas - as pessoas envolvidas com a R-Ladies devem se respeitar plenamente, o mandato - desta comunidade e a boa vontade em que a R-Ladies é fundada, ou enfrentar - a expulsão/penalidade de qualquer forma, a critério da equipe organizadora. - Fotos, filmes e todas as outras mídias/gravações: fotografias e/ou vídeo/outros - meios de comunicação serão realizados em eventos realizados por esta comunidade. - Ao participar de um evento R-Ladies, você concede as organizadoras da comunidade - direitos completos para usar as imagens resultantes da fotografia/video filmagem/mídia - e quaisquer reproduções ou adaptações das imagens para divulgação, captação - de recursos ou outros fins para ajudar a alcançar os objetivos da comunidade. - Isso pode incluir (mas não está limitado a), o direito de usá-los em sua publicidade - impressa e on-line, mídias sociais, comunicados de imprensa e aplicativos - de financiamento. Se você não deseja ser gravado nesses meios, informe uma - organizadora da comunidade.

\\n

Para verificar o Código de Conduta - da comunidade: 

\\n

https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#portuguese

\\n

https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct -

\\n

R-Ladies Global: https://rladies.org/

\\n

Facebook - R-Ladies Porto Alegre: https://www.facebook.com/RLadiesPortoAlegre...

\\n

==================================================================================================

\\n

R-Ladies - Porto Alegre is part of a world-wide organization to promote gender diversity - in the R community, R-Ladies Global. We are a network of women R practitioners - in Porto Alegre. Our goals are to provide a supportive and encouraging network - for R users who identify as female and to promote learning and collaboration - in the R community. We are emphatically LGBTQ friendly and open to any women - interested in programming in R, from experts to novices. Join us!

\\n

Community - Policies & Code of Conduct: the leadership, mentoring & teaching roles within - this Community are held exclusively by females (male speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as female, and we therefore reserve the - right to guard this interest through whatever measures the leadership team - deem appropriate. Anyone involved with R-Ladies is expected to fully respect - each other, the mandate of this community, and the goodwill on which R-Ladies - is founded, or face expulsion/a penalty of any form, at the discretion of - the leadership team. Photos, Films and all other media/recordings: photographs - and/or video/other media will be taken at events held by this community. By - taking part in an R-Ladies event you grant the community organizers full rights - to use the images resulting from the photography/video filming/media, and - any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1509331639000,\"gender_female\":0.8421052694320679,\"gender_male\":0.11403508484363556,\"gender_other\":0.004385964944958687,\"gender_unknown\":0.03947368264198303,\"id\":26434176,\"last_event\":1596146400000,\"lat\":-30.040000915527344,\"lon\":-51.220001220703125,\"member_count\":354,\"name\":\"R-Ladies - Porto Alegre\",\"past_events\":7,\"past_rsvps\":154,\"pro_join_date\":1522600955732,\"repeat_rsvpers\":27,\"rsvps_per_event\":22,\"state\":\"\",\"topics\":[{\"id\":7203,\"name\":\"Education - & Technology\",\"urlkey\":\"edtech\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-porto-alegre\",\"status\":\"Active\",\"cursor\":\"[['1522600955732'],['26434176']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":235259847,\"name\":\"Beatrice\",\"permission\":\"coorganizer\"},{\"member_id\":236214006,\"name\":\"Iara - Passos\",\"permission\":\"coorganizer\"},{\"member_id\":240880881,\"name\":\"Bruna - Martini Dalmoro\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.37779998779297,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"East - Lansing\",\"country\":\"USA\",\"description\":\"

Mission

\\n

R-Ladies - is a worldwide organization whose mission is to promote gender diversity in - the open-source R community.

\\n

Who we are/What we do:

\\n

R-Ladies - East Lansing is a local chapter of R-Ladies Global. We meet to discuss, - learn, teach, present, work on all things R! Our priority is to provide a - safe community space for anyone identifying as a minority gender who is interested - in and/or working with R. The group exists to promote gender diversity in - the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. <br>

\\n

Who could join?

\\n

R-Ladies - East Lansing welcomes members of all R proficiency levels, whether you - are a new or aspiring R user, or an experienced R programmer interested in - mentoring, networking & expert upskilling. Our non-profit, civil society - community is designed to develop our members' R skills & knowledge through - social, collaborative learning & sharing. Supporting minority identity - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

\\n

Anyone and everyone interested in R/Data - Science should join our group and participate/contribute in any way you can, - be they learners, teachers, developers or innovators! We encourage women and - minority genders to present/lead most sessions, conversations but we - have no restrictions whatsoever when it comes to membership, participation, - and discussions. So, please join us and bring your R-family & R-friends!

\\n

How - to be in touch:

\\n

You can access our presentations, R scripts and - more on our Github account and follow us on twitter to stay up to date about - R-Ladies news! Here are some useful links:

\\n

Social <br>

\\n

• - Meetup (here): https://www.meetup.com/rladies-east-lansing/

\\n

• - Twitter: @RLadiesELansing - @RLadiesGlobal

\\n

• - Slack: https://rladies-eastlansing.slack.com

\\n

• - E-mail: eastlansing [at] rladies [dot] org; info [at] rladies [dot] org

\\n

• - Organizers: Janani Ravi and Camille Archer <br>

\\n

R-Ladies - Global

\\n

• Website: https://www.rladies.org

\\n

• - Github: https://github.com/rladies

\\n

$$:

\\n

Free. - As a founding principle, there is no cost or charge to participate in any - of our R-Ladies communities around the world.

\\n

***

\\n

Please - read our Code of Conduct: https://rladies.org/code-of-conduct/

\\n

Full - community guidelines are found here: https://github.com/rladies/starter-kit/wiki

\\n

***

\\n

Photos, - Films and all other media/recordings: <br>

\\n

Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies East - Lansing event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1512857844000,\"gender_female\":0.6845238208770752,\"gender_male\":0.261904776096344,\"gender_other\":0.01785714365541935,\"gender_unknown\":0.0357142873108387,\"id\":26829576,\"last_event\":1605225600000,\"lat\":42.650001525878906,\"lon\":-84.48999786376953,\"member_count\":507,\"name\":\"R-Ladies - East Lansing\",\"past_events\":26,\"past_rsvps\":959,\"pro_join_date\":1522468283874,\"repeat_rsvpers\":216,\"rsvps_per_event\":36.88461685180664,\"state\":\"MI\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-east-lansing\",\"status\":\"Active\",\"cursor\":\"[['1522468283874'],['26829576']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":216505529,\"name\":\"Janani - Ravi\",\"permission\":\"coorganizer\"},{\"member_id\":256756207,\"name\":\"Camille - Archer\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.18669891357422,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Rotterdam\",\"country\":\"Netherlands\",\"description\":\"

R-Ladies - Rotterdam welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community is - designed to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! A - local chapter of R-Ladies Global, R-Ladies Rotterdam exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. 

\\n

Our priority is to provide a safe community space - for anyone identifying as a minority gender who is interested in and/or working - with R. 

\\n

As a founding principle, there is no cost or charge - to participate in any of our R-Ladies communities around the world.

\\n

-
We are part of Global R-Ladies group. Here are some links! You can access - our presentations, R scripts and more (soon) on our Github account and follow - us on twitter to stay up to date about R-Ladies news! 

\\n

Website: https://www.rladies.org

\\n

Github: - https://github.com/rladies

\\n

E-mail: - info [at] rladies [dot] org

\\n


\\n

PS Community Policies - & Code of Conduct: 

\\n

The leadership, mentoring & teaching roles - within this Community are held exclusively by minority genders (majority gender - speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we therefore reserve the right to guard this interest through - whatever measures the leadership team deem appropriate. Anyone involved with - R-Ladies Rotterdam is expected to fully respect each other, the mandate of - this community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team. Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki 

\\n


\\n

PPS - Photos, Films and all other media/recordings:

\\n

Photos, Films - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Rotterdam - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

\",\"founded_date\":1512494406000,\"gender_female\":0.8179012537002563,\"gender_male\":0.07716049253940582,\"gender_other\":0.009259259328246117,\"gender_unknown\":0.09567901492118835,\"id\":26792997,\"last_event\":1608656400000,\"lat\":51.93000030517578,\"lon\":4.480000019073486,\"member_count\":500,\"name\":\"R-Ladies - Rotterdam\",\"past_events\":16,\"past_rsvps\":323,\"pro_join_date\":1522468205991,\"repeat_rsvpers\":59,\"rsvps_per_event\":20.1875,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":3880,\"name\":\"Professional Development\",\"urlkey\":\"prodev\"},{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":15720,\"name\":\"Professional - Networking\",\"urlkey\":\"professional-networking\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":21067,\"name\":\"Collaboration\",\"urlkey\":\"collaboration\"},{\"id\":26273,\"name\":\"Professional - Women\",\"urlkey\":\"professional-women\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":43484,\"name\":\"Women's - Networking\",\"urlkey\":\"womens-networking\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-rotterdam\",\"status\":\"Active\",\"cursor\":\"[['1522468205991'],['26792997']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":53642152,\"name\":\"Quing - Wen He\",\"permission\":\"coorganizer\"},{\"member_id\":173594022,\"name\":\"Paloma\",\"permission\":\"coorganizer\"},{\"member_id\":183175267,\"name\":\"Yalda - Mohammadian\",\"permission\":\"coorganizer\"},{\"member_id\":193417724,\"name\":\"Mădălina - Naghi\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.868099212646484,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lausanne\",\"country\":\"Switzerland\",\"description\":\"

R-Ladies Lausanne - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling.

\\n

Our non-profit, civil society community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority genders (including - but not limited to cis/trans women, trans men, non-binary, genderqueer, agender) - access to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

\\n

A local chapter of R-Ladies Global, - R-Ladies Lausanne exists to promote gender diversity in the R community - worldwide. Our priority is to provide a safe community space for anyone - identifying as a minority gender who is interested in and/or working with - R.

\\n

As a founding principle, there is no cost or charge to - participate in any of our R-Ladies communities around the world.

\\n

We - are part of Global R-Ladies group. Here are some links! You can access our - presentations, R scripts and more on our Github account and follow us on twitter - to stay up to date about R-Ladies news!

\\n

Website

\\n

R-Ladies - Global: https://www.rladies.org -

\\n

R-Ladies Lausanne: https://www.meetup.com/rladies-lausanne/about/ - and https://rladieslausanne.github.io/ -

\\n

Github

\\n

R-Ladies Global: github.com/rladies -
R-Ladies Lausanne: github.com/rladies/meetup-presentations_lausanne -

\\n

E-mail

\\n

info[at] rladies [dot] org or - lausanne [at] rladies [dot] org

\\n

Twitter

\\n

@RLadiesGlobal -
@RLadiesLausanne

\\n

FAQ

\\n

Q: I'm not a frequent - R user, and I'm afraid I won't understand the presentations.
A: No worries! - Our meetups are open to people from all levels and also aim for networking. - We also encourage to ask questions if something is not clear.

\\n

Q: - I'm a guy, and it seems this meetup is only for women.
A: This group is - mainly aimed at minority genders (including but not limited to cis/trans women, - trans men, non-binary, genderqueer, agender) but is open to all that agree - to the CoC. However, - leadership roles remain reserved for minority genders.

\\n

PS Community - Policies & Code of Conduct:

\\n

The leadership, mentoring - & teaching roles within this Community are held exclusively by minority - genders (including but not limited to cis/trans women, trans men, non-binary, - genderqueer, agender) (majority gender speakers may be allowed/invited as - one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we therefore reserve - the right to guard this interest through whatever measures the leadership - team deem appropriate. Anyone involved with R-Ladies Lausanne is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

\\n

Find the - Code of Conduct here: https://rladies.org/code-of-conduct/ -

\\n

Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki -

\\n


PPS Photos, Films and all other media/recordings
: - Photos, Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Lausanne event you grant the community organizers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community’s aims. This might include (but is - not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

\",\"founded_date\":1512244428000,\"gender_female\":0.7224880456924438,\"gender_male\":0.13875597715377808,\"gender_other\":0.014354066923260689,\"gender_unknown\":0.12440191209316254,\"id\":26765765,\"last_event\":1575394200000,\"lat\":46.52000045776367,\"lon\":6.619999885559082,\"member_count\":317,\"name\":\"R-Ladies - Lausanne\",\"past_events\":12,\"past_rsvps\":197,\"pro_join_date\":1522468025962,\"repeat_rsvpers\":34,\"rsvps_per_event\":16.41666603088379,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":10538,\"name\":\"Business - Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":20629,\"name\":\"Courses and Workshops\",\"urlkey\":\"courses-and-workshops\"},{\"id\":23105,\"name\":\"Professional - Development for Women\",\"urlkey\":\"personal-and-professional-development-for-women\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lausanne\",\"status\":\"Active\",\"cursor\":\"[['1522468025962'],['26765765']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":243069130,\"name\":\"Ninon - Mounier\",\"permission\":\"coorganizer\"},{\"member_id\":249572731,\"name\":\"LMGD\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.59859848022461,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Copenhagen\",\"country\":\"Denmark\",\"description\":\"

R-Ladies - Copenhagen welcomes members of all R proficiency levels, whether you're a - new or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community is - designed to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! 

\\n
\\n

A - local chapter of R-Ladies Global, R-Ladies Copenhagen exists to promote gender - diversity in the R community, both in  Denmark and worldwide. We are pro-actively - inclusive of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities. Our priority is to provide a safe community - space for anyone identifying as a minority gender who is interested in and/or - working with R. As a founding principle, there is no cost or charge to participate - in any of our R-Ladies communities around the world.

\\n
\\n

We - are part of Global R-Ladies group. Here are some links! You can - access our presentations, R scripts and more (soon) on our Github account - and follow us on twitter to stay up to date about R-Ladies news! 

\\n

Website: https://www.rladies.org

\\n

Github: https://github.com/rladies

\\n

E-mail: - info [at] rladies [dot] org

\\n

Twitter: @RLadiesGlobal

\\n

GitHub: http://github.com/rladies

\\n
\\n

PS - Community Policies & Code of Conduct: 

\\n
\\n

The leadership, - mentoring & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Due to - unexpected demand, we have opened learning participation to all genders, dependent - on initial and on-going vetting by the leadership team. However, the stated - priority of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we therefore reserve the right - to guard this interest through whatever measures the leadership team deem - appropriate. Anyone involved with R-Ladies Copenhagen is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team. 

\\n
\\n

Full community guidelines are - found here:  https://github.com/rladies/starter-kit/wiki

\\n
\\n

PPS - Photos, Films and all other media/recordings: 

\\n
\\n

Photos, - Films and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Copenhagen event you grant the community organizers full rights to use the - images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\\n
\\n


\\n

-

\\n
\",\"founded_date\":1511195891000,\"gender_female\":0.702531635761261,\"gender_male\":0.2056961953639984,\"gender_other\":0.009493670426309109,\"gender_unknown\":0.08227848261594772,\"id\":26653718,\"last_event\":1575563400000,\"lat\":55.68000030517578,\"lon\":12.569999694824219,\"member_count\":450,\"name\":\"R-Ladies - Copenhagen\",\"past_events\":10,\"past_rsvps\":288,\"pro_join_date\":1522467951378,\"repeat_rsvpers\":61,\"rsvps_per_event\":28.799999237060547,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-copenhagen\",\"status\":\"Active\",\"cursor\":\"[['1522467951378'],['26653718']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":203740938,\"name\":\"Kristina - Gregorio\",\"permission\":\"coorganizer\"},{\"member_id\":207419011,\"name\":\"Diana - Lucatero\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.40399932861328,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Auckland\",\"country\":\"New - Zealand\",\"description\":\"

A local chapter of R-Ladies Global, R-Ladies - Auckland exists to promote diversity in the R community worldwide. We are - pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities - our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. As a founding principle, there is no - cost or charge to participate in any of our R-Ladies communities around the - world.

\\n

R-Ladies Auckland welcomes members of all R proficiency levels, - whether you're a new or aspiring R user, or an experienced R programmer interested - in mentoring, networking & expert upskilling.

\\n

@RLadiesALK (twitter) - | auckland [at] rladies.org (email) | https://github.com/R-LadiesAKL/meetup-presentations_auckland - (GitHub) 

\\n


\\n

PS Community Policies & Code - of Conduct:

\\n

the leadership, mentoring & teaching - roles within this Community are held exclusively by minority genders (majority - gender speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). R-Ladies Auckland have opened learning - participation to all genders, dependent on initial and on-going vetting by - the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we therefore reserve the right to guard this interest through - whatever measures the leadership team deem appropriate. Anyone involved with - R-Ladies Auckland is expected to fully respect each other, the mandate of - this community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team.

\\n

Full - community guidelines are found here:

\\n

https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\\n

PPS - Photos, Films and all other media/recordings:

\\n

photographs and/or - video/other media will be taken at events held by this community. By taking - part in an R-Ladies Auckland event you grant the community organisers full - rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organiser. -

\\n


\\n

We are part of Global R-Ladies - group:

\\n

@RLadiesGlobal

\\n

- | info [at] rladies.org (email) |

\\n

rladies.org

\\n

- (website) | github.com/rladies

\\n
\\n


\",\"founded_date\":1511197390000,\"gender_female\":0.6581196784973145,\"gender_male\":0.23290598392486572,\"gender_other\":0.008547008968889713,\"gender_unknown\":0.10042735189199448,\"id\":26653882,\"last_event\":1606957200000,\"lat\":-36.849998474121094,\"lon\":174.75999450683594,\"member_count\":726,\"name\":\"R-Ladies - Auckland\",\"past_events\":27,\"past_rsvps\":937,\"pro_join_date\":1522467867423,\"repeat_rsvpers\":164,\"rsvps_per_event\":34.703704833984375,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-auckland\",\"status\":\"Active\",\"cursor\":\"[['1522467867423'],['26653882']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":204498418,\"name\":\"Anjali - Gupta\",\"permission\":\"coorganizer\"},{\"member_id\":210945122,\"name\":\"Kim - Fitter\",\"permission\":\"coorganizer\"},{\"member_id\":242654815,\"name\":\"Anna - Fergusson\",\"permission\":\"coorganizer\"},{\"member_id\":286901050,\"name\":\"Izzy - Johnson\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.89189910888672,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"},{\"id\":12,\"name\":\"LGBT\",\"shortname\":\"lgbt\"}],\"city\":\"Cambridge\",\"country\":\"United - Kingdom\",\"description\":\"

R-Ladies Cambridge is part of R-Ladies - Global, a world-wide organization to promote gender diversity in the R - community.  

\\n

We aspire to encourage and support women interested - in learning and sharing their experience in R programming by hosting a variety - of events including talks, workshops.

\\n

R-Ladies Cambridge welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring or networking. Our - non-profit, civil society community is designed to develop our members' R - skills and knowledge through social, collaborative learning and sharing. 

\\n

Membership - to R-Ladies Cambridge is free. All are welcome to participate to our events.

\\n

-

\\n

Community Policies & Code of Conduct: full community - guidelines are found at https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

\\n

Photos, - Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Cambridge event you grant the community organisers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community’s aims. This might include (but is - not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organiser. 

\",\"founded_date\":1510331292000,\"gender_female\":0.7364341020584106,\"gender_male\":0.20155039429664612,\"gender_other\":0.007751937955617905,\"gender_unknown\":0.05426356568932533,\"id\":26556368,\"last_event\":1596553200000,\"lat\":52.20000076293945,\"lon\":0.10999999940395355,\"member_count\":284,\"name\":\"R-Ladies - Cambridge\",\"past_events\":2,\"past_rsvps\":110,\"pro_join_date\":1522343759150,\"repeat_rsvpers\":4,\"rsvps_per_event\":55,\"state\":\"C3\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cambridge\",\"status\":\"Active\",\"cursor\":\"[['1522343759150'],['26556368']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":222072504,\"name\":\"Rita - Giordano\",\"permission\":\"coorganizer\"},{\"member_id\":241624243,\"name\":\"Alexia - Cardona\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.70589828491211,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Amsterdam\",\"country\":\"Netherlands\",\"description\":\"

A - local chapter of R-Ladies Global, R-Ladies Amsterdam exists to promote diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities - our priority is to provide a safe community space for anyone - identifying as a minority gender who is interested in and/or working with - R. As a founding principle, there is no cost or charge to participate in any - of our R-Ladies communities around the world.

\\n

R-Ladies Amsterdam - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our non-profit, civil society community is designed to - develop our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, the - Free Software Movement, and contributing to the global R community! 

\\n

-

\\n

@RLadiesGlobal | info [at] rladies.org (email) | rladies.org - (website) | github.com/rladies

\\n

PS Community Policies & Code of - Conduct: the leadership, mentoring & teaching roles within this Community - are held exclusively by minority genders (majority gender speakers may be - allowed/invited as one-off guests in exceptional circumstances at the leadership - team's discretion). Due to unexpected demand, we have opened learning participation - to all genders, dependent on initial and on-going vetting by the leadership - team. However, the stated priority of the R-Ladies communities is the development - & support specifically of those identifying as a minority gender, and we, - therefore, reserve the right to guard this interest through whatever measures - the leadership team deem appropriate. Anyone involved with R-Ladies Amsterdam - is expected to fully respect each other, the mandate of this community, and - the goodwill on which R-Ladies is founded, or face expulsion/a penalty of - any form, at the discretion of the leadership team. Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Amsterdam event you grant the community organizers full rights to - use the images resulting from the photography/video filming/media, and any - reproductions or adaptations of the images for publicity, fundraising or other - purposes to help achieve the community’s aims. This might include (but is - not limited to), the right to use them in their printed and online publicity, - social media, press releases and funding applications. If you do not wish - to be recorded in these media please inform a community organizer.

\",\"founded_date\":1518232937000,\"gender_female\":0.8231827020645142,\"gender_male\":0.11787819117307663,\"gender_other\":0.005893909838050604,\"gender_unknown\":0.05304518714547157,\"id\":27443387,\"last_event\":1608228000000,\"lat\":52.369998931884766,\"lon\":4.889999866485596,\"member_count\":876,\"name\":\"R-Ladies - Amsterdam\",\"past_events\":26,\"past_rsvps\":1334,\"pro_join_date\":1522343661978,\"repeat_rsvpers\":255,\"rsvps_per_event\":51.30769348144531,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1512213,\"name\":\"Data Science - using R\",\"urlkey\":\"data-science-using-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-amsterdam\",\"status\":\"Active\",\"cursor\":\"[['1522343661978'],['27443387']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":96935202,\"name\":\"Margaux\",\"permission\":\"coorganizer\"},{\"member_id\":217504537,\"name\":\"Janine - Khuc\",\"permission\":\"coorganizer\"},{\"member_id\":241812692,\"name\":\"Melissa - Gurcan\",\"permission\":\"coorganizer\"},{\"member_id\":251749035,\"name\":\"Sarah - S\",\"permission\":\"coorganizer\"}]},{\"average_age\":27,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Cotonou\",\"country\":\"Benin\",\"description\":\"

R-Ladies - Cotonou welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our community is designed to develop our - members' R skills & knowledge through social, collaborative learning & - sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community! <br>A - local chapter of R-Ladies Global, R-Ladies Cotonou exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world. <br> <br>

\\n

We are part - of Global R-Ladies group. You can access our presentations, R scripts, and - Projects on our Github account and follow us on twitter to stay up to date - about R-Ladies news! <br> <br>

\\n

Website: https://www.rladies.org <br> <br>

- \\n

Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal ) <br> - <br>

\\n

Github: https://github.com/rladies - <br> <br>

\\n

PS Community Policies & Code of Conduct: - <br>The leadership, mentoring & teaching roles within this Community - are held exclusively by minority genders (majority gender speakers may be - allowed/invited as one-off guests in exceptional circumstances at the leadership - team's discretion). Due to unexpected demand, we have opened learning participation - to all genders, dependent on initial and on-going vetting by the leadership - team. However, the stated priority of the R-Ladies communities is the development - & support specifically of those identifying as a minority gender, and - we, therefore, reserve the right to guard this interest through whatever measures - the leadership team deems appropriate. Anyone involved with R-Ladies Cotonou - is expected to fully respect each other, the mandate of this community, and - the goodwill on which R-Ladies is founded, or face expulsion/a penalty of - any form, at the discretion of the leadership team. <br>Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki <br> - <br>

\\n

PPS Photos, Films and all other media/recordings: - <br>Photos, Films, and all other media/recordings: photographs and/or - video/other media will be taken at events held by this community. By taking - part in an R-Ladies Cotonou event you grant the community organizers full - rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

\",\"founded_date\":1522343125000,\"gender_female\":1,\"gender_male\":0,\"gender_other\":0,\"gender_unknown\":0,\"id\":27986524,\"last_event\":1581148800000,\"lat\":6.360000133514404,\"lon\":2.440000057220459,\"member_count\":35,\"name\":\"R-Ladies - Cotonou\",\"past_events\":2,\"past_rsvps\":3,\"pro_join_date\":1522343482266,\"repeat_rsvpers\":1,\"rsvps_per_event\":1.5,\"state\":\"\",\"topics\":[{\"id\":456,\"name\":\"Artificial - Intelligence\",\"urlkey\":\"ai\"},{\"id\":563,\"name\":\"Open Source\",\"urlkey\":\"opensource\"},{\"id\":10232,\"name\":\"Women's - Social\",\"urlkey\":\"women\"},{\"id\":10538,\"name\":\"Business Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":15167,\"name\":\"Cloud - Computing\",\"urlkey\":\"cloud-computing\"},{\"id\":15497,\"name\":\"Women - Entrepreneurs\",\"urlkey\":\"women-entrepreneurs\"},{\"id\":17933,\"name\":\"Women's - Empowerment\",\"urlkey\":\"womens-empowerment\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-cotonou\",\"status\":\"Active\",\"cursor\":\"[['1522343482266'],['27986524']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":251253933,\"name\":\"Nadejda - Sero\",\"permission\":\"coorganizer\"},{\"member_id\":285114963,\"name\":\"HOUETOHOSSOU - Calmette Ariane\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.155601501464844,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Seattle\",\"country\":\"USA\",\"description\":\"

A - local chapter of R-Ladies Global, R-Ladies Seattle exists to promote diversity - in the R community, both in the US and worldwide. We are pro-actively inclusive - of queer, trans, and all minority identities, with additional sensitivity - to intersectional identities (which many lead R-Ladies are) - our priority - is to provide a safe community space for anyone identifying as a minority - gender who is interested in and/or working with R. As a founding principle, - there is no cost or charge to participate in any of our R-Ladies communities - around the world.

\\n

R-Ladies Seattle welcomes members of all R proficiency - levels, whether you're a new or aspiring R user, or an experienced R programmer - interested in mentoring, networking & expert upskilling. Our non-profit, - civil society community is designed to develop our members' R skills & - knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

\\n

@RLadiesSeattle (https://twitter.com/RLadiesSeattle)

\\n

@RLadiesGlobal - | info [at] rladies.org (email) | rladies.org (website) | github.com/rladies

\\n

https://rladiesseattle.org/

\\n

PS - Community Policies & Code of Conduct: the leadership, mentoring & - teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically - of those identifying as a minority gender, and we, therefore, reserve the - right to guard this interest through whatever measures the leadership team - deem appropriate. Anyone involved with R-Ladies Seattle is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team. Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki...

\\n

PPS - Photos, Films and all other media/recordings: photographs and/or video/other - media will be taken at events held by this community. By taking part in an - R-Ladies Seattle event you grant the community organizers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1510161305000,\"gender_female\":0.8111110925674438,\"gender_male\":0.0555555559694767,\"gender_other\":0.004444444552063942,\"gender_unknown\":0.12888889014720917,\"id\":26537030,\"last_event\":1608148800000,\"lat\":47.61000061035156,\"lon\":-122.33000183105469,\"member_count\":811,\"name\":\"R-Ladies - Seattle\",\"next_event\":1610654400000,\"past_events\":33,\"past_rsvps\":828,\"pro_join_date\":1522291338353,\"repeat_rsvpers\":170,\"rsvps_per_event\":25.090909957885742,\"state\":\"WA\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-seattle\",\"status\":\"Active\",\"cursor\":\"[['1522291338353'],['26537030']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":54305642,\"name\":\"Monica - Gerber\",\"permission\":\"coorganizer\"},{\"member_id\":126612732,\"name\":\"Jenny\",\"permission\":\"event_organizer\"},{\"member_id\":194703370,\"name\":\"Pamela - M\",\"permission\":\"coorganizer\"},{\"member_id\":212315638,\"name\":\"Isabella\",\"permission\":\"coorganizer\"},{\"member_id\":227480422,\"name\":\"Katie - Jolly\",\"permission\":\"coorganizer\"},{\"member_id\":240774535,\"name\":\"Chaya - Jones\",\"permission\":\"coorganizer\"}]},{\"average_age\":28.783599853515625,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Addis - Abeba\",\"country\":\"Ethiopia\",\"description\":\"

R-Ladies Addis Ababa - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our community is designed to develop our members' R skills - & knowledge through social, collaborative learning & sharing. Supporting minority - identity access to STEM skills & careers, the Free Software Movement, and - contributing to the global R community!

\\n

A local chapter of R-Ladies - Global, R-Ladies Addis Ababa exists to promote gender diversity in the R community - worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

\\n

We are part of Global R-Ladies group. - You can access our presentations, R scripts, and Projects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

\\n

Website: - https://www.rladies.org

\\n

Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

\\n

Github: https://github.com/rladies

\\n

PS - Community Policies & Code of Conduct:

\\n

The leadership, mentoring - & teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically of those - identifying as a minority gender, and we, therefore, reserve the right to - guard this interest through whatever measures the leadership team deems appropriate. - Anyone involved with R-Ladies Baltimore is expected to fully respect each - other, the mandate of this community, and the goodwill on which R-Ladies is - founded, or face expulsion/a penalty of any form, at the discretion of the - leadership team.

\\n

Full community guidelines are found here: - https://github.com/rladies/starter-kit/wiki

\\n

PPS - Photos, Films and all other media/recordings:

\\n

Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Addis - Ababa event you grant the community organizers full rights to use the images - resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

\",\"founded_date\":1521648181000,\"gender_female\":0.38805970549583435,\"gender_male\":0.5373134613037109,\"gender_other\":0,\"gender_unknown\":0.0746268630027771,\"id\":27902133,\"last_event\":1607425200000,\"lat\":9.029999732971191,\"lon\":38.7400016784668,\"member_count\":509,\"name\":\"R-Ladies - Addis Ababa\",\"past_events\":24,\"past_rsvps\":110,\"pro_join_date\":1522103888059,\"repeat_rsvpers\":10,\"rsvps_per_event\":4.583333492279053,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-addis-ababa\",\"status\":\"Active\",\"cursor\":\"[['1522103888059'],['27902133']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":250721080,\"name\":\"Margareth\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.445899963378906,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Irvine\",\"country\":\"USA\",\"description\":\"

R-Ladies - Irvine is part of a world-wide organization to promote gender diversity in - the R community. We aspire to encourage and support women interested in learning - and sharing their experience in R programming by hosting a variety of events - including talks, workshops, and socials.

\\n

Anyone with an interest - in R is welcome - beginners, experts and everyone in between. We exchange - ideas, share knowledge, and create a friendly network among women who use - R!

\\n
    \\n

    Join the R-Ladies Irvine Slack - workspace! Email us at irvine@rladies.org. Then check back here or visit - our website for event details.

    \\n

    For - more information about R-Ladies Global, visit rladies.org.

    \",\"founded_date\":1520969425000,\"gender_female\":0.6932271122932434,\"gender_male\":0.19920319318771362,\"gender_other\":0.011952191591262817,\"gender_unknown\":0.09561753273010254,\"id\":27819387,\"last_event\":1605666600000,\"lat\":33.650001525878906,\"lon\":-117.83999633789062,\"member_count\":455,\"name\":\"R-Ladies - Irvine\",\"next_event\":1611106200000,\"past_events\":19,\"past_rsvps\":500,\"pro_join_date\":1522103878786,\"repeat_rsvpers\":98,\"rsvps_per_event\":26.3157901763916,\"state\":\"CA\",\"topics\":[{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-irvine\",\"status\":\"Active\",\"cursor\":\"[['1522103878786'],['27819387']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":191580137,\"name\":\"Madeline\",\"permission\":\"coorganizer\"},{\"member_id\":195537838,\"name\":\"Stacey - Borrego\",\"permission\":\"coorganizer\"},{\"member_id\":201317696,\"name\":\"Linda - Palmer\",\"permission\":\"coorganizer\"},{\"member_id\":225516134,\"name\":\"Liliana - Clementino\",\"permission\":\"coorganizer\"},{\"member_id\":241100666,\"name\":\"Alyssa - Columbus\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.19169998168945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Tampa\",\"country\":\"USA\",\"description\":\"

    R-Ladies - Tampa welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our non-profit, civil society community is designed to - develop our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, the - Free Software Movement, and contributing to the global R community!

    \\n

    A - local chapter of R-Ladies Global, R-Ladies Tampa exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n

    We are part of Global R-Ladies group. - You can access our presentations, R scripts and Prjects on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

    \\n

    Website: - https://www.rladies.org

    \\n

    Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

    \\n

    Github: https://github.com/rladies

    \\n

    PS - Community Policies & Code of Conduct:

    \\n

    The leadership, mentoring - & teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically of those - identifying as a minority gender, and we, therefore, reserve the right to - guard this interest through whatever measures the leadership team deems appropriate. - Anyone involved with R-Ladies Baltimore is expected to fully respect each - other, the mandate of this community, and the goodwill on which R-Ladies is - founded, or face expulsion/a penalty of any form, at the discretion of the - leadership team.

    \\n

    Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Tampa - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

    \",\"founded_date\":1520792210000,\"gender_female\":0.691919207572937,\"gender_male\":0.1818181872367859,\"gender_other\":0.010101010091602802,\"gender_unknown\":0.11616161465644836,\"id\":27797804,\"last_event\":1599919200000,\"lat\":27.979999542236328,\"lon\":-82.33999633789062,\"member_count\":313,\"name\":\"R-Ladies - Tampa\",\"past_events\":33,\"past_rsvps\":186,\"pro_join_date\":1522103863068,\"repeat_rsvpers\":35,\"rsvps_per_event\":5.636363506317139,\"state\":\"FL\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10538,\"name\":\"Business Intelligence\",\"urlkey\":\"businessintell\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-tampa\",\"status\":\"Active\",\"cursor\":\"[['1522103863068'],['27797804']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":242558000,\"name\":\"Gina - G.\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.45759963989258,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Dallas\",\"country\":\"USA\",\"description\":\"

    R-Ladies - Dallas welcomes members of all R proficiency levels, whether you're a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community - is designed to develop our members' R skills & knowledge through social, - collaborative learning & sharing. Supporting minority identity access - to STEM skills & careers, the Free Software Movement, and contributing - to the global R community!

    \\n

    A local chapter of R-Ladies Global, R-Ladies - Dallas exists to promote gender diversity in the R community worldwide. We - are pro-actively inclusive of queer, trans, and all minority identities, with - additional sensitivity to intersectional identities. Our priority is to provide - a safe community space for anyone identifying as a minority gender who is - interested in and/or working with R. As a founding principle, there is no - cost or charge to participate in any of our R-Ladies communities around the - world.

    \\n

    We are part of Global R-Ladies group. Here are some links! - You can access our presentations, R scripts and more on our Github account - and follow us on twitter to stay up to date about R-Ladies news!

    \\n

    Website: - https://www.rladies.org

    \\n

    Twitter: - @RLadiesGlobal ( https://twitter.com/RLadiesGlobal - )

    \\n

    GitHub: http://github.com/rladies

    \\n

    PS - Community Policies & Code of Conduct:

    \\n

    The leadership, mentoring - & teaching roles within this Community are held exclusively by minority - genders (majority gender speakers may be allowed/invited as one-off guests - in exceptional circumstances at the leadership team's discretion). Anyone - involved with R-Ladies Dallas is expected to fully respect each other, the - mandate of this community, and the goodwill on which R-Ladies is founded, - or face expulsion/a penalty of any form, at the discretion of the leadership - team.

    \\n

    Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, Films, and - all other media/recordings: photographs and/or video/other media will be taken - at events held by this community. By taking part in an R-Ladies Dallas event - you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

    \",\"founded_date\":1520195700000,\"gender_female\":0.6666666865348816,\"gender_male\":0.18855218589305878,\"gender_other\":0.013468013145029545,\"gender_unknown\":0.13131313025951385,\"id\":27724373,\"last_event\":1607383800000,\"lat\":32.790000915527344,\"lon\":-96.80000305175781,\"member_count\":463,\"name\":\"R-Ladies - Dallas\",\"next_event\":1611012600000,\"past_events\":25,\"past_rsvps\":306,\"pro_join_date\":1522103858331,\"repeat_rsvpers\":65,\"rsvps_per_event\":12.239999771118164,\"state\":\"TX\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":2,\"urlname\":\"rladies-dallas\",\"status\":\"Active\",\"cursor\":\"[['1522103858331'],['27724373']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":9342634,\"name\":\"Pavitra - Chakravarty\",\"permission\":\"event_organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":27392172,\"name\":\"Sydeaka\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.59410095214844,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Johannesburg\",\"country\":\"South - Africa\",\"description\":\"

    R-Ladies Johannesburg welcomes members of all - R proficiency levels, whether you're a new or aspiring R user, or an experienced - R programmer interested in mentoring, networking & expert upskilling. Our - non-profit, civil society community is designed to develop our members' R - skills & knowledge through social, collaborative learning & sharing. Supporting - minority identity access to STEM skills & careers, the Free Software Movement, - and contributing to the global R community!

    \\n

    A local chapter of R-Ladies - Global, R-Ladies Johannesburg exists to promote gender diversity in the R - community worldwide. We are pro-actively inclusive of queer, trans, and all - minority identities, with additional sensitivity to intersectional identities. - Our priority is to provide a safe community space for anyone identifying as - a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n

    We are part of Global R-Ladies group. - Here are some links! You can access our presentations, R scripts and more - (soon) on our Github account and follow us on twitter to stay up to date about - R-Ladies news!

    \\n

    Website: https://www.rladies.org

    \\n

    Github: - https://github.com/rladies

    \\n

    E-mail: - info [at] rladies [dot] org

    \\n

    Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

    \\n

    GitHub: - http://github.com/rladies

    \\n

    PS - Community Policies & Code of Conduct:

    \\n

    The leadership, mentoring - & teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically of those - identifying as a minority gender, and we, therefore, reserve the right to - guard this interest through whatever measures the leadership team deems appropriate. - Anyone involved with R-Ladies Johannesburg is expected to fully respect each - other, the mandate of this community, and the goodwill on which R-Ladies is - founded, or face expulsion/a penalty of any form, at the discretion of the - leadership team.

    \\n

    Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Johannesburg - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

    \",\"founded_date\":1519624420000,\"gender_female\":0.5678670406341553,\"gender_male\":0.30747923254966736,\"gender_other\":0.005540166050195694,\"gender_unknown\":0.11911357194185257,\"id\":27651490,\"last_event\":1606748400000,\"lat\":-26.190000534057617,\"lon\":28.040000915527344,\"member_count\":703,\"name\":\"R-Ladies - Johannesburg\",\"next_event\":1610643600000,\"past_events\":27,\"past_rsvps\":623,\"pro_join_date\":1522103844510,\"repeat_rsvpers\":102,\"rsvps_per_event\":23.074073791503906,\"state\":\"\",\"topics\":[{\"id\":10494,\"name\":\"Data - Management\",\"urlkey\":\"datamanagement\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":375271,\"name\":\"STEM\",\"urlkey\":\"stem\"},{\"id\":1335552,\"name\":\"R - Programming Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":1,\"urlname\":\"rladies-johannesburg\",\"status\":\"Active\",\"cursor\":\"[['1522103844510'],['27651490']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":241608375,\"name\":\"Vebash\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.01100158691406,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Oslo\",\"country\":\"Norway\",\"description\":\"

    R-Ladies - Oslo welcomes members of all R proficiency levels, whether you're a new or - aspiring R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our non-profit, civil society community is designed to - develop our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, the - Free Software Movement, and contributing to the global R community!

    \\n

    A - local chapter of R-Ladies Global, R-Ladies Oslo exists to promote gender diversity - in the R community worldwide. We are pro-actively inclusive of queer, trans, - and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n

    We are part of Global R-Ladies group. - Here are some links! You can access our presentations, R scripts and more - (soon) on our Github account and follow us on twitter to stay up to date about - R-Ladies news!

    \\n

    Website: https://www.rladies.org

    \\n

    Github: - https://github.com/rladies

    \\n

    E-mail: - info [at] rladies [dot] org

    \\n

    Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

    \\n

    GitHub: - http://github.com/rladies

    \\n

    PS - Community Policies & Code of Conduct:

    \\n

    The leadership, mentoring - & teaching roles within this Community are held exclusively by minority genders - (majority gender speakers may be allowed/invited as one-off guests in exceptional - circumstances at the leadership team's discretion). Due to unexpected demand, - we have opened learning participation to all genders, dependent on initial - and on-going vetting by the leadership team. However, the stated priority - of the R-Ladies communities is the development & support specifically of those - identifying as a minority gender, and we, therefore, reserve the right to - guard this interest through whatever measures the leadership team deems appropriate. - Anyone involved with R-Ladies Oslo is expected to fully respect each other, - the mandate of this community, and the goodwill on which R-Ladies is founded, - or face expulsion/a penalty of any form, at the discretion of the leadership - team.

    \\n

    Full community guidelines are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Oslo - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

    \",\"founded_date\":1519624026000,\"gender_female\":0.675000011920929,\"gender_male\":0.20357142388820648,\"gender_other\":0.014285714365541935,\"gender_unknown\":0.1071428582072258,\"id\":27651457,\"last_event\":1600959600000,\"lat\":59.90999984741211,\"lon\":10.75,\"member_count\":538,\"name\":\"R-Ladies - Oslo\",\"past_events\":12,\"past_rsvps\":523,\"pro_join_date\":1522103840877,\"repeat_rsvpers\":92,\"rsvps_per_event\":43.58333206176758,\"state\":\"\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1511155,\"name\":\"Women - R Programmers\",\"urlkey\":\"women-r-programmers\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-oslo\",\"status\":\"Active\",\"cursor\":\"[['1522103840877'],['27651457']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":174360632,\"name\":\"Isabelle - Valette\",\"permission\":\"coorganizer\"},{\"member_id\":210967654,\"name\":\"Lene - Norderhaug Drøsdal\",\"permission\":\"coorganizer\"},{\"member_id\":249035230,\"name\":\"Athanasia - Monika Mowinckel\",\"permission\":\"coorganizer\"},{\"member_id\":251091299,\"name\":\"Aurora - Voje\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.57939910888672,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Baltimore\",\"country\":\"USA\",\"description\":\"

    R-Ladies - Baltimore (https://rladies-baltimore.github.io) welcomes - members of all R proficiency levels, whether you're a new or aspiring R user, - or an experienced R programmer interested in mentoring, networking & expert - upskilling. Our non-profit, civil society community is designed to develop - our members' R skills & knowledge through social, collaborative learning - & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!

    \\n

    A - local chapter of R-Ladies Global, R-Ladies Baltimore exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n

    We are part of Global R-Ladies group. - Here are some links! You can access our presentations, R scripts and more - (soon) on our Github account and follow us on twitter to stay up to date about - R-Ladies news!

    \\n

    Website: https://rladies-baltimore.github.io

    \\n

    Github: - https://github.com/rladies

    \\n

    E-mail: - info [at] rladies [dot] org

    \\n

    Twitter: @RLadiesGlobal ( https://twitter.com/RLadiesGlobal )

    \\n

    GitHub: - http://github.com/rladies

    \\n

    PS - Community Policies & Code of Conduct:

    \\n

    The leadership, - mentoring & teaching roles within this Community are held exclusively - by minority genders (majority gender speakers may be allowed/invited as one-off - guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying as a minority gender, and we, therefore, - reserve the right to guard this interest through whatever measures the leadership - team deems appropriate. Anyone involved with R-Ladies Baltimore is expected - to fully respect each other, the mandate of this community, and the goodwill - on which R-Ladies is founded, or face expulsion/a penalty of any form, at - the discretion of the leadership team.

    \\n

    Full community guidelines - are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, Films, - and all other media/recordings: photographs and/or video/other media will - be taken at events held by this community. By taking part in an R-Ladies Baltimore - event you grant the community organizers full rights to use the images resulting - from the photography/video filming/media, and any reproductions or adaptations - of the images for publicity, fundraising or other purposes to help achieve - the community’s aims. This might include (but is not limited to), the right - to use them in their printed and online publicity, social media, press releases - and funding applications. If you do not wish to be recorded in these media - please inform a community organizer.

    \",\"founded_date\":1519623494000,\"gender_female\":0.699367105960846,\"gender_male\":0.1803797483444214,\"gender_other\":0.012658228166401386,\"gender_unknown\":0.10759493708610535,\"id\":27651413,\"last_event\":1608148800000,\"lat\":39.290000915527344,\"lon\":-76.62000274658203,\"member_count\":649,\"name\":\"R-Ladies - Baltimore\",\"next_event\":1611864000000,\"past_events\":18,\"past_rsvps\":765,\"pro_join_date\":1522103836937,\"repeat_rsvpers\":159,\"rsvps_per_event\":42.5,\"state\":\"MD\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":9696,\"name\":\"New Technology\",\"urlkey\":\"newtech\"},{\"id\":10494,\"name\":\"Data - Management\",\"urlkey\":\"datamanagement\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":383411,\"name\":\"Big Data - Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":731792,\"name\":\"learn - coding\",\"urlkey\":\"learn-coding\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":5,\"urlname\":\"rladies-baltimore\",\"status\":\"Active\",\"cursor\":\"[['1522103836937'],['27651413']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":232166958,\"name\":\"Stephanie - Hicks\",\"permission\":\"coorganizer\"},{\"member_id\":249087095,\"name\":\"Rachael - Workman\",\"permission\":\"coorganizer\"},{\"member_id\":260293121,\"name\":\"Margaret - Taub\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.63639831542969,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Mendoza\",\"country\":\"Argentina\",\"description\":\"

    -
    La comunidad R sufre de una representación insuficiente de los géneros - minoritarios (que incluyen pero no se limitan a mujeres cis / trans, hombres - trans, no binarios, genderqueer, agéneros) en cada rol y área de participación, - ya sea como líderes, desarrolladores de paquetes, disertantes, participantes - de la conferencia, educadores o usuarios (ver - las estadísticas recientes).

    Como una iniciativa de diversidad, - la misión de R-Ladies es lograr una representación proporcional, alentando, - inspirando y capacitando a personas de géneros que actualmente están subrepresentadas - en la comunidad de R.

    \\n

    El enfoque principal de R-Ladies es apoyar - a las personas de géneros minoritarios, entusiastas de R, para lograr su potencial - de programación, construyendo una red global colaborativa de líderes, mentores, - aprendices y desarrolladores de R para facilitar el progreso individual y - colectivo en todo el mundo.

    \\n

    Esta es una iniciativa social. Todos - los eventos serán gratuitos.

    \\n

    ¡Sumate a este Meetup para enterarte - de los próximos eventos! ¡Te esperamos!

    \\n

    Para más detalles sobre la - iniciativa R-Ladies Global visitá rladies.org (https://rladies.org/).

    \\n

    ¿Cómo contactarnos?

    \\n

    ¡Unite - a este grupo meetup para estar en contacto!

    \\n

    Nuestro correo - electrónico es mendoza[arroba]rladies[punto]org

    \\n

    También estamos en - Twitter, Facebook, - GitHub - y Soundcloud.

    \\n

    Política - y Código de Conducta de R-Ladies

    \\n

    En la comunidad R-Ladies los - puestos de responsabilidad como presentadoras y orientadoras son exclusivamente - para personas de género minoritario. Aún así la asistencia a las reuniones - está abierta a personas de todos los géneros.

    \\n

    Código de conducta - completo. (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. (https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct)

    \\n
    \",\"founded_date\":1519622789000,\"gender_female\":0.8258064389228821,\"gender_male\":0.12903225421905518,\"gender_other\":0.019354838877916336,\"gender_unknown\":0.025806451216340065,\"id\":27651345,\"last_event\":1607374800000,\"lat\":-32.88999938964844,\"lon\":-68.83000183105469,\"member_count\":290,\"name\":\"R-Ladies - Mendoza\",\"past_events\":12,\"past_rsvps\":272,\"pro_join_date\":1522103832835,\"repeat_rsvpers\":50,\"rsvps_per_event\":22.66666603088379,\"state\":\"\",\"topics\":[{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-mendoza\",\"status\":\"Active\",\"cursor\":\"[['1522103832835'],['27651345']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":249097742,\"name\":\"Ana - Laura Diedrichs \",\"permission\":\"coorganizer\"}]},{\"average_age\":33.33330154418945,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Santa - Barbara\",\"country\":\"USA\",\"description\":\"

    R-Ladies Santa Barbara - welcomes members of all R proficiency levels, whether you're a new or aspiring - R user, or an experienced R programmer interested in mentoring, networking - & expert upskilling. Our non-profit, civil society community is designed - to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills - & careers, the Free Software Movement, and contributing to the global - R community!

    \\n

    A local chapter of R-Ladies Global, R-Ladies - Santa Barbara exists to promote diversity in the R community, both locally - and worldwide. We are pro-actively inclusive of queer, trans, and all minority - identities, with additional sensitivity to intersectional identities. Our - priority is to provide a safe community space for anyone identifying as a - minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n

    We are part of Global R-Ladies group. - Here are some links! You can access our presentations, R scripts and more - on our Github account and follow us on twitter to stay up to date about R-Ladies - news!

    \\n

    Find links to past Meetup materials (slides, code, video recordings) - here:  https://github.com/rladies/meetup-presentations_santabarbara

    \\n

    R-Ladies - Global Website: https://www.rladies.org

    \\n

    R-Ladies - Global Github: https://github.com/rladies

    \\n

    Twitter: - @RLadiesGlobal (https://twitter.com/RLadiesGlobal) - & @RLadiesSB (https://twitter.com/rladiessb?lang=en)

    \\n

    -

    \\n

    PS Community Policies & Code of Conduct:

    \\n

    R-Ladies - Santa Barbara is dedicated to providing harassment-free event experiences - for everyone, regardless of gender, gender identity and expression, age, sexual - orientation, disability, physical appearance, body size, race, ethnicity, - or religion. We do not tolerate harassment of event participants in any form.

    \\n

    We - ask that all participants review and abide by the R-Ladies Code - of Conduct.

    \\n

    The leadership, mentoring & teaching roles - within this Community are held exclusively by minority genders (majority gender - speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we, therefore, reserve the right to guard this interest through - whatever measures the leadership team deems appropriate. Anyone involved with - R-Ladies Santa Barbara is expected to fully respect each other, the mandate - of this community, and the goodwill on which R-Ladies is founded, or face - expulsion/a penalty of any form, at the discretion of the leadership team.

    \\n

    Full - community guidelines are found here: https://guide.rladies.org/ 

    \\n

    PPS - Photos, Films and all other media/recordings:

    \\n

    Photos, - Films, and all other media/recordings: photographs and/or video/other media - will be taken at events held by this community. By taking part in an R-Ladies - Santa Barbara event you grant the community organizers full rights to use - the images resulting from the photography/video filming/media, and any reproductions - or adaptations of the images for publicity, fundraising or other purposes - to help achieve the community’s aims. This might include (but is not limited - to), the right to use them in their printed and online publicity, social media, - press releases and funding applications. If you do not wish to be recorded - in these media please inform a community organizer.

    \",\"founded_date\":1516990384000,\"gender_female\":0.8282208442687988,\"gender_male\":0.1349693238735199,\"gender_other\":0.0061349691823124886,\"gender_unknown\":0.030674846842885017,\"id\":27283931,\"last_event\":1608168600000,\"lat\":34.41999816894531,\"lon\":-119.70999908447266,\"member_count\":438,\"name\":\"R-Ladies - Santa Barbara\",\"past_events\":14,\"past_rsvps\":550,\"pro_join_date\":1522103829163,\"repeat_rsvpers\":101,\"rsvps_per_event\":39.28571319580078,\"state\":\"CA\",\"topics\":[{\"id\":10296,\"name\":\"Women - in Technology\",\"urlkey\":\"witi\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":102811,\"name\":\"Data Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-santa-barbara\",\"status\":\"Active\",\"cursor\":\"[['1522103829163'],['27283931']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":123303132,\"name\":\"Julie - Stewart Lowndes\",\"permission\":\"coorganizer\"},{\"member_id\":142370062,\"name\":\"Jamie - Montgomery\",\"permission\":\"coorganizer\"},{\"member_id\":246937342,\"name\":\"Allison - H\",\"permission\":\"coorganizer\"},{\"member_id\":251605291,\"name\":\"Juliette - Verstaen\",\"permission\":\"coorganizer\"},{\"member_id\":258511046,\"name\":\"An - Bui\",\"permission\":\"coorganizer\"},{\"member_id\":272340371,\"name\":\"Samantha - Csik\",\"permission\":\"coorganizer\"}]},{\"average_age\":31.605300903320312,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Lima\",\"country\":\"Peru\",\"description\":\"

    R-Ladies - Lima es parte de una organización mundial para promover la Diversidad de Género - en la comunidad R.

    \\n

    R-Ladies Lima le da la bienvenida a - los interesados en programar en R, no importa si eres experto o estas comenzando, - el objetivo de este grupo es promover R, intercambiar conocimiento y crear - una red de chicas.

    \\n

    Esta es una iniciativa social. Todos los eventos - serán gratuitos.

    \\n

    ¡Agrega este Meetup y enterarte de los próximos - eventos! ¡Te esperamos!

    \\n

    ¡Aquí hay algunos enlaces! Puede acceder - a nuestras presentaciones, scripts R y más (pronto) en nuestra cuenta de Github - y síganos en Twitter para mantenerse al día sobre las novedades de R-Ladies.

    \\n

    Facebook: - https://www.facebook.com/RLadiesLima

    \\n

    Twitter: - https://twitter.com/RLadiesLima

    \\n

    Mail: - lima@rladies.org

    \\n

     
    - Para más detalles sobre la iniciativa R-Ladies Global visitá rladies.org (https://rladies.org/).

    \\n

    Política - y Código de Conducta de R-Ladies:

    En la comunidad R-Ladies los puestos - de responsabilidad como presentadoras y orientadoras son exclusivamente para - personas que se identifican con el género femenino. Aún así la asistencia - a las reuniones está abierta a personas de todos los géneros.

    Siempre - se dará prioridad a la participación femenina ya que este grupo nació con - la intención de animar y apoyar a mujeres en los trabajos STEM (Science, Technology, - Engineering & Math) y en la comunidad de R. Las organizadoras de R-Ladies - tienen la responsabilidad y el derecho de tomar las acciones oportunas para - salvaguardar los intereses de la comunidad.

    Código de conducta completo. - (https://github.com/rladies/starter-kit/wiki/Code-of-Conduct#spanish) - También adherimos al código de conducta del R Consortium y del resto de la - Comunidad R. (https://wiki.r-consortium.org/view/R_Consortium_and_the_R_Community_Code_of_Conduct)

    \\n

    -

    \",\"founded_date\":1516856689000,\"gender_female\":0.6372548937797546,\"gender_male\":0.299719899892807,\"gender_other\":0.005602241028100252,\"gender_unknown\":0.05742296949028969,\"id\":27269070,\"last_event\":1608076800000,\"lat\":-12.069999694824219,\"lon\":-77.05000305175781,\"member_count\":1434,\"name\":\"R-Ladies - Lima\",\"past_events\":12,\"past_rsvps\":919,\"pro_join_date\":1522103824757,\"repeat_rsvpers\":127,\"rsvps_per_event\":76.58333587646484,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":18062,\"name\":\"Big Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine - Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":87186,\"name\":\"R - Language\",\"urlkey\":\"r-language\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":1335552,\"name\":\"R Programming - Language\",\"urlkey\":\"r-programming-language\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-lima\",\"status\":\"Active\",\"cursor\":\"[['1522103824757'],['27269070']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":206021331,\"name\":\"Vilma - Romero\",\"permission\":\"coorganizer\"},{\"member_id\":211297542,\"name\":\"Sindia - Sherly Tarazona Tocto\",\"permission\":\"coorganizer\"},{\"member_id\":214554629,\"name\":\"Ivonne - Rentería\",\"permission\":\"coorganizer\"},{\"member_id\":221352003,\"name\":\"Luisa - Quispe\",\"permission\":\"coorganizer\"}]},{\"average_age\":35.076900482177734,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Atlanta\",\"country\":\"USA\",\"description\":\"

    R-Ladies - Atlanta welcomes members of all R proficiency levels, whether you are a new - or aspiring R user, or an experienced R programmer interested in mentoring, - networking & expert upskilling. Our non-profit, civil society community is - designed to develop our members' R skills & knowledge through social, collaborative - learning & sharing. Supporting minority identity access to STEM skills & careers, - the Free Software Movement, and contributing to the global R community!
    A - local chapter of R-Ladies Global, R-Ladies Atlanta exists to promote gender - diversity in the R community worldwide. We are pro-actively inclusive of queer, - trans, and all minority identities, with additional sensitivity to intersectional - identities. Our priority is to provide a safe community space for anyone identifying - as a minority gender who is interested in and/or working with R. As a founding - principle, there is no cost or charge to participate in any of our R-Ladies - communities around the world.

    \\n


    We are part of Global R-Ladies - group. Here are some links! You can access our presentations, R scripts and - more (soon) on our Github account and follow us on twitter to stay up to date - about R-Ladies news! 

    \\n


    \\n

    Website: https://www.rladies.org

    \\n

    Github: https://github.com/rladies

    \\n

    E-mail: info - [at] rladies [dot] org

    \\n


    \\n

    PS Community Policies & - Code of Conduct: 

    \\n

    The leadership, mentoring & teaching - roles within this Community are held exclusively by minority genders (majority - gender speakers may be allowed/invited as one-off guests in exceptional circumstances - at the leadership team's discretion). Due to unexpected demand, we have opened - learning participation to all genders, dependent on initial and on-going vetting - by the leadership team. However, the stated priority of the R-Ladies communities - is the development & support specifically of those identifying as a minority - gender, and we therefore reserve the right to guard this interest through - whatever measures the leadership team deem appropriate. Anyone involved with - R-Ladies Atlanta is expected to fully respect each other, the mandate of this - community, and the goodwill on which R-Ladies is founded, or face expulsion/a - penalty of any form, at the discretion of the leadership team. Full community - guidelines are found here: https://github.com/rladies/starter-kit/wiki

    \\n

    -

    \\n

    PPS Photos, Films and all other media/recordings: -

    \\n

    Photos, Films and all other media/recordings: photographs - and/or video/other media will be taken at events held by this community. By - taking part in an R-Ladies Atlanta event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

    \",\"founded_date\":1513271927000,\"gender_female\":0.751724123954773,\"gender_male\":0.1310344785451889,\"gender_other\":0.006896551698446274,\"gender_unknown\":0.11034482717514038,\"id\":26871250,\"last_event\":1573848000000,\"lat\":33.86000061035156,\"lon\":-84.4000015258789,\"member_count\":270,\"name\":\"R-Ladies - Atlanta\",\"past_events\":6,\"past_rsvps\":119,\"pro_join_date\":1522103818809,\"repeat_rsvpers\":24,\"rsvps_per_event\":19.83333396911621,\"state\":\"GA\",\"topics\":[{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-atlanta\",\"status\":\"Active\",\"cursor\":\"[['1522103818809'],['26871250']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":201556773,\"name\":\"Melinda - Higgins\",\"permission\":\"coorganizer\"},{\"member_id\":243907543,\"name\":\"Emilie - Seena\",\"permission\":\"coorganizer\"}]},{\"average_age\":34.95069885253906,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Paris\",\"country\":\"France\",\"description\":\"

    We - are R-Ladies Paris, a network of R practitioners in Paris. We are a local - chapter of a global open source community promoting gender inclusivity among - R practitioners and learners, R-Ladies - Global.

    \\n

    Our goals are to provide a supportive and encouraging - network for R users who identify as female and to promote learning and collaboration - in the R community. We are emphatically LGBT friendly and open to anyone interested - in programming in R, from experts to novices. Join us!

    \\n

    Nous sommes - R-Ladies Paris, un réseau d'utilisatrices de R à Paris. Ce groupe est une - section locale de R-Ladies Global, une communauté mondiale soutenant la non - discrimination liée au genre parmi les utilisatrices de R. 

    \\n

    Notre - objectif est de pourvoir la communauté R d'un réseau de soutien et de support - aux utilisatrices qui s'identifient de genre féminin et d'encourager l'apprentissage - et la collaboration parmi ses membres. Nous sommes par nature LGBT friendly - et ouverts à toute personne intéressée par la programmation en R. Que vous - soyez experte ou novice : rejoignez-nous ! 

    \\n

    GitHubhttps://github.com/rladies-paris

    \\n

    Twitterhttps://twitter.com/rladiesparis?lang=en

    \\n

    Facebookhttps://www.facebook.com/groups/1771828013098557

    \\n

    -

    \\n

    Community Policies & Code of Conduct: The priority of - this meetup is the development and support of its female members acting in - whichever roles, and we therefore reserve the right to guard this interest - through whatever measures we deem appropriate. 

    \\n

    All members and event - attendees are expected to fully respect each other and the mandate of this - Meetup, or face expulsion of any form, whether from events, Meetup membership, - or any other community participation. 

    \\n

    This community is a social - initiative, hence will never involve charges or fees to participate.

    \\n

    Politique - communautaire et code de conduite : L’ambition affichée par ce - meetup est le soutien de ses membres féminins quels que soient leurs rôles - dans la communauté. Par voie de conséquence, nous nous réservons le droit - de prendre toutes les mesures que nous jugerons nécessaire à servir cet intérêt.

    \\n

    Tous - les membres et participants sont tenus de respecter le code de conduite sous - peine de se voir expulsé de la communauté et des événements qu’elle organise.

    \\n

    Parce - que la communauté est une initiative à caractère social, aucune participation - financière ne sera jamais demandée pour participer aux événements.

    \\n
    \\n
    \\n
    \",\"founded_date\":1474299591000,\"gender_female\":0.6891891956329346,\"gender_male\":0.23783783614635468,\"gender_other\":0.010810811072587967,\"gender_unknown\":0.062162160873413086,\"id\":20443056,\"last_event\":1560529800000,\"lat\":48.86000061035156,\"lon\":2.3399999141693115,\"member_count\":585,\"name\":\"R-Ladies - Paris\",\"past_events\":15,\"past_rsvps\":479,\"pro_join_date\":1522103814123,\"repeat_rsvpers\":100,\"rsvps_per_event\":31.933332443237305,\"state\":\"\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":37381,\"name\":\"Data - Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":98380,\"name\":\"R - Project for Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":890232,\"name\":\"Data - Analysis\",\"urlkey\":\"data-analysis\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-paris\",\"status\":\"Active\",\"cursor\":\"[['1522103814123'],['20443056']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":8368499,\"name\":\"Sarah\",\"permission\":\"coorganizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":187467686,\"name\":\"Diane - BELDAME\",\"permission\":\"coorganizer\"},{\"member_id\":212932500,\"name\":\"Stéphanie - Terrasse\",\"permission\":\"coorganizer\"},{\"member_id\":213330067,\"name\":\"Christina - Bergmann\",\"permission\":\"coorganizer\"}]},{\"average_age\":32.964900970458984,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"Los - Angeles\",\"country\":\"USA\",\"description\":\"

    R-LADIES IS A WORLDWIDE - ORGANIZATION WHOSE MISSION IS TO PROMOTE GENDER DIVERSITY IN THE R COMMUNITY.

    - \\n

    The R community suffers from an underrepresentation of minority genders - (including but not limited to cis/trans women, trans men, non-binary, genderqueer, - agender) in every role and area of participation, whether as leaders, package - developers, conference speakers, conference participants, educators, or users.

    - \\n

    R-Ladies LA is a network of R practitioners in Los Angeles. Our goals - are to provide a supportive and encouraging network for R users who identify - as a gender minority and to promote learning and collaboration in the R community. - We are emphatically LGBTQ friendly and open to anyone interested in programming - in R, from experts to novices. Join us!

    \\n

    Follow us on Twitter @RLadiesLA - and @RLadiesGlobal

    \\n

    Email me with any questions or ideas! katie@rladies.org

    - \\n


    \\n

    Community Policies & Code of Conduct: the leadership, - mentoring & teaching roles within this Community are held exclusively by people - who identify as a gender minority (cis male speakers may be allowed/invited - as one-off guests in exceptional circumstances at the leadership team's discretion). - Due to unexpected demand, we have opened learning participation to all genders, - dependent on initial and on-going vetting by the leadership team. However, - the stated priority of the R-Ladies communities is the development & support - specifically of those identifying with a gender minority, and we therefore - reserve the right to guard this interest through whatever measures the leadership - team deem appropriate. Anyone involved with R-Ladies is expected to fully - respect each other, the mandate of this community, and the goodwill on which - R-Ladies is founded, or face expulsion/a penalty of any form, at the discretion - of the leadership team.

    \\n

    Photos, Films and all other media/recordings: - photographs and/or video/other media will be taken at events held by this - community. By taking part in an R-Ladies event you grant the community organizers - full rights to use the images resulting from the photography/video filming/media, - and any reproductions or adaptations of the images for publicity, fundraising - or other purposes to help achieve the community’s aims. This might include - (but is not limited to), the right to use them in their printed and online - publicity, social media, press releases and funding applications. If you do - not wish to be recorded in these media please inform a community organizer.

    - \\n


    \",\"founded_date\":1472857612000,\"gender_female\":0.7232876420021057,\"gender_male\":0.18356163799762726,\"gender_other\":0.008219177834689617,\"gender_unknown\":0.08493150770664215,\"id\":20382018,\"last_event\":1596038400000,\"lat\":34.06999969482422,\"lon\":-118.44999694824219,\"member_count\":619,\"name\":\"R-Ladies - Los Angeles\",\"past_events\":32,\"past_rsvps\":606,\"pro_join_date\":1522103809383,\"repeat_rsvpers\":114,\"rsvps_per_event\":18.9375,\"state\":\"CA\",\"topics\":[{\"id\":563,\"name\":\"Open - Source\",\"urlkey\":\"opensource\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":17628,\"name\":\"Programming - Languages\",\"urlkey\":\"programming-languages\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":30928,\"name\":\"Data Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":45181,\"name\":\"Women - Programmers\",\"urlkey\":\"women-programmers\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":115768,\"name\":\"Programming - in R\",\"urlkey\":\"programming-in-r\"},{\"id\":115913,\"name\":\"Applied - Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":133584,\"name\":\"statistical - programming\",\"urlkey\":\"statistical-programming\"},{\"id\":383411,\"name\":\"Big - Data Analytics\",\"urlkey\":\"big-data-analytics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-la\",\"status\":\"Active\",\"cursor\":\"[['1522103809383'],['20382018']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":183053662,\"name\":\"Katie - Leap\",\"permission\":\"coorganizer\"},{\"member_id\":190047859,\"name\":\"Amanda - Tilot\",\"permission\":\"coorganizer\"},{\"member_id\":212174068,\"name\":\"Katie - Scranton\",\"permission\":\"coorganizer\"}]},{\"average_age\":33.993499755859375,\"categories\":[{\"id\":34,\"name\":\"tech\",\"shortname\":\"tech\"}],\"city\":\"San - Francisco\",\"country\":\"USA\",\"description\":\"

    R-Ladies is a world-wide - organization to promote gender diversity in the R community.

    \\n

    Anyone - with an interest in R is encouraged to participate. - It doesn't matter if you never used R or if you are an R expert. The goal - is to promote R, exchange knowledge and foster a - supportive community for self-identifying women, genderqueer, non-binary folks.

    \\n

    Come - and join us!

    \\n

    Github: https://github.com/R-ladies

    \\n

    Twitter: - https://twitter.com/RladiesSF

    \\n

    Website: - http://www.r-ladies.org

    \\n

    We - are emphatically queer and trans friendly.

    \\n

    Code of Conduct: - https://github.com/rladies/starter-kit/wiki/Code-of-Conduct

    \",\"founded_date\":1349108901000,\"gender_female\":0.8259187340736389,\"gender_male\":0.08994197100400925,\"gender_other\":0.010638297535479069,\"gender_unknown\":0.07350096851587296,\"id\":5190472,\"last_event\":1599777000000,\"lat\":37.790000915527344,\"lon\":-122.4000015258789,\"member_count\":1639,\"name\":\"R-Ladies - San Francisco\",\"past_events\":60,\"past_rsvps\":2021,\"pro_join_date\":1522103803543,\"repeat_rsvpers\":365,\"rsvps_per_event\":33.68333435058594,\"state\":\"CA\",\"topics\":[{\"id\":9696,\"name\":\"New - Technology\",\"urlkey\":\"newtech\"},{\"id\":10296,\"name\":\"Women in Technology\",\"urlkey\":\"witi\"},{\"id\":15280,\"name\":\"Statistical - Computing\",\"urlkey\":\"statistical-computing\"},{\"id\":18062,\"name\":\"Big - Data\",\"urlkey\":\"big-data\"},{\"id\":29971,\"name\":\"Machine Learning\",\"urlkey\":\"machine-learning\"},{\"id\":30928,\"name\":\"Data - Analytics\",\"urlkey\":\"data-analytics\"},{\"id\":37381,\"name\":\"Data Visualization\",\"urlkey\":\"data-visualization\"},{\"id\":38458,\"name\":\"Predictive - Analytics\",\"urlkey\":\"predictive-analytics\"},{\"id\":48471,\"name\":\"Computer - programming\",\"urlkey\":\"computer-programming\"},{\"id\":55324,\"name\":\"Data - Mining\",\"urlkey\":\"data-mining\"},{\"id\":98380,\"name\":\"R Project for - Statistical Computing\",\"urlkey\":\"r-project-for-statistical-computing\"},{\"id\":102811,\"name\":\"Data - Science\",\"urlkey\":\"data-science\"},{\"id\":115913,\"name\":\"Applied Statistics\",\"urlkey\":\"applied-statistics\"},{\"id\":1513883,\"name\":\"R-Ladies\",\"urlkey\":\"r-ladies\"}],\"upcoming_events\":0,\"urlname\":\"rladies-san-francisco\",\"status\":\"Active\",\"cursor\":\"[['1522103803543'],['5190472']]\",\"organizers\":[{\"member_id\":251470805,\"name\":\"R-Ladies - Global\",\"permission\":\"organizer\"},{\"member_id\":14534094,\"name\":\"Gabriela - de Queiroz\",\"permission\":\"coorganizer\"},{\"member_id\":187040249,\"name\":\"Brett\",\"permission\":\"event_organizer\"},{\"member_id\":198285941,\"name\":\"Ciera - Martinez\",\"permission\":\"event_organizer\"},{\"member_id\":259526018,\"name\":\"saishruthi - swaminathan\",\"permission\":\"event_organizer\"}]}]" - recorded_at: 2021-01-12 09:37:59 GMT - recorded_with: vcr/0.6.0, webmockr/0.7.4 diff --git a/tests/fixtures/quick_fetch.yml b/tests/fixtures/quick_fetch.yml index 64bfb0f2..6ab04976 100644 --- a/tests/fixtures/quick_fetch.yml +++ b/tests/fixtures/quick_fetch.yml @@ -7,7 +7,6 @@ http_interactions: string: '' headers: Accept: application/json, text/xml, application/xml, */* - Authorization: not my bearer token response: status: status_code: 200 @@ -16,33 +15,23 @@ http_interactions: message: 'Success: (200) OK' headers: content-type: application/json; charset=utf-8 - server: Apache/2.4.39 (Unix) OpenSSL/1.1.1c - x-meetup-server: ip-10-192-12-182 - x-meetup-request-id: bccc2b5f-a143-4bec-b47b-d0dc1b0b9580 x-oauth-scopes: basic x-accepted-oauth-scopes: basic x-ratelimit-limit: '30' x-ratelimit-remaining: '29' x-ratelimit-reset: '10' x-total-count: '18' - etag: '"d9e5f203dfe7accde4c335afc8476eb8-gzip"' + etag: '"d5374223735a829c9cce7c1acf0fda4a-gzip"' content-encoding: gzip accept-ranges: bytes - date: Tue, 12 Jan 2021 09:32:47 GMT - via: 1.1 varnish - x-served-by: cache-cdg20769-CDG - x-cache: MISS - x-cache-hits: '0' - x-timer: S1610443967.785031,VS0,VE465 + date: Thu, 29 Sep 2022 18:31:53 GMT vary: Accept-Encoding,User-Agent,Accept-Language - content-length: '7975' + content-length: '7156' body: encoding: UTF-8 file: no string: '[{"created":1476892337000,"duration":7200000,"id":"234968855","name":"R-Ladies - Nashville Kickoff!","date_in_series_pattern":false,"status":"past","time":1478561400000,"local_date":"2016-11-07","local_time":"17:30","updated":1478610982000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":27,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + Nashville Kickoff!","date_in_series_pattern":false,"status":"past","time":1478561400000,"local_date":"2016-11-07","local_time":"17:30","updated":1478610982000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":27,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/234968855/","description":"

    Please join us for the R-Ladies Nashville Kickoff!

    We''ll provide some light @@ -58,11 +47,8 @@ http_interactions: dinner/socializing
    6:00-6:30: Intro to R-Ladies + short demo of R Notebooks
    6:30-end: discussion and planning for R-Ladies Nashville future

    We are so looking forward to seeing you all! If you have any questions, feel free to contact - us via Meetup or nashville@rladies.org.

    ","how_to_find_us":"2525 West - End Avenue, Suite 1100, Large Conference Room","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1479409918000,"duration":3600000,"id":"235652800","name":"December - Meetup: data.table package","date_in_series_pattern":false,"status":"past","time":1481048100000,"local_date":"2016-12-06","local_time":"12:15","updated":1481053951000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":17,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + us via Meetup or [masked].

    ","visibility":"public","member_pay_fee":false},{"created":1479409918000,"duration":3600000,"id":"235652800","name":"December + Meetup: data.table package","date_in_series_pattern":false,"status":"past","time":1481048100000,"local_date":"2016-12-06","local_time":"12:15","updated":1481053951000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":17,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/235652800/","description":"

    Bring your lunch and join us for our first daytime meetup! JoAnn Rudd Alvarez will @@ -73,23 +59,16 @@ http_interactions: is an easy to use R package for querying and manipulating data. Dataset updates run much faster than with the base R paradigm, and specifying complicated calculations is more intuitive. This talk will show some of the package''s - features as well as point out a couple of gotchas.

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1479832078000,"id":"235757913","name":"January - Meetup: R Resources & Help","date_in_series_pattern":false,"status":"past","time":1484092800000,"local_date":"2017-01-10","local_time":"18:00","updated":1484104760000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":14,"venue":{"id":23989995,"name":"Emma - Bistro","lat":36.15641403198242,"lon":-86.76876068115234,"repinned":false,"address_1":"11 - Lea Ave","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + features as well as point out a couple of gotchas.

    ","visibility":"public","member_pay_fee":false},{"created":1479832078000,"id":"235757913","name":"January + Meetup: R Resources & Help","date_in_series_pattern":false,"status":"past","time":1484092800000,"local_date":"2017-01-10","local_time":"18:00","updated":1484104760000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":14,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/235757913/","description":"

    Have you had so-so luck Googling your R error messages? Want to learn Shiny but don''t know where to start? Feel like you''re behind the curve but don''t know where to keep up with R news? This is the meetup for you! We''ll talk about good sources for R news and updates, courses and tutorials, and tips - on searching for topics and asking questions.

    ","how_to_find_us":"Emma - is in the Rolling Mill Hill area south of downtown (near Pinewood Social). - If you Google Map \"Emma Bistro\" it''ll point you to the right building. - Free parking lot behind the building (hallelujah)!","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1484864942000,"duration":3600000,"id":"237055230","name":"February - Meetup: RStudio Conference Highlights!","date_in_series_pattern":false,"status":"past","time":1486750500000,"local_date":"2017-02-10","local_time":"12:15","updated":1486756661000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":9,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + on searching for topics and asking questions.

    ","visibility":"public","member_pay_fee":false},{"created":1484864942000,"duration":3600000,"id":"237055230","name":"February + Meetup: RStudio Conference Highlights!","date_in_series_pattern":false,"status":"past","time":1486750500000,"local_date":"2017-02-10","local_time":"12:15","updated":1486756661000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":9,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/237055230/","description":"

    The RStudio Conference sounds @@ -106,10 +85,8 @@ http_interactions: sure to tell us about it!

    Parking tip: If you pick up lunch or a beverage from the shops downstairs, most will validate parking in the building''s garage. There''s Moe''s, Bread & Co, PF Chang''s and Starbucks to choose from.

    - ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1484865391000,"id":"237055481","name":"March - Meetup: Intro to Shiny","date_in_series_pattern":false,"status":"past","time":1490137200000,"local_date":"2017-03-21","local_time":"18:00","updated":1490149991000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":16,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + ","visibility":"public","member_pay_fee":false},{"created":1484865391000,"id":"237055481","name":"March + Meetup: Intro to Shiny","date_in_series_pattern":false,"status":"past","time":1490137200000,"local_date":"2017-03-21","local_time":"18:00","updated":1490149991000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":16,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/237055481/","description":"

    If you\u2019ve ever wanted to make a web application for data visualization, @@ -122,10 +99,8 @@ http_interactions: The conference room is on the 11th floor; elevators at 2525 are keycard access only after 6pm. Please let us know if you''ll be arriving late, and we can give you contact information so someone can come downstairs to meet you.

    - ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1494606103000,"duration":4500000,"id":"239935025","name":"An - R + Github Journey","date_in_series_pattern":false,"status":"past","time":1496163600000,"local_date":"2017-05-30","local_time":"12:00","updated":1496170182000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":13,"venue":{"id":25237648,"name":"The - Wond''ry","lat":36.14297103881836,"lon":-86.80572509765625,"repinned":false,"address_1":"2414 - Highland Avenue","city":"Nashville","country":"US","localized_country_name":"USA"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + ","visibility":"public","member_pay_fee":false},{"created":1494606103000,"duration":4500000,"id":"239935025","name":"An + R + Github Journey","date_in_series_pattern":false,"status":"past","time":1496163600000,"local_date":"2017-05-30","local_time":"12:00","updated":1496170182000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":13,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/239935025/","description":"

    Join us for a GitHub journey, guided by Lucy D''Agostino McGowan! We\u2019ll answer @@ -139,10 +114,8 @@ http_interactions: part of Vanderbilt''s new engineering facility! Parking is available in the 25th Avenue garage directly across Highland Avenue; see the Wond''ry page for more information. The building is also a <10-minute walk from both - the 2525 West End and VUMC areas.

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1501270181000,"id":"242098493","name":"Working - with Pipes %>% + GIS Tutorial","date_in_series_pattern":false,"status":"past","time":1505257200000,"local_date":"2017-09-12","local_time":"18:00","updated":1505306112000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":21,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + the 2525 West End and VUMC areas.

    ","visibility":"public","member_pay_fee":false},{"created":1501270181000,"id":"242098493","name":"Working + with Pipes %>% + GIS Tutorial","date_in_series_pattern":false,"status":"past","time":1505257200000,"local_date":"2017-09-12","local_time":"18:00","updated":1505306112000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":21,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/242098493/","description":"

    We''re kicking off our fall sessions with not one, but two topics! Mary van Valkenburg will @@ -155,12 +128,8 @@ http_interactions: only after 6pm. If you''ll be later than that, please send a message to Jennifer or Lucy so we can make sure you get in!

    Parking: Paid parking is available in the garage behind the building (2525 WEA garage). Some of - the businesses on the bottom floor will validate for customers.

    ","how_to_find_us":"We''re - on the 11th floor. Elevator is keycard only after 6pm, so arrive early or - let Jennifer or Lucy know you''ll be late!","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1505313721000,"id":"243331077","name":"Introduction - to purrr","date_in_series_pattern":false,"status":"past","time":1510617600000,"local_date":"2017-11-13","local_time":"18:00","updated":1510632337000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":29,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + the businesses on the bottom floor will validate for customers.

    ","visibility":"public","member_pay_fee":false},{"created":1505313721000,"id":"243331077","name":"Introduction + to purrr","date_in_series_pattern":false,"status":"past","time":1510617600000,"local_date":"2017-11-13","local_time":"18:00","updated":1510632337000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":29,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/243331077/","description":"

    When you think of purrr, do you think only of kittens? Not for long! Come hear @@ -170,24 +139,15 @@ http_interactions: along the way.

    SPEAKING OF FUN: IT''S OUR BIRTHDAY! In honor of our one-year anniversary, we''ll have light dinner and beverages, provided by our friends at the R Consortium, and a party vibe! RSVP by Friday to be counted - for dinner.

    ","how_to_find_us":"Building is across from Centennial Park. - Paid parking available in the garage behind the building (some businesses - downstairs may validate for customers).","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1505313771000,"duration":4500000,"id":"243331084","name":"Play - in the snow, then clean up your mess!","rsvp_limit":20,"date_in_series_pattern":false,"status":"past","time":1512151200000,"local_date":"2017-12-01","local_time":"12:00","updated":1512160552000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":20,"venue":{"id":25237648,"name":"The - Wond''ry","lat":36.14297103881836,"lon":-86.80572509765625,"repinned":false,"address_1":"2414 - Highland Avenue","city":"Nashville","country":"US","localized_country_name":"USA"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + for dinner.

    ","visibility":"public","member_pay_fee":false},{"created":1505313771000,"duration":4500000,"id":"243331084","name":"Play + in the snow, then clean up your mess!","rsvp_limit":20,"date_in_series_pattern":false,"status":"past","time":1512151200000,"local_date":"2017-12-01","local_time":"12:00","updated":1512160552000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":20,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/243331084/","description":"

    Join us at the Wond''ry for a lunchtime meetup! Laurie Samuels will be demo-ing some packages for data cleaning in R; Svetlana Eden will be demo-ing a package that generates realistic snowflakes for some seasonal flair. See you there!

    - ","how_to_find_us":"The Wond''ry is in the new engineering building on Highland - Avenue. When you enter the building, go up the main spiral staircase; we''ll - be in the conference room at the back of the glassed-in space. There''s a - parking garage across the street.","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1520295639000,"duration":7200000,"id":"248452181","name":"Introduction - to Data Cleaning with dataMaid","date_in_series_pattern":false,"status":"past","time":1521500400000,"local_date":"2018-03-19","local_time":"18:00","updated":1521513871000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":21,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + ","visibility":"public","member_pay_fee":false},{"created":1520295639000,"duration":7200000,"id":"248452181","name":"Introduction + to Data Cleaning with dataMaid","date_in_series_pattern":false,"status":"past","time":1521500400000,"local_date":"2018-03-19","local_time":"18:00","updated":1521513871000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":21,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/248452181/","description":"

    Molly Olson will be leading us on a data cleaning journey! Data cleaning can be @@ -202,10 +162,8 @@ http_interactions: just as structured and well-documented as the rest of the data analysis.\u201d In this tutorial, Molly will provide an overview of the dataMaid package and demonstrate how to use the dataMaid package to improve efficiency and accuracy - in the statistician\u2019s every day data cleaning.

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1524496938000,"duration":7200000,"id":"250068352","name":"Dynamically - Generated Tables in Shiny with Judy Lewis","date_in_series_pattern":false,"status":"past","time":1526338800000,"local_date":"2018-05-14","local_time":"18:00","updated":1526357597000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":16,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + in the statistician\u2019s every day data cleaning.

    ","visibility":"public","member_pay_fee":false},{"created":1524496938000,"duration":7200000,"id":"250068352","name":"Dynamically + Generated Tables in Shiny with Judy Lewis","date_in_series_pattern":false,"status":"past","time":1526338800000,"local_date":"2018-05-14","local_time":"18:00","updated":1526357597000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":16,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/250068352/","description":"

    Interested in more sophisticated options with data display in Shiny?
    Do you sometimes @@ -222,21 +180,14 @@ http_interactions: combined that idea with code for generating dynamic, tabbed tables (developed with Jeremy Stephens at VUMC Biostats) to create the desired function in Shiny. Judy will share code and sample data for attendees to try it out on their - own.

    ","how_to_find_us":"Elevators to the 11th floor require keycard access - after 6pm. If you''ll be late, let us know and we''ll have someone come let - you up! Paid parking is available in the garage behind the building; some - businesses downstairs will validate for customers.","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1528538488000,"duration":6300000,"id":"251583548","name":"Networking - lunch with RStudio!","rsvp_limit":25,"date_in_series_pattern":false,"status":"past","time":1528821900000,"local_date":"2018-06-12","local_time":"11:45","rsvp_close_offset":"PT24H","updated":1528831470000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":15,"venue":{"id":25855250,"name":"Parthenon - Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":false,"address_1":"2525 - West End Avenue","address_2":"Suite 1400","city":"Nashville","country":"us","localized_country_name":"USA","zip":"37203","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + own.

    ","visibility":"public","member_pay_fee":false},{"created":1528538488000,"duration":6300000,"id":"251583548","name":"Networking + lunch with RStudio!","rsvp_limit":25,"date_in_series_pattern":false,"status":"past","time":1528821900000,"local_date":"2018-06-12","local_time":"11:45","rsvp_close_offset":"PT24H","updated":1528831470000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":15,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/251583548/","description":"

    RStudio is in town this week, and we\u2019re taking the opportunity to get to know their R-Ladies! If you RSVPed before 12:30 Monday, we will have Taziki''s - for you. Later RSVPs are welcome to bring your own lunch!

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1537126663000,"duration":7200000,"id":"254740614","name":"Benchmarking - using Tidyverse Data Management & Medicare Public Use Files","date_in_series_pattern":false,"status":"past","time":1540508400000,"local_date":"2018-10-25","local_time":"18:00","updated":1540518731000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":15,"venue":{"id":24854918,"name":"VUMC - Biostatistics Conference Room","lat":36.14601135253906,"lon":-86.80931854248047,"repinned":true,"address_1":"2525 - West End Avenue, Suite 1100","city":"Nashville","country":"us","localized_country_name":"USA","zip":"","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + for you. Later RSVPs are welcome to bring your own lunch!

    ","visibility":"public","member_pay_fee":false},{"created":1537126663000,"duration":7200000,"id":"254740614","name":"Benchmarking + using Tidyverse Data Management & Medicare Public Use Files","date_in_series_pattern":false,"status":"past","time":1540508400000,"local_date":"2018-10-25","local_time":"18:00","updated":1540518731000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":15,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/254740614/","description":"

    By Rachel Hayes

    We will:
    * Download Medicare public use files for @@ -246,7 +197,7 @@ http_interactions: to do it.
    * How to reshape data using gather and spread.
    * How we calculate marginal effect scores to communicate results to end users with no research or statistical background. It\u2019s not ideal, but without it, - they lack confidence in the results.

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1543261134000,"duration":7200000,"id":"256725942","name":"Data + they lack confidence in the results.

    ","visibility":"public","member_pay_fee":false},{"created":1543261134000,"duration":7200000,"id":"256725942","name":"Data Science Workflows in R","date_in_series_pattern":false,"status":"past","time":1544487300000,"local_date":"2018-12-10","local_time":"18:15","updated":1544500372000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":28,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/256725942/","description":"

    Interested @@ -255,15 +206,13 @@ http_interactions: and data science workflow, including tidyverse tools, connecting to Google and Amazon databases, and using RStudio professional tools for analysis storage and dissemination.

    Many thanks to Axial Healthcare for providing space - for this event! Street address: 209 10th Ave S, Nashville, TN 37203. The meetup - is in suite 422.

    Parking options:
    1) Lot across the street; validation - available
    2) Metered street parking on 10th Ave S (immediately in front - of the building) should be free beginning at 6 pm

    Enter using the main - entrance next to M Restaurant, then take the elevator or stairs up to the - 4th floor.

    ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1548959846000,"duration":7200000,"id":"258565812","name":"Getting - Started with Shiny!","date_in_series_pattern":false,"status":"past","time":1549929600000,"local_date":"2019-02-11","local_time":"18:00","updated":1549940873000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":22,"venue":{"id":26061952,"name":"Greater - Nashville Technology Council","lat":36.13279724121094,"lon":-86.7565689086914,"repinned":false,"address_1":"500 - Interstate Blvd S #200","city":"Nashville","country":"us","localized_country_name":"USA","zip":"37210","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + for this event! Street address:[masked]th Ave S, Nashville, TN 37203. The + meetup is in suite 422.

    Parking options:
    1) Lot across the street; + validation available
    2) Metered street parking on 10th Ave S (immediately + in front of the building) should be free beginning at 6 pm

    Enter using + the main entrance next to M Restaurant, then take the elevator or stairs up + to the 4th floor.

    ","visibility":"public","member_pay_fee":false},{"created":1548959846000,"duration":7200000,"id":"258565812","name":"Getting + Started with Shiny!","date_in_series_pattern":false,"status":"past","time":1549929600000,"local_date":"2019-02-11","local_time":"18:00","updated":1549940873000,"utc_offset":-21600000,"waitlist_count":0,"yes_rsvp_count":22,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/258565812/","description":"

    Have you always wanted to build a Shiny App but didn\u2019t know how to get started?

    @@ -272,22 +221,16 @@ http_interactions: Binu Thomas, Davis Thrailkill, Glenna Dunn, Hari Tanjore, and Rachael Abram, will show the apps they created and lead a conversation about getting started with Shiny. And they''re sure to have tips and lessons learned while working - on their projects to share!

    ","how_to_find_us":"Nashville Technology Council - - Dell Learning Center\n500 Interstate Blvd South\n(first room on the right - as you enter the front of the building)","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1558720170000,"duration":7200000,"id":"261740631","name":"Using - R in Supply Chain Analytics","date_in_series_pattern":false,"status":"past","time":1559773800000,"local_date":"2019-06-05","local_time":"17:30","updated":1559785935000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":14,"venue":{"id":26061952,"name":"Greater - Nashville Technology Council","lat":36.13279724121094,"lon":-86.7565689086914,"repinned":true,"address_1":"500 - Interstate Blvd S #200","city":"Nashville","country":"us","localized_country_name":"USA","zip":"37210","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + on their projects to share!

    ","visibility":"public","member_pay_fee":false},{"created":1558720170000,"duration":7200000,"id":"261740631","name":"Using + R in Supply Chain Analytics","date_in_series_pattern":false,"status":"past","time":1559773800000,"local_date":"2019-06-05","local_time":"17:30","updated":1559785935000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":14,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/261740631/","description":"

    Allison Baker, Director of Supply Chain Analytics at HealthTrust will be talking about how she has used R over the last 10 years, some lessons learned along the way, how her team uses R today, and why R Programming is her \"jam\".

    5:30 pm - networking
    6:00 pm - program

    Thanks to the NTC for - providing space!

    ","how_to_find_us":"Cyber Range Event Center ","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1564436671000,"duration":7200000,"id":"263567051","name":"Package - Development in R","date_in_series_pattern":false,"status":"past","time":1568673000000,"local_date":"2019-09-16","local_time":"17:30","updated":1568686712000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":26,"venue":{"id":26061952,"name":"Greater - Nashville Technology Council","lat":36.13279724121094,"lon":-86.7565689086914,"repinned":true,"address_1":"500 - Interstate Blvd S #200","city":"Nashville","country":"us","localized_country_name":"USA","zip":"37210","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + providing space!

    ","visibility":"public","member_pay_fee":false},{"created":1564436671000,"duration":7200000,"id":"263567051","name":"Package + Development in R","date_in_series_pattern":false,"status":"past","time":1568673000000,"local_date":"2019-09-16","local_time":"17:30","updated":1568686712000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":26,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/263567051/","description":"

    Curious about package development, but not sure where to start? This talk is for you! @@ -299,15 +242,12 @@ http_interactions: and a data analyst for Virtual Inc. and Jennifer Morse, a biostatistician at Vanderbilt University Medical Center.

    Social time starts at 5:30 pm and the talk begins at 6:00 pm.

    Thanks to the Nashville Technology - Council for meeting space!

    ","how_to_find_us":"PWC Learning Lab","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false},{"created":1582297065000,"duration":5400000,"id":"268882903","name":"The - Future of R-Ladies Nashville","date_in_series_pattern":false,"status":"past","time":1583794800000,"local_date":"2020-03-09","local_time":"18:00","updated":1583803332000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":5,"venue":{"id":26061952,"name":"Greater - Nashville Technology Council","lat":36.13279724121094,"lon":-86.7565689086914,"repinned":false,"address_1":"500 - Interstate Blvd S #200","city":"Nashville","country":"us","localized_country_name":"USA","zip":"37210","state":"TN"},"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies + Council for meeting space!

    ","visibility":"public","member_pay_fee":false},{"created":1582297065000,"duration":5400000,"id":"268882903","name":"The + Future of R-Ladies Nashville","date_in_series_pattern":false,"status":"past","time":1583794800000,"local_date":"2020-03-09","local_time":"18:00","updated":1583803332000,"utc_offset":-18000000,"waitlist_count":0,"yes_rsvp_count":5,"is_online_event":false,"group":{"created":1475090435000,"name":"R-Ladies Nashville","id":20493986,"join_mode":"open","lat":36.16999816894531,"lon":-86.77999877929688,"urlname":"rladies-nashville","who":"Members","localized_location":"Nashville, TN","state":"TN","country":"us","region":"en_US","timezone":"US/Central"},"link":"https://www.meetup.com/rladies-nashville/events/268882903/","description":"

    Hey Nashville R-Ladies! Please join us for a conversation about what we value in this meetup, how we can grow that value, and where we want to head with - R-Ladies Nashville this year and beyond.

    ","how_to_find_us":"Dell Learning - Center","visibility":"public","pro_is_email_shared":true,"member_pay_fee":false}]' - recorded_at: 2021-01-12 09:32:47 GMT - recorded_with: vcr/0.6.0, webmockr/0.7.4 + R-Ladies Nashville this year and beyond.

    ","visibility":"public","member_pay_fee":false}]' + recorded_at: 2022-09-29 18:31:53 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/testthat/test-get_pro.R b/tests/testthat/test-get_pro.R index fadb9947..cf6626ad 100644 --- a/tests/testthat/test-get_pro.R +++ b/tests/testthat/test-get_pro.R @@ -1,31 +1,29 @@ # test_that("get_pro_groups() works", { # vcr::use_cassette("get_pro_groups", { -# groups <- get_pro_groups(urlname = "rladies", -# verbose = TRUE) +# groups <- get_pro_groups(urlname = "rladies") |> head(2) # }) # expect_s3_class(groups, "data.frame") # expect_true( # all( -# names(groups) == c("id", "name", "urlname", "status", "lat", "lon", "city", "state", -# "country", "created", "members", "upcoming_events", "past_events", -# "res") +# names(groups) %in% c("id", "name", "urlname", "description", "latitude", "longitude", +# "city", "state", "country", "membership_status", "members", +# "past_events_count", "upcoming_events_count", "created", +# "proJoinDate", "timezone", "join_mode", "who", "is_private") # )) # }) # # test_that("get_pro_events() works", { +# urlname <- "rladies" +# status = "UPCOMING" # vcr::use_cassette("get_pro_events", { -# events <- get_pro_events(urlname = "rladies", -# verbose = TRUE) +# groups <- get_pro_events(urlname = urlname, status = status) # }) # expect_s3_class(events, "data.frame") # expect_true( # all( -# names(events) == c("id", "name", "created", "status", "time", "local_date", "duration", -# "local_time", "waitlist_count", "yes_rsvp_count", "venue_id", -# "venue_name", "venue_lat", "venue_lon", "venue_address_1", "venue_city", -# "venue_state", "venue_zip", "venue_country", "description", "link", -# "resource", "group_id", "group_name", "group_urlname", "group_status", -# "group_lat", "group_lon", "group_city", "group_state", "group_country", -# "group_res") +# names(events) %in% c("id", "title", "link", "status", "duration", "going", "waiting", +# "description", "event_type", "group_name", "group_urlname", +# "venue_lat", "venue_lon", "venue_name", "venue_address", +# "venue_city", "venue_state", "venue_zip", "venue_country", "time") # )) # })