-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeetups.js
144 lines (142 loc) ยท 3.67 KB
/
meetups.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const waitingCOC = [
{
title: "Dublin TypeScript Meetup",
twitter: "https://twitter.com/DubTypeScript",
url: "https://www.meetup.com/Dublin-TypeScript-Meetup",
image: "dublin-ts.jpg",
country: "๐ฎ๐ช"
},
{
title: "London TypeScript Meetup",
twitter: "https://twitter.com/LndTypeScript",
url: "https://www.meetup.com/London-Typescript-Meetup",
image: "london-ts.jpg",
country: "๐ฌ๐ง"
},
{
title: "Warsaw TypeScript",
twitter: "https://twitter.com/wwatypescript",
url: "https://www.meetup.com/Warsaw-Typescript",
image: "warsaw-ts.jpg",
country: "๐ต๐ฑ"
}
]
const meetups = [
{
title: "Boston TypeScript Club",
url: "https://bostonts.club",
image: "boston-ts-club.png",
country: "๐บ๐ธ",
continentish: "North America"
},
{
title: "Hamburg TypeScript",
url: "https://www.meetup.com/Hamburg-TypeScript-Meetup-Group",
image: "hamburg-ts.png",
country: "๐ฉ๐ช",
continentish: "Europe"
},
{
title: "Krakow TypeScript User Group",
url: "https://www.meetup.com/typescript-krakow",
image: "ktug.jpg",
country: "๐ต๐ฑ",
continentish: "Europe"
},
{
title: "Melbourne TypeScript",
url: "https://www.meetup.com/Melbourne-TypeScript-Meetup",
image: "melbourne.jpg",
country: "๐ฆ๐บ",
continentish: "Europe"
},
{
title: "Milano TS",
twitter: "https://twitter.com/Milano_TS",
url: "https://www.meetup.com/MilanoTS/",
image: "milano-ts.jpg",
country: "๐ฎ๐น",
continentish: "Europe"
},
{
title: "Seattle TypeScript",
url: "https://www.meetup.com/seattle-ts",
image: "seattle.jpg",
country: "๐บ๐ธ",
continentish: "North America"
},
{
title: "Sevilla TypeScript",
twitter: "https://twitter.com/SVQTypeScript",
url: "https://www.meetup.com/Sevilla-TypeScript",
image: "sqvts.jpg",
country: "๐ช๐ธ",
continentish: "Europe"
},
{
title: "San Francisco TypeScript Meetup",
url: "https://www.meetup.com/San-Francisco-TypeScript-Meetup",
image: "san-fran-ts.jpg",
country: "๐บ๐ธ",
continentish: "North America"
},
{
title: "Sydney TypeScript",
twitter: "https://twitter.com/SydTypeScript",
url: "https://www.meetup.com/Sydney-TypeScript",
image: "sydney.jpg",
country: "๐ฆ๐บ",
continentish: "Australia"
},
{
title: "TypeScript NYC",
url: "https://www.meetup.com/NYC-Typescript",
image: "typescript-nyc.jpg",
country: "๐บ๐ธ",
continentish: "North America"
},
{
title: "TypeScript Brazil Meetup",
twitter: "https://twitter.com/tsbrmeetup",
url: "https://www.meetup.com/typescriptbr",
image: "brazil-ts.jpg",
country: "๐ง๐ท",
continentish: "South America"
},
{
title: "TypeScript JP",
twitter: "https://twitter.com/typescriptjp",
url: "https://typescript-jp.dev",
image: "typescript-jp.jpg",
country: "๐ฏ๐ต",
continentish: "Asia"
},
{
title: "Paris TypeScript",
twitter: "https://twitter.com/ParisTypeScript",
url: "https://www.meetup.com/Paris-Typescript",
image: "paris-ts.jpg",
country: "๐ซ๐ท",
continentish: "Europe"
},
{
title: "Phoenix TypeScript",
url: "https://www.meetup.com/Phoenix-TypeScript",
image: "phx-ts.jpg",
country: "๐บ๐ธ",
continentish: "North America"
},
{
title: "Wroclaw TypeScript",
twitter: "https://twitter.com/WrocTypeScript",
url: "https://typescript.community/",
meetup: "https://www.meetup.com/WrocTypeScript",
image: "wroclaw-ts.jpg",
country: "๐ต๐ฑ",
continentish: "Europe"
}
]
module.exports = {
meetups,
waitingCOC
}