Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
masiiie committed Aug 25, 2021
0 parents commit abc3c65
Show file tree
Hide file tree
Showing 7 changed files with 763 additions and 0 deletions.
Binary file added Informe.docx
Binary file not shown.
436 changes: 436 additions & 0 deletions README.md

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions media/AI_logo_transparent.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Error response</title>
</head>
<body>
<h1>Error response</h1>
<p>Error code: 404</p>
<p>Message: File not found.</p>
<p>Error code explanation: HTTPStatus.NOT_FOUND - Nothing matches the given URI.</p>
</body>
</html>
Binary file added media/maze.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 92 additions & 0 deletions media/navigation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
#head {
float: left;
width: 100%;
border-bottom: 1px solid black;
background: #666;
position: relative;
}

#logo {
margin-left: 2%;
float: left;
}

#logo_img {
width: 75px;
height: 100px;
}

#title {
float: left;
text-decoration: none;
font: 13px verdana,helvetica,arial,sans-serif;
font-weight: 600;
color: #ddd;
padding-top: 27px;
padding-left: 2%;
}

ul#list-nav {
background: #666;
list-style: none;
border-top:1px solid black;
border-bottom:1px solid black;
border-width:1px 0;
list-style:none;
margin:0;
padding-left: 0px;
}

ul#list-nav li {
padding-left: 6px;
padding-right: 6px;
border-right: 1px solid black;
display: inline;
position: relative;
padding-bottom: 3px;
padding-top: 3px;
}

ul#list-nav li a {
display:inline-block;
text-align: center;
text-decoration: none;
color: #ddd;
padding-top: 5px;
padding-bottom: 5px;
font: 12px verdana,helvetica,arial,sans-serif;
position: relative;
}

ul#list-nav li a:hover {
text-decoration: underline;
}

ul#list-nav li ul {
visibility: hidden;
display: none;
}

ul#list-nav li:hover ul {
visibility: visible;
display: block;
position: absolute;
left: 0;
width: 100%;
margin: 0;
padding: 0;
text-align: center;
}

ul#list-nav li ul li {
border: 1px solid black;
display: block;
width: auto;
padding-top: 1px;
padding-bottom: 1px;
background: #666;
}

ul#list-nav li ul li a {
width: 100%;
}
78 changes: 78 additions & 0 deletions media/navigation.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@

/** This is a really hacky way to load the navigation bar to the main html pages **/

var navbar =
// First, draw the logo image and the title
['<div id="head">',
'<div id="logo">',
'<a href="home.html"><img id="logo_img" src="images/AI_logo_transparent.png" alt="AI_logo" /></a>',
'</div>',
'<div id="title">',
'<h1>UC Berkeley CS188 Intro to AI -- Course Materials</h1>',
'</div>',
'</div>',

// Begin navigation list
'<ul id="list-nav">',

'<li><a href="home.html">Home</a></li>',
'<li><a href="course_schedule.html">Course Schedule</a></li>',

// Lecture Submenu
'<li><a href="lecture_videos.html">Lectures</a>',
'<ul>',
'<li><a href="lecture_videos.html">Videos</a></li>',
'<li><a href="lecture_slides.html">Slides</a></li>',
'</ul>',
'</li>',

// Homework Submenu
'<li><a href="homework.html">Homework</a>',
'<ul>',
'<li><a href="homework.html">Electronic Homework</a></li>',
'<li><a href="section_handouts.html">Section Handouts</a></li>',
'</ul>',
'</li>',

// Project Submenu
'<li><a href="project_overview.html">Pacman Projects</a>',
'<ul>',
"<li><a href='project_overview.html'>Overview</a></li>",
"<li><a href='project_instructions.html'>Instructor's Guide</a></li>",
"<li><a href='tutorial.html'>P0: UNIX/Python Tutorial</a></li>",
"<li><a href='search.html'>P1: Search</a></li>",
"<li><a href='multiagent.html'>P2: Multiagent Search</a></li>",
"<li><a href='reinforcement.html'>P3: Reinforcement Learning</a></li>",
"<li><a href='tracking.html'>P4: Ghostbusters</a></li>",
"<li><a href='classification.html'>P5: Classification</a></li>",
"<li><a href='contest.html'>Contest: Pacman Capture the Flag</a></li>",
"<li><a href='project_log.html'>Project Updates</a></li>",
'</ul>',
'</li>',

// Rest of navigation bar
'<li><a href="exams.html">Exams</a></li>',
//"<li><a href='students_guide.html'>Student's Guide</a></li>", include later

// Instructor's Guide Submenu
"<li><a href='instructors_guide.html'>Instructor's Guide</a>",
'<ul>',
"<li><a href='instructors_guide.html'>Overview</a>",
"<li><a href='course_policies.html'>Course Policies</a></li>",
"</ul>",
"</li>",

"<li><a href='students_guide.html'>Student's Guide</a></li>",

// More AI Courses Submenu
'<li><a href="more_courses_berkeley.html">More AI Courses</a>',
'<ul>',
'<li><a href="more_courses_berkeley.html">At Berkeley</a></li>',
'<li><a href="more_courses_other_schools.html">At Other Schools</a></li>',
'</ul>',
'</li>',

'<li><a href="contact.html">Contact</a></li>',
'</ul>'].join('');

document.write(navbar);
143 changes: 143 additions & 0 deletions media/project.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
body, html{
background: #ddd;
width: 925px;
height:100%;
min-width: 500px;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
}

#content {
background: #fff;
color: #333;
border: 1px solid black;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 30px;
font: 12px verdana,helvetica,arial,sans-serif;
}

h2,h3,h4,h5 {
color: #325B9D;
font-weight: 600;
}

h2 {
font-size: 200%;
}

h3 {
font-size: 160%;
line-height: 90%
margin-top: 30px;
}

h4 {
font-size: 130%;
margin: 20px 0 10px 0;
}

h5 {
font-size: 90%;
}

p {
line-height: 140%;
margin: 20px;
}

.indent {
margin: 20px;
}

.code_snippet {
margin: 20px;
}

pre {
margin: 20px;
}

li p {
margin: 0px;
}

pre {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}

.project_title {
text-align: center;
}

table.intro {
padding: 10px;
}

td {
font: 12px verdana,helvetica,arial,sans-serif;
}

table#syllabus {
padding: 20px;
text-align: center;
}

table#syllabus tbody tr td {
padding-top: 5px;
padding-bottom: 5px;
}

table#syllabus thead tr td {
text-decoration: underline;
}

table#syllabus tbody tr th.slides {
padding-left: 20px;
padding-right: 20px;
}

table#syllabus tbody tr td.slides {
padding-left: 20px;
padding-right: 20px;
}

.api {
padding-left: 20px;
}

table.videos {
width: 90%;
text-align: center;
table-layout:fixed;
}

table.videos tbody tr td.lecture_number {
width: 10%;
}

table.videos tbody tr td.lecture_title {
width: 45%;
}

table.videos tbody tr td.lecturer {
width: 12%;
}

table.videos tbody tr td.notes{
width: 33%;
}

table.section_handouts {
width: 80%;
text-align: center;
}

table.section_handouts tbody tr th.section_number {
width: 15%;
}

0 comments on commit abc3c65

Please sign in to comment.