Skip to content

Commit 06a193a

Browse files
committed
add --all
1 parent b2771bd commit 06a193a

30 files changed

+1274
-33
lines changed

#index.md#

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div id="posts">
6+
<ul class="post-list">
7+
{% for post in site.posts %}
8+
<li>
9+
<h4>
10+
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
11+
</h4>
12+
</li>
13+
{% endfor %}
14+
</ul>
15+
</div>

Demos.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

_config.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
# Site settings
22
title: CSE103 Fall 2014
3-
4-
description: > # this means to ignore newlines until "baseurl:"
5-
Write an awesome description for your new site here. You can edit this
6-
line in _config.yml. It will appear in your document head meta (for
7-
Google search results) and in your feed.xml site description.
8-
baseurl: "" # the subpath of your site, e.g. /blog/
3+
4+
95
url: "http://cse103.github.io" # the base hostname & protocol for your site
106

7+
defaults:
8+
-
9+
scope:
10+
path: ""
11+
type: "pages"
12+
values:
13+
layout: "default"
14+
-
15+
scope:
16+
path: ""
17+
type: "posts"
18+
values:
19+
layout: "post"
20+
1121
# Build settings
1222
markdown: redcarpet
1323
redcarpet:

_includes/header.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
2121
{% endif %}
2222
{% endfor %}
23-
<li><a href="https://piazza.com/ucsd/fall2014/cse103/">Piazza</a></li>
24-
<li><a href="http://webwork.cse.ucsd.edu/webwork2">Webwork</a></li>
25-
<li><a href="http://nb.mit.edu/f/16559">Textbook</a></li>
2623
</ul>
2724
</div>
2825
</div>

_includes/nav.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<li><a href="{{ "/class_plan/" | prepend:site.baseurl }}">Course Plan</a></li>
2+
<li><a href="{{ "/about/" | prepend:site.baseurl }}">Course Staff</a></li>
3+
<li><a href="{{ "/startup/" | prepend:site.baseurl }}">Startup directions</a></li>
4+
<li><a href="{{ "/resources/" | prepend:site.baseurl }}">Resources</a></li>
5+
<li><a href="{{ "/cheat_sheets/" | prepend:site.baseurl }}">Cheat Sheets</a></li>
6+
<li><a href="{{ "/notebooks/" | prepend:site.baseurl }}">Notebooks</a></li>

_site.old/2014/09/01/web-pages.html

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8'>
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta name="description" content="CSE103 Fall 2014 : UCSD CSE103 - A Practical Introduction to Probability and Statistics">
8+
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
9+
<link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/stylesheet.css">
10+
<!-- Latest compiled and minified CSS -->
11+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
12+
13+
<!-- Optional theme -->
14+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
15+
16+
<!-- Latest compiled and minified JavaScript -->
17+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
18+
19+
<title>Web Resources</title>
20+
</head>
21+
22+
<body>
23+
24+
<!-- HEADER -->
25+
<nav class="navbar navbar-default" role="navigation">
26+
<div class="container-fluid">
27+
<!-- Brand and toggle get grouped for better mobile display -->
28+
<div class="navbar-header">
29+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#example-navbar-collapse-1">
30+
<span class="sr-only">Toggle navigation</span>
31+
<span class="icon-bar"></span>
32+
<span class="icon-bar"></span>
33+
<span class="icon-bar"></span>
34+
</button>
35+
<a class="navbar-brand" href="/">CSE103</a>
36+
</div>
37+
38+
<!-- Collect the nav links, forms, and other content for toggling -->
39+
<div class="collapse navbar-collapse" id="example-navbar-collapse-1">
40+
<ul class="nav navbar-nav">
41+
42+
43+
<li><a href="/Curriculum/">Curriculum</a></li>
44+
45+
46+
47+
<li><a href="/Coordinates/">Coordinates</a></li>
48+
49+
50+
51+
52+
53+
<li><a href="/Todo/">Todo</a></li>
54+
55+
56+
<li><a href="https://piazza.com/ucsd/fall2014/cse103/">Piazza</a></li>
57+
<li><a href="http://webwork.cse.ucsd.edu/webwork2">Webwork</a></li>
58+
<li><a href="https://github.com/yoavfreund/ProbStatBook/raw/master/ProbabilityStatistics.pdf">Textbook</a></li>
59+
</ul>
60+
</div>
61+
</div>
62+
</nav>
63+
64+
<div id="header_wrap" class="outer">
65+
<header class="inner">
66+
<h1 id="project_title"><a href="/">CSE103 Fall 2014</a></h1>
67+
<h2 id="project_tagline">A Practical Introduction to Probability and Statistics</h2>
68+
</header>
69+
</div>
70+
71+
<!-- MAIN CONTENT -->
72+
<div class="container">
73+
<div class="row">
74+
<div id="main_content_wrap" class="col-md-9">
75+
<ol>
76+
<li>Static information and general announcements: This site.</li>
77+
<li>Homework assignments: Webwork</li>
78+
<li>Questions and discussion: Piazza</li>
79+
</ol>
80+
81+
</div>
82+
<div class="col-md-3">
83+
<ul class="nav nav-stacked" id="side_nav">
84+
</ul>
85+
</div>
86+
</div>
87+
</div>
88+
89+
<!-- FOOTER -->
90+
<div id="footer_wrap" class="outer">
91+
<footer class="inner">
92+
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
93+
</footer>
94+
</div>
95+
96+
97+
</body>
98+
</html>

