forked from RGClary/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.php
executable file
·146 lines (145 loc) · 6.81 KB
/
groups.php
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
<!DOCTYPE html>
<html>
<head>
<?php
require('common/head-includes.php');
?>
<title>Groups | Association for Computing Machinery UTSA</title>
</head>
<body>
<?php
require('common/menu.php');
?>
<div id="content" class="container">
<div class="row">
<div class="col-sm-12">
<h1>ACM Groups & Committees</h1>
<p>
</p>
<div class="row section-container group">
<div class="col-sm-12">
<h2>ACM-W</h2>
<p>
ACM-W aims to create an engaging academic, professional, and social network for women and minorities in technology. Our purpose is to connect students with leaders and encourage them to pursue career opportunities in computing fields and to mentor for academic and professional success.
</p>
<!--
<h3>Primary Contacts</h3>
<p>
Bridget Rios, <em>President</em>
<br>
Alifya Musa, <em>Vice-President</em>
</p>
-->
</div>
</div>
<!--
<div class="row section-container group">
<div class="col-sm-12">
<h2>
Web Development
</h2>
<p>
The ACM Web Development group is dedicated to designing, developing, and
publishing the chapter's website and all associated web content. We also
encourage members to develop and work on their own projects.
<br />
For more information, join the <strong>#web-dev</strong> channel on Slack.
</p>
<h3>Meeting Times</h3>
<p>
Mondays from 3:00pm to 4:00pm in NPB 4.140
</p>
<h3>Primary Contacts</h3>
<p>
Andrew Hutton, <em>Media Officer</em>
</p>
</div>
</div>
<div class="row section-container group">
<div class="col-sm-12">
<h2>
Python
</h2>
<p>
The ACM Python group provides a place for members to practice and learn more
about Python. Python is on the command line, on the web, in research; Python
is everywhere.
</p>
<h3>Meeting Times</h3>
<p>
Tuesdays from 2:30pm to 3:30pm in NPB 4.140
</p>
<h3>Primary Contacts</h3>
<p>
Luke Taylor, <em>Social Events Officer</em>
</p>
</div>
</div>
<div class="row section-container group">
<div class="col-sm-12">
<h2>
AI Group
</h2>
<p>
ACM's Artificial Intelligence Group researces and shares new ideas on AI and
machine learning, ranging from neural networks to game development. The group
discusses how to integrate AI into new and old projects and, occasionally, how
to prevent AI from taking over.
</p>
<h3>Meeting Times</h3>
<p>
Wednesdays from 2:00pm to 3:00pm in NPB 4.140
</p>
<h3>Primary Contacts</h3>
<p>
Trase Westbrook, <em>President</em>
</p>
</div>
</div>
-->
<div class="row section-container group">
<div class="col-sm-12">
<h2>
ACM-ICPC
</h2>
<p>
The ACM-ICPC, or International Collegiate Programming Contest, is
a world-wide programming contest where thousands of 3-person teams
compete by solving anywhere from 8 to 12 algorithm problems of varying
difficulty, from easy to extremely hard.
</p>
</div>
</div>
<div class="row section-container group">
<div class="col-sm-12">
<h2>
RowdyHacks Planning
</h2>
<p>
RowdyHacks is UTSA's offical annual hackathon hosted by ACM.
</p>
<p>
Every year, members from ACM get together to help plan and organize RowdyHacks.
It is a great way to get involved and to learn about organizing events. So
whether you are a seasoned veteran, or new to hackathons, everyone is encouraged
to be a part of the planning commitee.
</p>
<p>
For more information reach out to us to see how you can get involved.
</p>
<!--
<h3>Primary Contact</h3>
<p>
Andrew Benett, <em>RowdyHacks Coordinator</em>
</p>
-->
</div>
</div>
</div>
</div>
</div>
<?php
require('common/footer.php');
?>
</body>
</html>