-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2e42ed4
Showing
172 changed files
with
59,549 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
|
||
<head> | ||
|
||
<meta name="viewport" content="width=device-width" /> | ||
|
||
|
||
<style> | ||
/* Google Fonts */ | ||
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); | ||
|
||
/* Global */ | ||
html { | ||
min-height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
body { | ||
/*height: calc(100vh - 8em);*/ | ||
/*padding: 4em;*/ | ||
color: rgba(255, 255, 255, .75); | ||
font-family: monaco, Consolas, "Lucida Console", monospace; | ||
background-color: rgb(25, 25, 25); | ||
} | ||
|
||
.below-center { | ||
position: absolute; | ||
/*border: 1px solid blue;*/ | ||
width: 300px; | ||
height: 40px; | ||
top: 50%; | ||
left: 50%; | ||
margin-top: 40px; | ||
margin-left: -150px; | ||
text-align: center; | ||
font-size: 14pt; | ||
padding: 0px; | ||
} | ||
|
||
.below-center a { | ||
color: rgba(255, 255, 255, .75); | ||
} | ||
|
||
#python-stuff { | ||
display: block; | ||
} | ||
|
||
@media only screen and (max-width: 600px) { | ||
|
||
/* Styles */ | ||
#python-stuff { | ||
display: none; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="python-stuff"> | ||
<div id="line-1">Python 3.7.4 (default, <span id="datetime">Jul 9 2019, 18:13:23</span>)</div> | ||
<div id="line-2">[Clang 10.0.1 (clang-1001.0.46.4)] on darwin</div> | ||
<div id="line-3">Type "help", "copyright", "credits" or "license" for more information.</div> | ||
<div id="line-4">>>> import cs61a</div> | ||
<div id="line-5">>>> def load_page(url):</div> | ||
<div id="line-6">... try:</div> | ||
<div id="line-7">... page = cs61a.get(url)</div> | ||
<div id="line-8">... page.display()</div> | ||
<div id="line-9">... except:</div> | ||
<div id="line-10">... print("404 Page Not Found")</div> | ||
<div id="line-11">...</div> | ||
<div id="input"> | ||
>>><span id="typedtext"></span> | ||
</div> | ||
</div> | ||
|
||
<div id="output" style="display: none; position:absolute; text-align:center"> | ||
404 Page Not Found | ||
</div> | ||
|
||
<div class="below-center" id="subtitle" style="display:none"><a href="https://cs61a.org">CS 61A Home</a></div> | ||
<noscript> | ||
404 Page Not Found | ||
<style> | ||
#python-stuff { | ||
display: none; | ||
} | ||
</style> | ||
</noscript> | ||
|
||
</body> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> | ||
<script type="text/javascript"> | ||
|
||
// set up text to print, each item in array is new line | ||
var aText = new Array( | ||
'load_page("' + window.location.href + '")' | ||
); | ||
var iSpeed = 50; // time delay of print out | ||
var iArrLength = aText[0].length; // the length of the text array | ||
var iScrollAt = 20; // start scrolling up at this many lines | ||
|
||
var iTextPos = 0; // initialise text position | ||
var sContents = ''; // initialise contents variable | ||
|
||
var doneWriting = 0; | ||
function finished() { | ||
document.getElementById("output").style.display = "block"; | ||
|
||
$("#output").delay(100).animate({ | ||
position: "absolute", | ||
width: "400px", | ||
height: "40px", | ||
top: "50%", | ||
left: "50%", | ||
marginTop: "-20px", | ||
marginLeft: "-200px", | ||
textAlign: "center", | ||
fontSize: "25pt" | ||
}, 2000, function () { document.getElementById("subtitle").style.display = "block"; }); | ||
|
||
} | ||
|
||
function typewriter() { | ||
sContents = ' '; | ||
var destination = document.getElementById("typedtext"); | ||
|
||
destination.innerHTML = sContents + aText[0].substring(0, iTextPos) + "_"; | ||
if (iTextPos++ == iArrLength || $("#python-stuff").css("display") == "none") { | ||
destination.innerHTML = destination.innerHTML.substring(0, destination.innerHTML.length - 1); | ||
setTimeout("finished()", iSpeed); | ||
} else { | ||
setTimeout("typewriter()", iSpeed); | ||
} | ||
} | ||
|
||
typewriter(); | ||
|
||
</script> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name="description" content ="CS 61A: Structure and Interpretation of Computer Programs" /> | ||
<meta name="keywords" content ="CS 61A, Computer Science, CS, 61A, Programming, John DeNero, Berkeley, EECS" /> | ||
<meta name="author" content ="John DeNero, Jedi Tsang, Shm Almeda" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
<meta name="viewport" content="width=device-width"> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-throttle-debounce/1.1/jquery.ba-throttle-debounce.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
<script src="/assets/js/hl.js"></script> | ||
<script src="/assets/js/toggledarkmode.js"></script> | ||
<script> | ||
// we aren't registering builtins since | ||
// (1) they don't render differently in the current CSS from other names | ||
// (2) it's a mess to list all of them. You can extract from the site but that takes effort | ||
// if (1) ceases to be true, (2) might be worth the effort. For now, we're leaving as is | ||
hljsRegister({ | ||
'keyword': "define if cond and or let begin lambda mu quote delay cons-stream set! quasiquote unquote unquote-splicing define-macro" | ||
}); | ||
hljs.initHighlightingOnLoad(); | ||
</script> | ||
<script src="/assets/js/dark-mode.js"></script> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata|Roboto:300,400,500|Work+Sans:400,700"> | ||
<link rel="stylesheet" href="/assets/css/style.css"> | ||
<link rel="stylesheet" href="/assets/css/mono-blue.css"> | ||
<link rel="icon" href="/assets/images/favicon.ico"> | ||
|
||
|
||
|
||
<title> | ||
Academic Interns | CS 61A Fall 2024 | ||
</title> | ||
</head> | ||
|
||
<body id="index" class="home"> | ||
<nav class="navbar navbar-default navbar-static-top"> | ||
<div class="container noselect"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-section"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="/"> | ||
Data C88C | ||
<!-- <img style="max-width:60px; margin-top: -20px;" class="logo" src="/assets/images/logo.png"/> --> | ||
</a> | ||
</div> | ||
|
||
<div class="collapse navbar-collapse" id="navbar-collapse-section"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
|
||
|
||
<li><a href="/articles/about-c88c/">Syllabus</a></li> | ||
|
||
<li><a href="https://edstem.org/us/courses/63975/discussion/">Ed</a></li> | ||
|
||
<li><a href="/office-hours/">Office Hours</a></li> | ||
|
||
|
||
|
||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Links | ||
<span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> | ||
|
||
<li><a href="https://go.cs61a.org/c88c-extensions">Request an Extension</a></li> | ||
|
||
<li><a href="https://go.cs61a.org/c88c-regrades">Request a Regrade</a></li> | ||
|
||
<li><a href="https://oh.c88c.org/">Office Hours Queue</a></li> | ||
|
||
<li><a href="">Gradescope</a></li> | ||
|
||
<li><a href="https://bcourses.berkeley.edu/courses/1538122/pages">Lecture Recordings</a></li> | ||
|
||
<li><a href="https://pythontutor.com/cp/composingprograms.html">Python Tutor</a></li> | ||
|
||
</ul> | ||
</li> | ||
|
||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Resources | ||
<span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> | ||
|
||
<li><a href="https://www.composingprograms.com">Textbook</a></li> | ||
|
||
<li><a href="https://drive.google.com/file/d/1O72u0ml65pibcjz-PXKpqeJDKaVqQ3D8/view">Debugging Guide</a></li> | ||
|
||
<li><a href="/articles/studying/">Studying Guide</a></li> | ||
|
||
<li><a href="/articles/composition/">Composition Guide</a></li> | ||
|
||
<li><a href="/articles/campus-res/">Campus Resources</a></li> | ||
|
||
</ul> | ||
</li> | ||
|
||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Staff | ||
<span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> | ||
|
||
<li><a href="/instructors">Instructors</a></li> | ||
|
||
<li><a href="/staff">TAs & Tutors</a></li> | ||
|
||
<li><a href="/articles/contact-c88c/">Contact</a></li> | ||
|
||
</ul> | ||
</li> | ||
|
||
|
||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<main id="content" class="container"> | ||
|
||
<header> | ||
<h1>Meet the Academic Interns</h1> | ||
</header> | ||
|
||
<p>Academic interns help students in lab sections.</p> | ||
|
||
|
||
|
||
|
||
|
||
</main> | ||
|
||
<!-- <footer class="container"> | ||
<div class="row text-center"> | ||
<div class="col col-sm-4"> | ||
<h3><a href="/">CS 61A</a></h3> | ||
<ul class="nav nav-pills nav-stacked"> | ||
<li><a href="/weekly">Weekly Schedule</a></li> | ||
<li><a href="/office-hours">Office Hours</a></li> | ||
<li><a href="/staff">Staff</a></li> | ||
</ul> | ||
</div> | ||
<div class="col col-sm-4"> | ||
<h3><a href="/resources">Resources</a></h3> | ||
<ul class="nav nav-pills nav-stacked"> | ||
<li><a href="/articles/studying">Studying Guide</a></li> | ||
<li><a href="/articles/debugging">Debugging Guide</a></li> | ||
<li><a href="/articles/composition">Composition Guide</a></li> | ||
<li><a href="/articles/pair-programming">Pair Programming</a></li> | ||
</ul> | ||
</div> | ||
<div class="col col-sm-4"> | ||
<h3><a href="/articles/about">Policies</a></h3> | ||
<ul class="nav nav-pills nav-stacked"> | ||
<li><a href="/articles/about#assignments">Assignments</a></li> | ||
<li><a href="/articles/about#exams">Exams</a></li> | ||
<li><a href="/articles/about#grading">Grading</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</footer> --> | ||
|
||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs/loader.min.js"></script> | ||
<link rel="stylesheet" data-name="vs/editor/editor.main" href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs/editor/editor.main.min.css"> | ||
<script> | ||
require.config({ paths: { 'vs': 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs' }}); | ||
window.MonacoEnvironment = { getWorkerUrl: () => URL.createObjectURL(new Blob([` | ||
self.MonacoEnvironment = { | ||
baseUrl: 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min' | ||
}; | ||
importScripts('https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.20.0/min/vs/base/worker/workerMain.min.js'); | ||
`], { type: 'text/javascript' })) | ||
}; | ||
</script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsPlumb/2.15.5/js/jsplumb.min.js"></script> | ||
<script src="/assets/js/network_storage.js"></script> | ||
<script src="/assets/js/storable.js"></script> | ||
<script src="/assets/js/editor.js"></script> | ||
<script src="/assets/js/copy-button.js"></script> | ||
<script src="/assets/js/env-diagram.js"></script> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.