_site.old/CatalogueDescription.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CSE 103. A Practical Introduction to Probability and Statistics (4)
2+
Distributions over the real line. Independence, expectation, conditional expectation, mean, variance. Hypothesis testing. Learning classifiers. Distributions over R^n, covariance matrix. Binomial, Poisson distributions. Chernoff bound. Entropy. Compression. Arithmetic coding. Maximal likelihood estimation. Bayesian estimation. CSE 103 is not duplicate credit for ECE 109, Econ 120A, or Math 183. Prerequisites: Math 20A and Math 20B.

_site.old/Coordinates/index.html

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8'>
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
7+
<meta name="description" content="CSE103 Fall 2014 : UCSD CSE103 - A Practical Introduction to Probability and Statistics">
8+
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
9+
<link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/stylesheet.css">
10+
<!-- Latest compiled and minified CSS -->
11+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
12+
13+
<!-- Optional theme -->
14+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
15+
16+
<!-- Latest compiled and minified JavaScript -->
17+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
18+
19+
<title>Coordinates</title>
20+
</head>
21+
22+
<body>
23+
24+
<!-- HEADER -->
25+
<nav class="navbar navbar-default" role="navigation">
26+
<div class="container-fluid">
27+
<!-- Brand and toggle get grouped for better mobile display -->
28+
<div class="navbar-header">
29+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#example-navbar-collapse-1">
30+
<span class="sr-only">Toggle navigation</span>
31+
<span class="icon-bar"></span>
32+
<span class="icon-bar"></span>
33+
<span class="icon-bar"></span>
34+
</button>
35+
<a class="navbar-brand" href="/">CSE103</a>
36+
</div>
37+
38+
<!-- Collect the nav links, forms, and other content for toggling -->
39+
<div class="collapse navbar-collapse" id="example-navbar-collapse-1">
40+
<ul class="nav navbar-nav">
41+
42+
43+
<li><a href="/Curriculum/">Curriculum</a></li>
44+
45+
46+
47+
<li><a href="/Coordinates/">Coordinates</a></li>
48+
49+
50+
51+
52+
53+
<li><a href="/Todo/">Todo</a></li>
54+
55+
56+
<li><a href="https://piazza.com/ucsd/fall2014/cse103/">Piazza</a></li>
57+
<li><a href="http://webwork.cse.ucsd.edu/webwork2">Webwork</a></li>
58+
<li><a href="https://github.com/yoavfreund/ProbStatBook/raw/master/ProbabilityStatistics.pdf">Textbook</a></li>
59+
</ul>
60+
</div>
61+
</div>
62+
</nav>
63+
64+
<div id="header_wrap" class="outer">
65+
<header class="inner">
66+
<h1 id="project_title"><a href="/">CSE103 Fall 2014</a></h1>
67+
<h2 id="project_tagline">A Practical Introduction to Probability and Statistics</h2>
68+
</header>
69+
</div>
70+
71+
<!-- MAIN CONTENT -->
72+
<div class="container">
73+
<div class="row">
74+
<div id="main_content_wrap" class="col-md-9">
75+
<h2>Instruction Staff</h2>
76+
77+
<p>| | | | Office hours | Office Hours Location |
78+
|-----------------|:--------------|-------------------------|---------------------|----------------------------|
79+
| <strong>Instructor:</strong> | Yoav Freund | <img src="images/2010yoav2.png" alt=""> | Tuesday 10AM - Noon.| Office #4126 CSE buiding |</p>
80+
81+
<ul>
82+
<li><em>Teaching Assistants</em>:
83+
84+
<ul>
85+
<li>Akshay
86+
87+
<ul>
88+
<li>Office Hours: FILLIN</li>
89+
</ul></li>
90+
<li>Ibrahim
91+
92+
<ul>
93+
<li>Office Hours: FILLIN</li>
94+
</ul></li>
95+
</ul></li>
96+
<li>Tutors:
97+
98+
<ul>
99+
<li>TBD</li>
100+
</ul></li>
101+
</ul>
102+
103+
<p>To contact the teaching staff send a private message through Piazza (link)</p>
104+
105+
<hr>
106+
107+
<h2>Classrooms</h2>
108+
109+
<ul>
110+
<li>Class:
111+
112+
<ul>
113+
<li><strong>location:</strong> Center 215</li>
114+
<li><strong>Times:</strong> Mon, Wed, Fri 2-2:50pm</li>
115+
</ul></li>
116+
<li>Sections:
117+
118+
<ul>
119+
<li><strong>Section 1 :</strong> Mon: 5:00 - 5:50pm <em>Location:</em> CENTR 119
120+
<em>Instructor:</em> TBD</li>
121+
<li><strong>Section 2 :</strong> Fri 9:00 - 9:50am <em>Location:</em> CENTR TBD
122+
<em>Instructor:</em> TBD</li>
123+
</ul></li>
124+
</ul>
125+
126+
</div>
127+
<div class="col-md-3">
128+
<ul class="nav nav-stacked" id="side_nav">
129+
</ul>
130+
</div>
131+
</div>
132+
</div>
133+
134+
<!-- FOOTER -->
135+
<div id="footer_wrap" class="outer">
136+
<footer class="inner">
137+
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
138+
</footer>
139+
</div>
140+
141+
142+
</body>
143+
</html>

0 commit comments

Comments
 (0)