-
Notifications
You must be signed in to change notification settings - Fork 24
/
community-data.ts
78 lines (77 loc) · 3.33 KB
/
community-data.ts
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
import { type CommunityGroup } from './types';
export const communityData: readonly CommunityGroup[] = [{
name: 'Newcastle Coders Group',
location: "ICT Building, University of Newcastle",
period: {
interval: "Monthly",
day: "2nd",
weekDay: "Wed"
},
links: {
twitter: "https://twitter.com/ncgau",
facebook: "https://www.facebook.com/groups/ncgau/",
website: "http://ncg.asn.au/",
meetUp: "http://www.meetup.com/Newcastle-Coders-Group/"
},
demographic: "Anyone with an interest in learning about the latest technology as well as new approaches and techniques to designing and developing software.",
format: "Group discussion of recent tech News. Organised presentations from local and/or visiting speakers. Socialising over pizza."
},
{
name: "Newcastle Women and Gender Diverse People in Tech",
location: "NewyTechPeople Office",
period: {
interval: "Monthly",
day: "2nd",
weekDay: "Thurs"
},
links: {
meetUp: "https://www.meetup.com/newcastle-women-and-gender-diverse-people-in-tech/"
},
demographic: "Women and Gender Diverse people who are in the technology field, a field adjacent to it, or have an interest in tech and would like to meet some lovely people who feel the same.",
format: "The format varies but will often include networking/socialising and a presentation."
},
{
name: "Newcastle Cybersecurity Group",
location: "University of Newcastle I2N Hub Honeysuckle",
period: {
interval: "Monthly",
day: "4th",
weekDay: "Thurs"
},
links: {
linkedIn: "https://www.linkedin.com/company/newcastlecybersecuritygroup/",
meetUp: "https://www.meetup.com/Newcastle-Cyber-Security-Group/"
},
demographic: "Anyone interested in or practicing cybersecurity! Our members include students, consultants, engineers, penetration testers, company directors, and more!",
format: "You eat pizza from Bella Italia while a local expert presents. Our presenters cover broad topics ranging from GRC, Web Security, Fraud, Security Culture, Videogame Hacking, Linux Internals, and more! We then head over to Honeysuckle Hotel for networking and a few drinks post-event."
},
{
name: "Newcatle IoT Pioneers",
location: "Stag and Hunter, Mayfield",
period: {
interval: "Monthly",
day: "1st",
weekDay: "Thurs"
},
links: {
meetUp: "https://www.meetup.com/Newcastle-IoT-Pioneers/"
},
demographic: "In or around Newcastle, Lake Macquarie or the Hunter? Keen to make a splash in the Internet of Things world? Then this Meetup is for you!",
format: "Organised presentations"
},
{
name: "Hunter Data Analytics",
location: "Check meetup event details (but usually at University of Newcastle City Campus)",
period: {
interval: "Monthly",
day: "3rd",
weekDay: "Thurs"
},
links: {
meetUp: "https://www.meetup.com/Hunter-Data-Analytics/",
linkedIn: "https://www.linkedin.com/company/hunter-data-analytics/",
twitter: "https://twitter.com/hunteranalytics"
},
demographic: "Data analysts, data scientists, data engineers, statisticians, computer scientists, machine learning engineers etc",
format: "Networking/chats, followed by organised presentations, followed by pub."
}]