adding all php files

This commit is contained in:
Jidong Xiao
2023-08-28 22:37:14 -04:00
parent 5b78d66809
commit 732df7adb8
27 changed files with 7490 additions and 0 deletions

172
php/index.php Executable file
View File

@@ -0,0 +1,172 @@
<script type="text/javascript">
<!-- Begin
function mailnospam(user, site) {
document.write('<a href=\"mailto:' + user + '@' + site + '\">');
document.write(user + '@' + site + '</a>');
}
function mail_name_nospam(user, site, name) {
document.write('<a href=\"mailto:' + user + '@' + site + '\">');
document.write(name + '</a>');
}
function addrnospam(user, site) {
document.write(user + '@' + site);
}
// End -->
</script>
<?php include 'global_colors.php'; ?>
<style>
.home-selected {
background-color: var(--sidebar-highlight-color);
font-weight: bold;
color: #000000;
}
.home-selected .icon-title {
background-color: var(--sidebar-highlight-color);
font-weight: bold;
color: #000000;
}
</style>
<?php include 'template_before.php'; ?>
<h1>CSCI 1200 Data Structures Fall 2023</h2>
<h2>Instructors</h2>
<b>DS Instructor Mailing List *:</b> <script language="JavaScript">mailnospam("ds_instructors","cs.rpi.edu")</script><br>
<br>
<!--<p class=DS_P>
<h3>Professor Jasmine Plum</h3>
<b>Office:</b> Amos Eaton 205<br>
<b>Hours:</b> Mondays 1-3pm, <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;
immediately after lecture on Tuesdays & Fridays,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;
and by appointment (send email with your complete schedule for the week, appointments are not for help with assignments)
<br>
<b>Webpage:</b> <a href="http://www.cs.rpi.edu/~holzbh/">http://www.cs.rpi.edu/~holzbh/</a>
</p>
<br>-->
<p class=DS_P>
<h3>Dr. Jidong Xiao</h3>
<b>Office:</b> Amos Eaton 206<br>
<!--<b>Phone:</b> (518) 276-3274<br>-->
<b>Hours:</b> Monday 2-3:50pm, <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;
immediately after lecture on Tuesdays & Fridays,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;
and by appointment (send email with your complete schedule for the week, appointments are not for help with assignments)
<br>
<b>Webpage:</b> <a href="http://www.cs.rpi.edu/~xiaoj8/">http://www.cs.rpi.edu/~xiaoj8/</a><br>
<!--<b>Webex:</b> <a href="https://rensselaer.webex.com/rensselaer/j.php?MTID=m45a5f4b016485d047391cc74b4623d0d">https://rensselaer.webex.com/rensselaer/j.php?MTID=m45a5f4b016485d047391cc74b4623d0d</a><br>Webex meeting password: YZmaKAJp323
(Next meeting: 03/26/2023, Sunday 3pm-4pm; HW8 walkthrough)
</p>-->
<br>
<h2>Instructional Support Coordinator: Shianne Hulbert</h2>
<p class=DS_P>
<b>DS Instructor Mailing List *:</b> <script language="JavaScript">mailnospam("ds_instructors","cs.rpi.edu")</script><br>
<b>Email *:</b> <script language="JavaScript">mailnospam("hulbes","rpi.edu")</script><br>
<!--<b>Office:</b> Amos Eaton (AE) 109<br>
<b>Phone:</b> (518) 276-6911<br>-->
<br>
<p class=DS_P>
<b>* For personal/confidential matters:</b>
Please send all emails regarding
DS course policies and administration (e.g, registration, excused
absenses, personal accommodations, etc.) to the DS Instructor Mailing
List, which is received by both the Instructor and the Instructional
Support Coordinator.
<br>
<br>
</p>
<p class=DS_P>
<b>For general course questions:</b>
Please use the
<a href="https://submitty.cs.rpi.edu/courses/f23/csci1200/forum">
Discussion Forum.</a> This allows us to most efficiently
answer questions that other students may also have. Thank you!
<br>
<br>
</p>
<br>
<h2>Graduate Student Teaching Assistants / Course Assistants </h2>
<!--
<p class=DS_P><b>TBA</b></p>
-->
<p class=DS_P>
<b>Conor Flynn</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("flynnc3","rpi.edu")</script><br>
</p>
<br>
<p class=DS_P>
<b>Yuxuan Zhu</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("zhuy27","rpi.edu")</script><br>
</p>
<br>
<p class=DS_P>
<b>Matthew Pisano</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("pisanm2","rpi.edu")</script><br>
</p>
<br>
<p class=DS_P>
<b>Shuhang Tan</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("tans5","rpi.edu")</script><br>
</p>
<br>
<p class=DS_P>
<b>Ron Rattanakornphan</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("rattar","rpi.edu")</script><br>
</p>
<br>
<p class=DS_P>
<b>Kajsa Arnold</b><br>
<b>Email:</b> <script language="JavaScript">mailnospam("arnolk","rpi.edu")</script><br>
</p>
<br>
<br>
<p class=DS_P>&nbsp;</p>
<p class=DS_P>
<em>See the <a href="schedule.php">weekly schedule page</a> for office
hours and check
the <a href="https://submitty.cs.rpi.edu/courses/f23/csci1200/forum">Discussion
Forum</a> for any announcements of changes to the office hours schedule.
</em>
</p>
<p class=DS_P>&nbsp;</p>
<?php include 'template_after.php'; ?>