-
Notifications
You must be signed in to change notification settings - Fork 0
/
societies.json
2971 lines (2971 loc) · 213 KB
/
societies.json
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"name": "Actuarial Society",
"logo": "http://www.susu.org/groups/logos/3_1380973946.jpg",
"zone": 5,
"description": "Southampton University Actuarial Society (SUAS) is for all students interested or potentially interested in joining the actuarial profession. We will provide industry exposure - companies will be invited to present on topics relating to the actuarial field in order to give students a more in-depth perspective of the profession and we will also have skills sessions, which will include activities such as CV workshops and interview skills sessions.",
"website": "http://www.soton.ac.uk/~suas",
"twitter": "",
"facebook": "http://facebook.com/pages/suas.soton",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Afghan",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": " For Afghans and non-Afghans to come together, share what they know of the culture, food, traditions, music, cinema, etc as well as socialise. We also plan to do fund-raising throughout the year for Afghanistans needy people. Make people more aware of Afghanistan and remove the stereotypes. Offer informal language lessons for those interested led by our own volunteering members. Have socials on the big calendar events such as Nawrooz (new year), Eid, etc. Attan practice taught by our members. (Attan is the traditional Afghan dance.) Trips to London or Oxford for poetry exhibition/ Afghan restaurant. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/377965528954624/",
"email": "[email protected] ",
"type": "International and Cultural"
}, {
"name": "African and Caribbean Society",
"logo": "http://www.susu.org/groups/logos/375_1380707695.jpg",
"zone": 3,
"description": "We are a student run organisation focused on providing our members with opportunities that will develop them into culturally proud and aware, well rounded individuals who feel valued during their time in higher education. Our aim is to unite students from various backgrounds through the celebration of African and Caribbean culture while encouraging them to excel in their academic and career pursuits. We have a diverse following and take pride in giving back to the community through our charity work and mentorship scheme.",
"website": "",
"twitter": "http://twitter.com/SotonACS",
"facebook": "http://www.facebook.com/southampton.acs",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "African Caribbean Christian Fellowship",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": "ACCF is a Christian fellowship formed of various students from different cultures. We are united by our common faith and love for Jesus Christ. We strive to be the light to this world and to be examples to everyone around us. (1st Tim 4:12).We believe in God because we can see His works in our lives and in the lives of those around us.We also aim to increase awareness and appreciation of our different and diverse cultural heritage. EVERYONE is welcome, regardless of race, religion, or age. ",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Faith"
}, {
"name": "African Maritime, Finance, Oil and Gas Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 6,
"description": "This group will be focussed on discussion and education of the maritime, finance and oil and gas industries in different African nations, respectively. Lawyers, students, businessmen and bankers will be invited to speak to members about the development of these three industries across ",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "External Engagement"
}, {
"name": "AIESEC",
"logo": "http://www.susu.org/groups/logos/6_1389550866.jpg",
"zone": 6,
"description": "AIESEC is the world's largest youth-led organisation with 60,000 active members in over 1,800 universities in 110 countries and territories. Our core activities are focused on facilitating a global exchange scheme that provides challenging, cultural work internships for students and recent graduates.AIESEC is focused on providing a platform for youth leadership development, offering students the chance to work abroad, gain valuable leadership skills and develop both professional and personal relationships across the world. ",
"website": "http://www.aiesec.co.uk",
"twitter": "http://twitter.com/www.twitter.com/AIESEC_soton",
"facebook": "http://www.facebook.com/AIESEC.Southampton?fref=ts",
"email": "[email protected]",
"type": "Enterprise"
}, {
"name": "Aikido",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "Aikido is a Japanese Martial art that practitioners can use to defend themselves while also protecting their attacker from injury. This is achieved by blending with the motion of the attacker and redirecting the force of the attack rather than opposing it head-on. Because of this, Aikido requires very little physical strength. Practicing aikido will lead to a healthy, flexible body, and an improved mentality.If you're interested in joining the club, please feel free to come and watch any of our training sessions. We have a friendly atmosphere, and encourage you to join in and get a feeling for the art.Training times and additional info can be found on our website.",
"website": "http://www.soton.ac.uk/~aikido/index.html",
"twitter": "",
"facebook": "https://www.facebook.com/groups/suaikidostudents/",
"email": "[email protected]",
"type": "Martial Arts"
}, {
"name": "Airsoft",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "We are a society that promotes and engages in the sport of Airsoft and Paintball. As a society are goals are to encourage participation and ensure our members have a good time. ",
"website": "http://airsoft.susu.org/",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Outdoor Activities, Sport and Health"
}, {
"name": "Allied Health Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": "AHS brings together, under one society, everyone studying Occupational Therapy, Physiotherapy, Podiatry or Health Science. The society will give members the opportunity to meet other students from all years and courses. ",
"website": "",
"twitter": "https://twitter.com/AlliedHealthSoc",
"facebook": "https://www.facebook.com/groups/470874799663696/",
"email": "[email protected]",
"type": "General"
}, {
"name": "Alternative Indie Music",
"logo": "http://www.susu.org/groups/logos/10_1380281718.jpg",
"zone": 4,
"description": "We are a society dedicated to the appreciation of alternative and indie music. Our monthly live event, Frequency every second Monday of the month in Bar 2 by The Cube gives local bands and students a chance to come and play for an audience in SUSU is a great way to showcase the talent that the South has to offer. We organise gig trips and socials to clubs that promote themselves as featuring alternative or indie music and have our own radio show on Surge called AIM hour.It's a great society to meet people who like similar music to you and finding gig buddies as Southampton has a great live music scene, with top venue The Joiners having just won NME's Best Small Venue. ",
"website": "https://aim.susu.org",
"twitter": "http://twitter.com/sotonuniaim",
"facebook": "https://www.facebook.com/groups/5283429034/",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "American Football",
"logo": "http://www.susu.org/groups/logos/186_1380209613.png",
"zone": 7,
"description": "Southampton Stags American Football Team:American Football team currently competing in BUCS South Division.Training Times (3G field, wide lane):Tuesday 8-10pmThursday 9-10pmSunday 10-1pm4 time National Champions (1992, 1993, 2006, 2008), National Finalists 2012",
"website": "",
"twitter": "https://twitter.com/StagsFootball",
"facebook": "https://www.facebook.com/SouthamptonStags",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Amicus",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 2,
"description": "This is a society for raising money and awareness of the possible miscarriages of justice that occur in countries where capital punishment (primarily the USA) exists. We wish for students to become aware of the possible injustices around the world and encourage them to apply for opportunities in the UK and USA to help people on death row who have not been provided with an adequate defence. Opportunities include internships in the USA where people will have the chance to work alongside capital attorneys or carrying out casework in the UK. There are also training sessions in the UK where students are able to learn how to complete interview techniques, investigation skills, legal research in other jurisdictions, and much more. We also provide the opportunity for students to meet with people who have been exonerated from death row having been subjected to miscarriages of justice and people who have participated in internships in America to learn what they have achieved and were able to get out of it. We wish to make these opportunities available to people at this University, and help raise money along the way for the charity.",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected] ",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Amnesty International",
"logo": "http://www.susu.org/groups/logos/11_1389549837.jpg",
"zone": 2,
"description": "We are ordinary people from around the world standing up for humanity and human rights. Our purpose is to protect individuals wherever justice, fairness, freedom and truth are denied.Our meetings are at 4 in building 58 (Murray) room 1039. Join our Facebook group or send us an email and we will add you to the mailing list to get all the latest updates!",
"website": "",
"twitter": "http://twitter.com/SusuAmnesty",
"facebook": "https://www.facebook.com/groups/331949766878597/",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Anime and Manga Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "Southampton Anime and Manga Society is a society dedicated to the mutual interest in anime, manga and other aspects of Japanese culture.",
"website": "http://sams.susu.org",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Archaeology Society",
"logo": "http://www.susu.org/groups/logos/14_1380044224.jpg",
"zone": 5,
"description": "Subject group for Archaeology, aiming to provide social opportunities and trips of interest relevant to the subject.",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/280960801933929/",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Archers Road JCR",
"logo": "http://www.susu.org/groups/logos/303_1380923855.png",
"zone": 3,
"description": "The JCR for students living in Romero, Gateley & St Margarets",
"website": "",
"twitter": "",
"facebook": "http://ArchersRoadJCR",
"email": "[email protected]",
"type": "JCR"
}, {
"name": "Art Society",
"logo": "http://www.susu.org/groups/logos/15_1382289694.jpg",
"zone": 4,
"description": "This society meets once a week for an art session, for example life drawing. The committee members organize and run each session. The objectives of this society are to bring together people who enjoy art and provide them with the opportunity to exercise this interest and socialize with likeminded people.",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/artsocuniversityofsouthampton/",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Asian Cultural Society",
"logo": "http://www.susu.org/groups/logos/16_1383923437.jpg",
"zone": 3,
"description": "This is a society which brings together students with an Asian heritage or an interest in Asian culture in a friendly and social environment. We have several events throughout the year, from movie nights to club nights, with the flagship event being our cultural show: Dhamaal. It is held in the weeks before Easter each year and provides a platform for people across all years to showcase their talents in an eclectic mix of music, dance, comedy and a fashion show. There are also regular sporting events, which are not only very sociable but also provide a welcome break from the educational aspect of university life.",
"website": "http://www.soton.ac.uk/~asiansoc",
"twitter": "https://twitter.com/SotonAsianSoc",
"facebook": "http://www.facebook.com/SotonAsianSoc",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Assassins Society - The Guild",
"logo": "http://www.susu.org/groups/logos/377_1381075995.png",
"zone": 7,
"description": "The Assassins guild is based upon the idea of players tracking down, locating and performing mock assassinations upon other members within the society, whilst trying to avoid detection by their targets, being located themselves or being assassinated themselves. It is a game of cunning and creativity, with each player being totally free to choose how they approach their challenges. The game is not meant to be taken seriously, with players actually harming or engaging in any form of physical or verbal confrontation as the name might suggest, but instead taken with a touch of humor and light-heartedness",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/167634223327430/",
"email": "[email protected]",
"type": "Outdoor Activities, Sport and Health"
}, {
"name": "Astronomy Society",
"logo": "http://www.susu.org/groups/logos/17_1381009748.jpg",
"zone": 5,
"description": "We are an enthusiastic group of astronomers from all parts of the university. We regularly observe on Southampton Common",
"website": "http://www.astrosoc.susu.org/",
"twitter": "https://twitter.com/SotonAstrosoc",
"facebook": "https://www.facebook.com/groups/SotonAstrosoc/",
"email": "[email protected]",
"type": "Outdoor Activities, Sport and Health"
}, {
"name": "Atheist Society",
"logo": "http://www.susu.org/groups/logos/18_1380015771.png",
"zone": 8,
"description": "We aim to represent the views of Atheists in the community and provide a social group for those interested in Atheism, Secularism, Humanism and Scepticism.",
"website": "http://atheistsoc.susu.org",
"twitter": "http://www.twitter.com/SotonAtheistSoc",
"facebook": "https://www.facebook.com/SotonAtheistSoc",
"email": "[email protected]",
"type": "Faith"
}, {
"name": "Athletics & Cross Country",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "",
"website": "http://accc.susu.org/",
"twitter": "",
"facebook": "http://www.facebook.com/groups/482296425120539/?bookmark_t=group",
"email": "[email protected]",
"type": "Outdoor Individual Sports"
}, {
"name": "Audiology",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": " Better interactions between the different year groups. To aid better learning for all years to learn from other years through buddy system and option for study sessions. Talks from external speakers: eg. Charities such as Action on Hearing; Private sector representatives such as directors of Specsavers/Boots, David Omerod. Possible recruitment day(s) for final years. To have more social interactions intra and inter years. Eg. Helping freshers get to know each other Connect with other audiology schools across UKAnd... Better representation!",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/AudioSoc/",
"email": "[email protected] ",
"type": "Departmental"
}, {
"name": "Azerbaijan",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": " The Southampton Azerbaijan Society (SAS) is a non-for-profit and non-governmental organisation based in Southampton, UK. The Society was established, on the 16th of May 2013, on the initiative of Tarlan Isgandarov, by a group of Azerbaijani students studying in the University of Southampton.Our aim is to unite and support Azerbaijani students in Southampton, familiarise everyone with Azerbaijan and its culture, and to strengthen UK-Azerbaijani relations. In order to do this, we intend to hold social activities and events. By creating a society, we would have a chance to meet even more people from variety of countries and exchange information about our countries and cultures. The main objective is to introduce Azerbaijan and its culture to everyone. ",
"website": "http://users.ecs.soton.ac.uk/ea2g12/",
"twitter": "",
"facebook": "https://www.facebook.com/groups/215604025249676/",
"email": "[email protected]",
"type": "General"
}, {
"name": "Badminton (Colours)",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "The Colours Badminton Club is the competitive badminton club at the University and takes part in regular training and matches against other universities and local teams. We currently have two mens and one ladies team in the BUCS leagues as well as a further two mens and a mixed team in the local Winchester district league.",
"website": "http://subad.org.uk/index.html",
"twitter": "",
"facebook": "https://www.facebook.com/groups/469494926490769/",
"email": "[email protected]",
"type": "Indoor Individual Sports"
}, {
"name": "Badminton (Recreational)",
"logo": "http://www.susu.org/groups/logos/190_1391810330.jpg",
"zone": 7,
"description": "At RecBad you can play badminton games at any standard; beginner to expert, causal to competitive, with a range of people from all across the university! Meet new people, enjoy our varied socials, and improve your badminton with a relaxed and friendly club.",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/#!/groups/recbad/",
"email": "[email protected]",
"type": "Indoor Individual Sports"
}, {
"name": "Ballet Society",
"logo": "http://www.susu.org/groups/logos/20_1383789535.jpg",
"zone": 4,
"description": "The ballet society is for all those with a love of ballet. We hope to cater for everyone by providing relaxed and fun ballet classes at 4 levels: beginners, improvers, intermediate, and advanced. So whether you have been dancing for as long as you can remember or are looking to try ballet for the first time, or even if you are just looking for a great way to stay flexible and fit, we hope you come along and get involved. As well as ballet classes we offer a weekly body conditioning class and an active social calendar with event ranging from visits to the theatre to nights out on the town. We also run competition squads who have competed very successfully at inter-university dance competitions. Regular class attendees are also invited to perform in the annual 'Pure Dance' show, which showcases the work of Southampton University Dance Societies. ",
"website": "http://www.groupspaces.com/southamptonuniversityballetsoc;",
"twitter": "",
"facebook": "http://www.facebook.com/groups/16639102845/",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Ballroom and Latin Dance Society",
"logo": "http://www.susu.org/groups/logos/21_1380066275.jpg",
"zone": 4,
"description": "We are Southampton University's Ballroom and Latin Dance Society. We encourage and teach dance at both a social and competitive level. Weekly classes for all standards are taught by professional teachers and we also compete regularly throughout the year against other universities across the country. We perform demonstrations at local events, take part in the annual dance showcase 'Pure Dance' and organise Southampton's very own Strictly Come Dancing every year!We are a very friendly and welcoming community open to all for enjoyment, fitness and involvement in the student union through our love of Ballroom dance... 'Keeeep Dancing!'",
"website": "http://www.sublds.co.uk/",
"twitter": "http://twitter.com/SUBLDS",
"facebook": "http://www.facebook.com/groups/sublds/?fref=ts",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Barnardo's society",
"logo": "http://www.susu.org/groups/logos/378_1380480494.jpg",
"zone": 6,
"description": "As part of the Barnardo's Student Programme we aim to raise awareness of this fantastic charity's national campaigns and services as well as putting on fundraisers throughout the year to raise our annual target of 1000.Fundraising events we've held in the past include;A free showing of the Lion King,Quiz Nights, Jesters takeovers, Cake sales, Live music events, Mega raids in highstreets and festivals, Krispy Kreme donut sales and much more...Last year, SU Barnardo's Society was awarded the Barnardo's Collecting Society of the year award (from all the University-based Barnardo's Societies), which was only won through our hard efforts and fundraising. By getting in touch with us, we can let you know about the campaigns Barnardo's is currently involved with, events we as a society are running, and how you can get involved yourself. ",
"website": "http://www.barnardos.org.uk/",
"twitter": "https://twitter.com/BarnardosSoton",
"facebook": "https://www.facebook.com/groups/342445192187/",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Baseball",
"logo": "http://www.susu.org/groups/logos/191_1380222225.png",
"zone": 7,
"description": "",
"website": "http://www.southamptonmustangs.co.uk",
"twitter": "",
"facebook": "https://www.facebook.com/groups/548087965207147/",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Basketball",
"logo": "http://www.susu.org/groups/logos/192_1381314138.jpg",
"zone": 7,
"description": "If you're interested at playing Basketball at any level please get in touch!! We have Men's and Women's competitive and development teams which accept players of all abilities!You can now sign up for 2013/14 trials at our website!We have the following competitive teams:Mens 1 - playing in BUCS and National League.Mens 2 - playing in BUCS.Womens - playing in BUCS and SABA Local League.",
"website": "http://www.southampton.ac.uk/~sharks/",
"twitter": "http://twitter.com/www.twitter.com/SUBC_Sharks",
"facebook": "http://www.facebook.com/SUBCSharks",
"email": "[email protected]",
"type": "Indoor Team Sports"
}, {
"name": "Belly Dance Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "Belly dancing is beautiful form of dance which happens to be a great way to get fit maintain flexibility and improve your core muscles, while having fun! We run 2 weekly beginner classes in 2 different styles of belly dance. Traditional oriental, and tribal fusion-a modern american adaptation of belly dance. Classes are Friday in the multi purpose studio and open to all levels-6-7 for tribal and 7-8 for oriental. We also run workshops in a variety of different fusion styles from burlesque belly dance to hip hop fusion belly dance. Classes are just 3 a lesson(or 5 for both!) and membership for the year is 10",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/southamptonuniversitybellydance/",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Bencraft JCR",
"logo": "http://www.susu.org/groups/logos/302_1380923967.png",
"zone": 3,
"description": "Your Bencraft JCR",
"website": "",
"twitter": "",
"facebook": "http://BencraftJCR",
"email": "[email protected]",
"type": "JCR"
}, {
"name": "Bhangra Society",
"logo": "http://www.susu.org/groups/logos/379_1380385885.png",
"zone": 4,
"description": "Bhangra is a fun-filled, energetic and explosive form of dance, which originates from the Punjab region of India! We hold weekly classes which are open to anyone, irrespective of ability or background - so come along and get involved! We also have a Beginners' squad and a Competition squad, should you wish to take Bhangra that step further and perform at a university, local or national level.",
"website": "",
"twitter": "http://twitter.com/SotonBhangraSoc",
"facebook": "http://www.facebook.com/SotonBhangraSoc?fref=ts",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Biological Sciences Postgraduate",
"logo": "http://www.susu.org/groups/logos/423_1380563017.jpg",
"zone": 5,
"description": "BSPS is a newly founded society with the main aim to provide both educational and social events for the hard working postgrad students of B85 and beyond! We aim to provide a community for the Biological Sciences postgrad students through both social and educational events",
"website": "",
"twitter": "https://twitter.com/sotonbsps",
"facebook": "https://www.facebook.com/sotonbsps",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Biological Sciences Society",
"logo": "http://www.susu.org/groups/logos/24_1380185519.png",
"zone": 5,
"description": "We are a society for the students who study biological sciences and those who are interested in bio-science. We run educational and social events including bi-annual balls and seminars we also offer several sports teams that compete in the intramural leagues. Biosoc aims to bring together people with similar interests to help everyone get the most out of their university experience.",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/2216925412/",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Boat",
"logo": "http://www.susu.org/groups/logos/194_1380618037.jpg",
"zone": 7,
"description": "Each year, as one of the largest clubs within the AU (with over 100 members), SUBC welcomes both experienced and beginner athletes to join our fun and friendly club. Throughout the year everyone gets the opportunity to race at a range of events, ranging from small regattas, to large BUCS and international events. The club has an active social scene which is a great opportunity to meet people in other squads within the club",
"website": "http://www.subc.co.uk",
"twitter": "",
"facebook": "http://www.facebook.com/#!/groups/122391907787342/",
"email": "[email protected]",
"type": "Watersports"
}, {
"name": "Boxing",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "One of the most physically and mentally demanding sports. Whether you want to box to keep fit or to have competitive bouts, the Boxing club could be for you! We welcome new members all year round, so it's never too late to get involved. Don't be afraid to get in touch! All information you need is on our facebook page, SUABC",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/142600199780/",
"email": "[email protected]",
"type": "Martial Arts"
}, {
"name": "Brass Band",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "We are a group of brass players who gather once a week to rehearse for concerts and the annual events UniBrass and the Whit Friday marches.",
"website": "http://subb.susu.org/",
"twitter": "http://twitter.com/SUBrassBand",
"facebook": "https://www.facebook.com/SUBrassBand",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Breakdance Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "Breakdancing society is open to anybody interested in breakdancing regardless of previous experience.Sessions are on Wednesdays 1 - 3pm and Saturdays 12 - 2pm.The sessions are held in the Multi Purpose Studio on level 1 (bottom floor) of SUSU building.Join our facebook group or come down to a session if you're interested!",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/q5rviW/",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Bridge Club",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "We are a society devoted to the play of the card game bridge.",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "General"
}, {
"name": "Bright Futures",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "The Bright Futures Society, a not-for-profit, offers students the chance to engage with top graduate recruiters, enabling you to find out first-hand about all the different industries out there and the best way for you to take your first step on the ever competitive career-ladder. But it is't just about skills and commercial awareness, it's also about boosting your self confidence and raising your aspirations. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/286843984779229/",
"email": "[email protected]",
"type": "General"
}, {
"name": "Bruneian Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": "Bruneian Southampton Society or BruSton was established in 2008. It was then officially affiliatedwith the Southampton University Student Union (SUSU) and Brunei Student Union (BSU) in 2009.We have set up the society to help bring the Bruneians of Southampton together and to look outfor each other. We hope to aid new comers from Brunei into the University and hopefully persuadeothers to join the BruSton family in the years to come.",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Buddhist Meditation Society",
"logo": "http://www.susu.org/groups/logos/30_1381407878.jpg",
"zone": 8,
"description": "The Buddhist Meditation Society provides students with the opportunity to learn about meditation within the New Kadampa Buddhist tradition. Through practising meditation and applying Buddhist insights to our daily life we can learn to maintain a peaceful mind. Our regular classes are on Wednesdays, 2.00-3.00 in 54/7035. Everyone is welcome, so come along and give one a go! ",
"website": "http://groupspaces.com/buddhistmeditationsociety",
"twitter": "",
"facebook": "https://www.facebook.com/groups/BuddhistMeditationSoc/",
"email": "[email protected]",
"type": "Faith"
}, {
"name": "Bulgarian Society",
"logo": "http://www.susu.org/groups/logos/381_1382523674.png",
"zone": 3,
"description": "The aim of Bulgarian society is firstly to gather all Bulgarians at the University of Southampton, and secondly to promote the Bulgarian culture, a better awareness of customs, traditions, history, to all international students ",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Cake Decorating Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "We aim to be a society with members interested in decorating cakes, improving their ability or learning from scratch. We have organized sessions for members to come and decorate either pre-baked cakes or dummies, with utensils provided by the society. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/#!/SUCakeDecSoc",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Canoe",
"logo": "http://www.susu.org/groups/logos/197_1383934366.jpg",
"zone": 7,
"description": "A growing and nationally successful club, SUCC accommodates anyone from people who have never kayaked before (which is how most people join us), to expert paddlers! We run weekly sessions on the river and in the pool, with trips every fortnight and at least one awesome social a week. There's loads of info on our website: www.canoe.susu.org. If you have any questions at all please contact the committee via email: [email protected]",
"website": "http://canoe.susu.org",
"twitter": "",
"facebook": "https://www.facebook.com/groups/442753722498846/",
"email": "[email protected]",
"type": "Extreme Sports"
}, {
"name": "Canoe Polo",
"logo": "http://www.susu.org/groups/logos/196_1380092129.png",
"zone": 7,
"description": "Canoe Polo is the fastest growing watersport in the world! it is a 5-a-side contact game played in kayaks. The aim is to score as many goals in the opponents goal whilst stopping them going in yours. Players can pass the ball or dribble, contact can be made by jostling with kayaks or by pushing the ball carrier in.We provide all the kit you need including kayak, paddle, helmet, buoyancy aid and spraydeck. It doesn't matter if you have never paddled before, we welcome complete beginners and will get you confident and playing in no time. We take part in university tournaments all over the country including London, Cardiff, Bristol, Bath and Warwick as well as the main BUCs tournament in Doncaster. We also have teams in SW regional Div 3 and Div 1 which take place in Cheltenham, as well as members playing at all national levels. Basically, there are tournaments with leagues for all abilities! Interested? Come along and have a go! We train twice a week in the Jubilee swimming pool on Fridays (8:30 -10pm) and Saturday (8-10pm), as well as on the river. Check out our website for more info!",
"website": "http://sucp.susu.org",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sotonpolo/",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Capoeira",
"logo": "http://www.susu.org/groups/logos/371_1380025724.jpg",
"zone": 7,
"description": "Capoeira was born out of the slave trade around 500 years ago in Brazil. It was developed by the slaves as a martial art, however it was designed to look like tribal dances and rituals so that the slave masters would not suspect the violent aspect of the art. so it was that a crucial component in learning Capoeira has been the ability to mask your movements and intentions in an apparently non threatening dance.At Southampton we have a wonderful teacher (Mestre Joaozinho) teaching on Thursdays. We also have free sessions on Saturdays and Sundays for having our own Capoeira games and training. You're welcome to come to any of our sessions (see Facebook group for more info.) If you have any more questions you can email us. If you're wondering if you should try it or not, try it! ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sucapclub",
"email": "[email protected]",
"type": "Martial Arts"
}, {
"name": "Catholic Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 8,
"description": "Southampton University Catholic Society (CathSoc) is an open and friendly community of Catholic students from all over the world - we have over 36 nationalities represented among our ~150 members. Our main activity is hosting a Sunday Mass on campus every week during term time - we also organise social events (such as international food and dance evening, trips to the New Forest, trips to Sprinkles Ice Cream Shop, a Christmas Dinner and Summer Ball every year) and opportunities to profess and deepen our faith through prayer and worship groups. We are not an evangelistic group but we reach out to the local community through our links with CAFOD and local parishes, mainly Immaculate Conception in Portswood and St Edmund's on The Avenue. The society is based at the Chaplaincy with support from our chaplain, Sr Catherine and a committee of students who run the society and the Masses. Anyone is welcome to join us for Mass on Sunday - just turn up at 6.30pm to the Chaplaincy. There is usually food afterwards :-) We are predominately Roman Catholics, but we have members from the Eastern Rite and the Orthodox Community regularly joining us. If you've made it this far, you should at least come and meet us now! We're very welcoming and very normal - see you on Sunday? ",
"website": "http://www.southampton.ac.uk/~cathsoc/",
"twitter": "http://twitter.com/www.twitter.com/SotonCathSoc",
"facebook": "http://www.facebook.com/groups/uos.cathsoc",
"email": "[email protected]",
"type": "Faith"
}, {
"name": "Caving",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "Southampton Uni Caving Club gives you the opportunity to go to places that no one has ever been before, see some amazing sights and meet lots of interesting new people. We also hold regular socials!",
"website": "http://caving.susu.org",
"twitter": "",
"facebook": "https://www.facebook.com/groups/2204823157/",
"email": "[email protected]",
"type": "Outdoor Individual Sports"
}, {
"name": "Chamberlain JCR",
"logo": "http://www.susu.org/groups/logos/304_1380923956.png",
"zone": 3,
"description": "The JCR for students living in South Hill and Hartley Grove",
"website": "",
"twitter": "",
"facebook": "http://ChamberlainJCR",
"email": "[email protected]",
"type": "JCR"
}, {
"name": "Cheerleading - Vixens",
"logo": "http://www.susu.org/groups/logos/260_1380015334.png",
"zone": 7,
"description": "Welcome to the Vixens page! Our club is made up of three squads; the Competition Squad, the Dance Squad and the Game Day Squad.Not only do we enter (and win) cheer and hip-hop competitions at a National level, we also support our University as a whole. We attend the Stags American Football Team's games, involve ourself with the rest of our Athletic Union and hold fund raisers. Our support is also shown in the wider community, and we've even made the front page of a newspaper and have also appeared on TV.",
"website": "http://www.southamptonvixens.com/",
"twitter": "",
"facebook": "http://www.facebook.com/pages/Southampton-Vixens-Cheerleading-Squad-201213/338267566258242",
"email": "[email protected]",
"type": "Indoor Team Sports"
}, {
"name": "Chemistry Society",
"logo": "http://www.susu.org/groups/logos/32_1381949371.png",
"zone": 5,
"description": "ChemSoc provides a break from the academic pressures of Chemistry. We provide events to cater for all needs and aim to bring Chemists of all ages together in having a good time.In order to do this we participate in a number of social activities, sports and outreach activities to encourage mass participation and provide a better experience for chemists as a whole; creating a bridge between the school and the students.",
"website": "http://www.chem-soc.co.uk",
"twitter": "",
"facebook": "https://www.facebook.com/groups/ChemsocSouthampton",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Chess Club",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "The chess club is a place for chess players of all standards to meet. We aim to provide equipment for casual play at club nights, to practice and improve, and provide an environment in which players can learn from one another and analyse games they have played. We also aim to play competitive chess at a variety of levels. We run tournaments within the club, and travel to tournaments elsewhere, encouraging our members to get more involved in chess. ",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/30524630535/",
"email": "[email protected]",
"type": "General"
}, {
"name": "Chinese Students & Scholars Association",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": "To serve and provide events, extra-curricular activities and information to all the Chinese students of the University.",
"website": "http://www.cssasoton.org/new/",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Chinese Students Society",
"logo": "http://www.susu.org/groups/logos/384_1380035477.png",
"zone": 3,
"description": "Our society aims to gather all the Chinese students in the university, by holding a lot of activities in order to give our members a fun and fruitful university life. ",
"website": "https://www.facebook.com/groups/192338367483090/",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Christian Union",
"logo": "http://www.susu.org/groups/logos/36_1381426628.png",
"zone": 8,
"description": "As a society we aim to share about Jesus Christ, who we believe to be our Lord and Saviour. Further we aim to live out and encourage the Christian lifestyle. We are an active society who gathers large amounts of people on a regular basis.",
"website": "http://www.sucu.org.uk",
"twitter": "https://twitter.com/SouthamptonCU",
"facebook": "https://www.facebook.com/groups/SUCUemail/",
"email": "[email protected]",
"type": "Faith"
}, {
"name": "Circus Society",
"logo": "http://www.susu.org/groups/logos/37_1380474375.gif",
"zone": 4,
"description": "At circus society we're all about meeting people, getting involved and having fun. Everyone has fun teaching and learning new tricks together, and we highly encourage members to learn and develop performance skills. We cater for a wide range of skill levels, welcoming both complete beginners and experts, and have a range of our own circus equipment so that anyone can join in and learn tricks straight away.We occasionally organize beginners' sessions of various equipment such as juggling, poi, diabolo and unicycling, and our members have a huge variety of skills including staff, flower stick, hula hooping, contact juggling and more! We also have evenings where members get the opportunity to safely use fire equipment.Our experienced performers are available for hire for events both in and out of the university, and the society serves as a platform to advertise our members and their skills.",
"website": "http://circus.susu.org/",
"twitter": "",
"facebook": "http://www.facebook.com/groups/2207231342/",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Comedy Society",
"logo": "http://www.susu.org/groups/logos/38_1380311870.png",
"zone": 4,
"description": "SUSU ComedySoc aims to provide a wide range of comedy entertainment to appreciative audiences. We seek to encourage aspiring young writers, actors and stand ups to enhance their creative skills in the pursuit of laughter. ",
"website": "http://comedy.susu.org",
"twitter": "https://twitter.com/SUSUcomedysoc",
"facebook": "http://www.facebook.com/SUSUComedysoc",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Computer Game Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "A group to allow members to come together to socialize and play games in one place. Providing tournaments each week and bringing consoles in to allow everyone to play.",
"website": "http://cgsoc.susu.org",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "General"
}, {
"name": "Concert Band",
"logo": "http://www.susu.org/groups/logos/42_1380480180.png",
"zone": 4,
"description": "Concert Band is open to anyone who plays a brass, wind or percussion instrument. As one of few non-auditioned music societies we maintain a relaxed atmosphere without the stresses of auditioning for places. The main aim of the band is to have a great time whilst playing music.",
"website": "http://www.band.susu.org",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Connaught JCR",
"logo": "http://www.susu.org/groups/logos/305_1380923950.png",
"zone": 3,
"description": "The JCR for students living in Connaught Halls",
"website": "",
"twitter": "",
"facebook": "http://ConnaughtJCR",
"email": "[email protected]",
"type": "JCR"
}, {
"name": "Conservation Volunteers",
"logo": "http://www.susu.org/groups/logos/43_1381156576.jpg",
"zone": 6,
"description": "SU Conservation Volunteers organise tasks with local conservation projects every Sunday in and around Southampton and Hampshire.Task locations include Southampton Common, Chilworth conservation area, the Grasslands Trust, Hampshire/Dorset Wildlife Trust, The Conservation Volunteers and more.Tasks involve things like heathland restoration, scrub clearing, invasive plant removal, coppicing, boardwalk building, dead hedge building, planting, dry stone walling... Anything that helps boost and protect biodiversity in the local area!Membership is free, along with free tea, coffee and biscuits on tasks, as well as a jacket potatoes if we have a bonfire! We also have socials, longer residential trips further afield every term and even occasional resis abroad.We meet on Sunday mornings outside the West Building (Stag's Head side entrance) between 9 and half 9, coming back between 4ish. Remember to join the mailing list and reply to task emails to let us know your coming though, or you may not get a place on the minibus!",
"website": "http://www.soton.ac.uk/~sucv/",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sucv1/",
"email": "[email protected]",
"type": "Outdoor Activities, Sport and Health"
}, {
"name": "Conservative Association",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 2,
"description": "Society representing the Conservative Party at the University. We aim to encourage conservatism on campus as well as being a place where Conservatives can meet.",
"website": "http://www.suca.susu.org",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Contemporary Dance Society",
"logo": "http://www.susu.org/groups/logos/177_1380045533.png",
"zone": 4,
"description": "Southampton University Contemporary Dance Society aims to provide an opportunity for members and one off attendees to participate in dance classes at both and advanced and beginner level. We aim to offer a safe, friendly environment for people to experience a new style of dance or improve an already existing skill. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/660331550663262/?bookmark_t=group",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Creative Writing Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "The Creative Writing Society is for all students from all disciplines whom like to write creatively. We run weekly workshops, have a really good time and have a wide range of opportunities for you to take hold of, including competitions, self-published publication opportunities and guest speakers. Just hit up the Facebook group or email us and come to a meeting to see what we do!",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/201344016653251/",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Cricket (Ladies)",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 7,
"description": "A group designed for those interested in playing cricket - whatever your ability! Join the Wessex legends that are Southampton University Ladies Cricket Club!This group will keep you up to date on all of the socials, matches and trainings.Training 12-1.30pm Sundays in The Old Sports Hall.Indoor games Sunday evenings Fleming ParkAny questions or queries can be directed to our lovely committee:Club Captain - Dee Tress: [email protected] 07791551327Secretary - Charlotte Bladon:Team Captain - Lizzie Donkin:Treasurer - Jenny Nunn:Admin Officer: Emily SmithSocial Sec - Lizzie Donkin",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sulcc/?fref=ts",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Cricket (Mens)",
"logo": "http://www.susu.org/groups/logos/199_1380933312.jpg",
"zone": 7,
"description": "SUCC is one of the largest sports clubs at the University and also one of the most successful. Our 1st XI compete in the BUCS Premier South League, though we run four sides at varying standards, meaning the club contains everyone from County 2nd XI players to beginners. The club isn't just active during the summer term, however, and trains weekly through the winter at the prestigious Ageas Bowl Indoor School, as well as playing indoor matches in both Hampshire and BUCS competitions. We have a social every Wednesday, tour every year and you can be sure of a warm welcome if you join SUCC!",
"website": "http://southamptonuniversity.hitscricket.co.uk/",
"twitter": "http://twitter.com/SotonUniCricket",
"facebook": "http://www.facebook.com/groups/SouthamptonUniversityCricketClub",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Cymru Soc",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 3,
"description": "Our aim is to unite the Welsh students of Southampton University. Activities include watching/attending rugby matches and learning/communicating in Welsh. We also want to start Welsh lessons in the coming year, for those who can't, but would like to speak our beautiful language.",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/2204817805/",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Debating Society",
"logo": "http://www.susu.org/groups/logos/51_1382389167.jpg",
"zone": 2,
"description": "We run weekly debating which are open to everyone. Debates are typically topical and they raise awareness of current affairs and issues in the university. We also engage with other societies. We run training sessions to educate people in debating and to improve their skills at public speaking and formulating arguments, as well as general self confidence. ",
"website": "http://www.southampton.ac.uk/~debating/",
"twitter": "",
"facebook": "https://www.facebook.com/groups/56527593826/",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Diving",
"logo": "http://www.susu.org/groups/logos/458_1380282325.png",
"zone": 7,
"description": "Southampton University Diving Club (SUDC) is a group of students of all abilities who enjoy springboard and platform diving.",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/124024174447631/",
"email": "[email protected]",
"type": "Watersports"
}, {
"name": "DJ Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "Southampton University DJ Society is run by the DJs at Southampton Uni for the benefit of everyone at Southampton Uni.The society's members include many DJs who play at events held around the University and beyond. Membership is not however limited to this; we exist to support the electronic music scene in Southampton and openly welcome anyone who shares this aim.",
"website": "http://www.mixcloud.com/DJSoc/",
"twitter": "",
"facebook": "https://www.facebook.com/groups/2213853335/",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Dodgeball",
"logo": "http://www.susu.org/groups/logos/201_1385567583.jpg",
"zone": 7,
"description": "Dodgeball is a relatively new sport in the UK, and Southampton University Dodgeball Club have gone from strength to strength in the past few years.Dodgeball is a sport played with two teams, each aiming to eliminate members of the opposing team by throwing balls at them. It's fast, furious and a whole lot of fun, and our club is open to anybody who wants to play. If you've ever seen the film 'Dodgeball', you'll have some idea of how the game is played.Our teams have obtained multiple medals and titles in the past few years since the club was founded in 2007 The club train on Wednesdays 12.40-2pm in the squash courts and Saturdays 9.30-11am in the old sports hall",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/2403876794/",
"email": "[email protected]",
"type": "Indoor Team Sports"
}, {
"name": "Duke of Edinburgh Society",
"logo": "http://www.susu.org/groups/logos/54_1380894158.png",
"zone": 6,
"description": "The Duke of Edinburgh Society is the principal way for university students to become affiliated with and complete their Duke of Edinburgh Award with Woolston and Weston Open Centre (WAWOC). The SU DofE Society focuses on providing participants with the means to complete their Gold Duke of Edinburgh award. We have weekly meetings/activities on Thursday evenings.",
"website": "http://dofe.susu.org/",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sudofe/",
"email": "[email protected]",
"type": "Outdoor Activities, Sport and Health"
}, {
"name": "Economics Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": "As a subject society, we aim to bring peers together to integrate the three years of the course together and form social groups for academic and non-academic reasons through social events and interest of the subject. ",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Education",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": "Hey there! EduSoc is here to enrich the student experience of those studying on any degree programme in the Southampton Education School. We aim to do this by hosting guest speakers, organising trips, socials, and creating a support network for all aspects of student life. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/UoSEduSoc/",
"email": "[email protected] ",
"type": "Departmental"
}, {
"name": "Electronic Music Society",
"logo": "http://www.susu.org/groups/logos/387_1380893846.png",
"zone": 5,
"description": "Our society is aiming to create a community of electronic music enthusiasts. The term electronic music is an umbrella term that encompasses a wide spectrum of different styles, genres and sub-genres of music. We hope to bring fans of electronic music (from across the spectrum) together in order for them to meet new people with similar tastes and to experience music that they may have otherwise never heard.",
"website": "http://www.semsu.co.uk",
"twitter": "",
"facebook": "https://www.facebook.com/pages/Southampton-Electronic-Music-Society-SEMSU/375663329121507",
"email": "[email protected]",
"type": "Music, Arts & Media"
}, {
"name": "Electronics and Computer Science Society",
"logo": "http://www.susu.org/groups/logos/57_1384528389.png",
"zone": 5,
"description": "ECSS is a student run society within the School of Electronics and Computer Science. We aim to promote IT innovation in our members by holding competitions and challenges as well as providing social and sporting events throughout the year. We are always open to fresh ideas for events so feel free to give us your suggestions on our website.",
"website": "http://society.ecs.soton.ac.uk",
"twitter": "http://twitter.com/ecs_society",
"facebook": "https://www.facebook.com/groups/2231086166/",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Enactus",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 6,
"description": "Enactus Southampton is a student run social enterprise and an affiliated society of the University of Southampton Student's Union. The team are currently undertaking 12 projects, 9 Social Projects and three Commercial Enterprises.The principal objective of SIFE Southampton is to provide a channel whereby students can gain experience working in a business environment, while at the same time improving the quality of life and standard of living for communities and individuals in need. SIFE projects set University of Southampton students apart from their peers, by teaching them (through their experiences), the relevant skills to make them more employable in the future.",
"website": "http://www.enactussouthampton.com/",
"twitter": "",
"facebook": "https://www.facebook.com/Enactus.Southampton",
"email": "[email protected]",
"type": "Enterprise"
}, {
"name": "Engineering Society",
"logo": "http://www.susu.org/groups/logos/58_1383304252.jpg",
"zone": 5,
"description": "SUES aim to provide a platform for interaction between different years and cohorts of engineering students, academic staff and others of similar interests. ",
"website": "http://www.sues.susu.org",
"twitter": "",
"facebook": "",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Engineers Without Borders",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 6,
"description": "Who are we?We are a student society that reaches across all Engineering disciplines and Science departments. What we do?We provide the opportunity and we are encouraging students (studying technology related subjects and not only) to have an experience with working in international development, practical trainings and promoting engineering. Our aim is to facilitate human development by using engineering and technical skills, by taking action and getting ideas to the next level.Why do it?The best way to learn and be as effective as possible is by teaching and helping others. In this case we are working in the befit of the people from developing countries and that of the engineering and science community. ",
"website": "",
"twitter": "",
"facebook": "",
"email": "[email protected] ",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "English Society",
"logo": "http://www.susu.org/groups/logos/60_1379953668.png",
"zone": 5,
"description": "EngSoc's here to help you make the most of your English degree! We build a community for every English student at Southampton by organising socials (including non-alcoholic trips to soft play centres!), larger events like the Humanities Ball, book sales, and sports including netball and football. Get involved!",
"website": "http://engsoc.susu.org/",
"twitter": "",
"facebook": "http://www.facebook.com/groups/EngSocSouthampton",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Environmental Science Student Society",
"logo": "http://www.susu.org/groups/logos/61_1379952737.jpg",
"zone": 5,
"description": "Our aims are to represent the interests of current environmental sciences students (all years and programs), environmental groups and charities, and also prospective students.We want to provide opportunities to Environmental Science students, and others interested in conservation/sustainability, to develop their knowledge on environmental topics and explore global issues.",
"website": "http://esss.susu.org",
"twitter": "http://twitter.com/UoSES",
"facebook": "https://www.facebook.com/Envsocsoton",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Erasmus Park JCR",
"logo": "http://www.susu.org/groups/logos/306_1380923938.png",
"zone": 3,
"description": "The JCR for students living at Erasmus Park halls in Winchester",
"website": "",
"twitter": "",
"facebook": "http://ErasmusParkJCR",
"email": "[email protected]",
"type": "JCR"
}, {
"name": "Erasmus Society",
"logo": "http://www.susu.org/groups/logos/62_1380971292.png",
"zone": 3,
"description": "Our main aim is to provide all round support for everyone's exchange experience, from adjusting to life in Southampton, to advice on who to contact with housing, personal and academic concerns. ",
"website": "http://erasmus.susu.org",
"twitter": "",
"facebook": "https://www.facebook.com/ESNSouthampton",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Explore the UK",
"logo": "http://www.susu.org/groups/logos/399_1380099036.jpg",
"zone": 3,
"description": "Explore the UK (ETUK) aims to provide opportunities for international students to gain the most out of their Southampton experience through a variety of trips, events and cultural experiences. The society also looks to provide opportunities for home and international students to come together focusing on a shared interest in different cultures.",
"website": "",
"twitter": "https://twitter.com/ExploreTheUK",
"facebook": "https://www.facebook.com/ExploreTheUK",
"email": "[email protected]",
"type": "International and Cultural"
}, {
"name": "Fancy Dress",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "The Southampton University Fancy Dress Society is a society created to gather people together who have a passion for dressing up in fancy dress. The aims of the society are to offer workshops and tips on how to make great fancy dress on a student budget and therefore improve the standard of fancy dress socials throughout the university. The best way to get in contact with the group is through our facebook group:www.facebook.com/groups/fancydresssoton/If you don't use facebook, then feel free to drop an email in to our email address [email protected]",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/fancydresssoton",
"email": "[email protected]",
"type": "General"
}, {
"name": "Fandomonium Society",
"logo": "http://www.susu.org/groups/logos/524_1382780098.png",
"zone": 3,
"description": "To unite all fangirls/fanboys!We will include fandoms such as Harry Potter, Doctor Who, Sherlock, Lord of the Rings, Merlin, Supernatural, Star Wars, Star Trek, Hunger Games, Divergent etc :)",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/588763644503126/",
"email": "[email protected]",
"type": "Student Communities"
}, {
"name": "Fashion and Style Society",
"logo": "http://www.susu.org/groups/logos/438_1379955456.png",
"zone": 4,
"description": "Have you looked in your wardrobe and thought, 'I have too many clothes'? Yeah, us neither. We maintain our blog throughout the year, with monthly events such as socials, photoshoots and trips to fashion shows. ",
"website": "http://sotonfashsoc.blogspot.com",
"twitter": "",
"facebook": "https://www.facebook.com/UniversityOfSouthamptonFashionAndStyleSociety",
"email": "[email protected]",
"type": "General"
}, {
"name": "Feminist Society",
"logo": "http://www.susu.org/groups/logos/64_1389549964.png",
"zone": 2,
"description": "This society is for anybody from the university who has an interest in the Feminist movement. We are an open-minded, political society which holds regular meetings to discuss issues surrounding feminism and the fight for gender/sexual equality, including film screenings, guest speakers, energetic debates, presentations and social meetings.",
"website": "https://twitter.com/SUFemSoc",
"twitter": "",
"facebook": "http://www.facebook.com/groups/sufemsoc/",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Fencing",
"logo": "http://www.susu.org/groups/logos/202_1380559287.jpg",
"zone": 7,
"description": "Described by some as physical chess, fencing is an exhilarating sport that requires both mental and physical agility. We welcome new members of any standard, from complete beginners to experienced, competitive fencers. We run a beginners course every year to teach you the basics and all equipment is provided. The teams are doing well, with several medals at international competitions in recent years. Socials take place regularly. Fencing is a fantastic sport, so why not give it a try?",
"website": "http://www.sotonfencing.co.uk",
"twitter": "",
"facebook": "http://www.facebook.com/groups/122391907787342/files/#!/pages/Southampton-University-Fencing-Club/244713248906032",
"email": "[email protected]",
"type": "Indoor Individual Sports"
}, {
"name": "Fight Against Cancer",
"logo": "http://www.susu.org/groups/logos/388_1380052280.jpg",
"zone": 6,
"description": "Our objective is to raise awareness in the local community concerning the fight against cancer and to fundraise for cancer charities; primarily Cancer Research UK. We do this by holding our own fundraising events, taking part in sponsored activities and volunteering at official Cancer Research UK events in Southampton. Tweet us @SU_FAC",
"website": "http://www.sufac.co.uk",
"twitter": "http://twitter.com/SU_FAC",
"facebook": "http://www.facebook.com/#!/SUFightAgainstCancer",
"email": "[email protected]",
"type": "Political, Social Awareness & Campaigns"
}, {
"name": "Film Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": "This society is for Southampton students who share a common interest in the silver screen and seek a refuge to get geeky over films. Along with socials, screenings and cinema trips this society also organises an annual overseas trip. This year we are hoping to venture to Berlin.Our film fanatic committee will help you with anything you need and are dedicated to making this society the most socially enjoyable and functional group. Whether you're a fresher or not and want to get more involved or have any questions, don't hesitate to drop us an e-mail.'",
"website": "",
"twitter": "",
"facebook": "http://www.facebook.com/groups/19896341120/",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Fish On Toast",
"logo": "http://www.susu.org/groups/logos/66_1381928834.jpg",
"zone": 6,
"description": "We are The University of Southampton's Entrepreneur Society: We aim to promote and encourage entrepreneurship via speakers, events and our incubator programme.Since 2002 the society has been working to nurture and develop the next generation of entrepreneurs by encouraging a culture of innovation, inspiration and collaboration. We pride ourselves on having one of the most ambitious, motivated and creative groups of people as our members. You might not have thought about what you want to do after graduation but that doesn't matter. If you're simply looking for something fun to fill your Thursday evenings or you want to start a business next week, Fish on Toast is for you.We're about getting inspired by each other's enthusiasm and that of our incredible visiting speakers, running our own businesses, and entering sweet competitions whilst stuffing ourselves on free pizza!We are, quite literally, the most inspiring club that you can join at uni. Together we can learn the secrets for business success meet some awesome people and hopefully change the world!",
"website": "http://www.fishontoast.co.uk",
"twitter": "http://twitter.com/www.twitter.com/fishontoast",
"facebook": "http://www.facebook.com/fishontoast",
"email": "[email protected]",
"type": "Enterprise"
}, {
"name": "Folk Music Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 4,
"description": "A place for folk enthusiasts, musicians and dancers to gather, play music, and sometimes dance to gather, make friends, and perform to people within the University and outside. Folksoc is involved in a number of music sessions, ceilidhs , busking, and general performance in the Southampton region",
"website": "http://www.folksocsoton.com",
"twitter": "https://twitter.com/SotonFolkSoc",
"facebook": "https://www.facebook.com/groups/160540653970075/",
"email": "[email protected]",
"type": "Performing Arts"
}, {
"name": "Football (Ladies)",
"logo": "http://www.susu.org/groups/logos/205_1382430686.png",
"zone": 7,
"description": "Southampton University Ladies Football Club is a great club for people who like to meet new people! We have 2 teams and welcome all levels of ability. We have a really fun and outgoing committee and the most important thing about our club is that everyone enjoys it!",
"website": "",
"twitter": "https://twitter.com/SULFC1",
"facebook": "https://www.facebook.com/groups/608790095827998/",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "Football (Mens)",
"logo": "http://www.susu.org/groups/logos/204_1381698401.jpg",
"zone": 7,
"description": "Southampton University Football Club has long been one of the most prestigious and admired setups on the south coast. Playing as hard as they work, club members bleed the famous claret and blue typified by an unforgettable Easter tour. An experienced committee oversee the club to coordinate the goings on and with a UEFA recognised coach in Phil Moody, the three teams have built a reputation for unrivaled tactical awareness and organisation which is set to bring inevitable silverware.",
"website": "http://www.southamptonuniversityfootballclub.com",
"twitter": "",
"facebook": "http://www.facebook.com/groups/122391907787342/files/#!/pages/Southampton-University-Football-Club/146781968689990",
"email": "[email protected]",
"type": "Outdoor Team Sports"
}, {
"name": "French Society",
"logo": "http://www.susu.org/groups/images/nologo.png",
"zone": 5,
"description": "We aim to provide a range of social activities for people studying French and for French native speakers, as well as aiming to involve everyone studying modern languages with big events such as balls. This includes opportunities for students of French to talk to native speakers, French film nights and potentially a trip to a French speaking country. ",
"website": "",
"twitter": "",
"facebook": "https://www.facebook.com/groups/sotonfrensoc/",
"email": "[email protected]",
"type": "Departmental"
}, {
"name": "Games Society",
"logo": "http://www.susu.org/groups/logos/70_1380928142.png",
"zone": 4,
"description": "A relaxed society aiming to provide a place to socialize and play board, card, tabletop war and role playing games with others who share similar interests.",
"website": "http://www.sotongamesoc.com",
"twitter": "",
"facebook": "https://www.facebook.com/groups/2230156853/",
"email": "[email protected]",
"type": "General"