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

154
php/getting_help.php Executable file
View File

@@ -0,0 +1,154 @@
<?php include 'global_colors.php'; ?>
<style>
.getting-help-selected {
background-color: var(--sidebar-highlight-color);
font-weight: bold;
color: #000000;
}
.getting-help-selected .icon-title {
background-color: var(--sidebar-highlight-color);
font-weight: bold;
color: #000000;
}
</style>
<?php include 'template_before.php'; ?>
<table>
<tr>
<td class="left-sidebox">
<h1>Getting Help</h1>
</td>
<td class="right-sidebox">
<div id="side-nav-buttons" class="my_sidebox">
<ul class="sidebox">
<li><a href="getting_help.php" class="nav-row getting-help-selected sidebox">Getting Help: Online Discussion, Office Hours, & Tutoring</a></li>
<li><a href="references.php" class="nav-row">References: Textbooks & Web Resources</a></li>
<li><a href="advice_S14.php" class="nav-row">Advice from Spring 2014 Data Structures Students</a></li>
<li><a href="advice_F11.php" class="nav-row">Advice from Fall 2011 Data Structures Students</a></li>
</ul>
</div>
</td>
</table>
<p class=DS_P>
Your work on the homeworks and the labs for this course should be
completed on your own, following the
<a href="academic_integrity.php">Collaboration Policy</a>. However,
you are encouraged to ask lots of questions about the material when
you get stuck. Please ask your instructor, graduate TAs,
undergraduate lab programming mentors, and fellow classmates for
help. </p>
<p class=DS_P>
Don't be shy or worried if you can't always figure things out all
on your own. <em>Please ask for help.</em> We're happy to give
you hints, programming tips, and guide you through debugging.
</p>
<ul class=DS_UL>
<li class=DS_LI> <p class=DS_P> <a href="advice_TAs.php">Programming Advice from the TAs</a><br>
Helpful hints about problem solving, debugging, compiling, C++, and
good programming & commenting style. This advice will help you program and debug
effectively and efficiently and ensure you earn maximum credit for your hard work. </p>
<li class=DS_LI>
<p class=DS_P>
See also: <a href="advice_S14.php">Advice from former Data Structures students</a>
</p>
</ul>
<h2>Submitty Discussion Forum</h2>
<p class=DS_P>
Post your questions about homework and general questions on the
Submitty <a href="https://submitty.cs.rpi.edu/courses/f23/csci1200/forum">Discussion Forum</a>. The TAs, instructor, and other students will help answer
your questions. Be sure not to post partial or full solutions to the
lab or homework problems when asking your questions or answering a
classmate's question. Posting a line or two of code that is causing a
compiler syntax error is ok.
</p>
<p class=DS_P>If you registered at least a week before the first day
of classes, you should be automatically added to Submitty, you will
use your RPI RCS username & password to log in. Contact the
instructor if you cannot access Submitty.
</p>
<h2>Instructor & TA Office Hours</h2>
<p class=DS_P>
A very important resource for help outside of class are the instructor
and TA office hours. You may attend the office hours of any other TA
(not just your lab TA) for questions about the course material or the
homework. If you have questions about the grading of your homework,
please see the TA who graded your assignment during their regular
office hours or make an appointment.
</p>
<ul class=DS_UL>
<li class=DS_LI>
<p class=DS_P> <a href="schedule.php">Weekly Office Hours Schedule</a>
<br> Office hours get very busy as the deadline approaches. Start the
homework early and take advantage of the less crowded office hours
early in the week.
</p>
<li class=DS_LI>
<p class=DS_P>
<a href="index.php">Instructor & TA Contact Information</a>
<br>
Short questions about confidential matters over email are ok. But
please come see us in office hours for more involved
questions. <em>Please do not email your homework assignment to the
instructor or TAs.</em> We can login and view your submitted homework
files if you encounter a problem at submission time and have a short
question related to homework submission.
</p>
</ul>
<h2>Additional Tutoring</h2>
<p class=DS_P>
In addition to the Instructor and TA Office Hours for the course, you
may also want to check out:
<ul class=DS_UL> <li class=DS_LI>
<p class=DS_P>
<a href="https://info.rpi.edu/advising-learning-assistance/learning-assistance/#TutoringServices">
Advising & Learning Assistance Center (ALAC) Drop in Tutoring </a>
<br>Drop in Tutoring is staffed by upperclass Computer Science majors.
Note that Drop in Tutoring tends to get busy and crowded on Wednesday
and Thursday nights before a homework deadline.
</p><p class=DS_P>
ALAC can also connect you with upperclass students available to
serve as one-on-one private tutors (generally for pay). </p>
</p>
<li class=DS_LI>
<p class=DS_P>
<a href="https://www.cs.rpi.edu/~upe/tutoring.html">RPI's chapter of Upsilon Pi
Epsilon (UPE)</a> offers CS tutoring to undergraduates.
</p>
</ul>
<p class=DS_P>
<b><em>
Be sure to click through the other pages linked in the upper right
menu.
</em></b>
</p>
<?php include 'template_after.php'; ?>