-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsep26.html
More file actions
109 lines (98 loc) · 6.71 KB
/
Copy pathsep26.html
File metadata and controls
109 lines (98 loc) · 6.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Jekyll v3.8.5">
<title>CSVAD MAT 594X | CMPSC 291I </title>
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="css/cover.css" rel="stylesheet">
</head>
<body>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-40">
<div class="inner">
<h3 class="masthead-brand">CSVAD</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="index.html">Syllabus</a>
<!--<a class="nav-link" href="#">Readings</a>-->
<a class="nav-link" href="code_of_conduct.html">Code of Conduct</a>
<a class="nav-link" href="https://github.com/CSVAD">Class Github</a>
<!--<a class="nav-link" href="#">Resources</a>-->
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h4>September 26</h4>
<h5>Class Overview</h5>
<ul>
<li>Welcome and Introduction</li>
<li>Review of <a href="index.html">Syllabus</a> and <a href="code_of_conduct.html">Code of Conduct</a></li>
<li><a href="http://thesystemis.com/">Zach Lieberman's</a> Question Excercise: What questions brought you to the room? Technical? Philosophical? Practical? Impractical? Big Picture? Little Picture?</li>
<li>Introduction to <a href="https://processing.org/">Processing</a> and <a href="https://git-scm.com/">Git</a>/<a href="https://github.com/about">Github</a></li>
</ul>
<h5>Assignments</h5>
<ul class="list-unstyled">
<li><h5>Create a personal Github Repository on the course Github Organization.</h5>
<ol>
<li>Fill out the course survey here: <a href="https://docs.google.com/forms/d/e/1FAIpQLSf9XwS84rpwCq5Gu1DhhTQGk-YBMN0Tumm2oVONq4Lw8dfGUA/viewform?usp=sf_link">course registration survey</a></li>
<li>Wait for an invitation to the course github organization from me. Note- if you currently have a github account, you will recieve an invite to that account. If you do not, you will recieve an invite through the email you provided on the survey. You will then have to register with github in order to join the organization.</li>
<li>Wait for an invitation to the <a href="https://github.com/CSVAD">course github organization</a>from me. Note- if you currently have a github account, you will recieve an invite to that account. If you do not, you will recieve an invite through the email you provided on the survey. You will then have to register with github in order to join the organization.</li>
<li>Once you recieve an invite, <a href="https://github.com/organizations/CSVAD/repositories/new">create a new repository on the github organization.</a> Use your first name (no spaces) as the repository name. Do not initialize a README, add a gitignore, or a license.</li>
<li>Open the <a href="https://github.com/CSVAD/student_sample">student_sample repository</a>. This is a template I've created to help you setup your own repository. Download a zipped copy of the repository to your computer, unzip it and save it somewhere that is not your Downloads folder. You might also want to rename the directory.</li>
<li>Open the README.md file and edit it with your personal information. You can use any code-oriented text editor to do this. I prefer <a href="https://www.sublimetext.com/">Sublime.</a></li> Do not use textEdit.
<li>Open the command-line application on your computer. Terminal on Mac and Linux, Command Prompt on Windows</li>
<li> cd into the directory.</li>
<li> Initialize a git repository with: "git init"</li>
<li> Add all the current files in the directory: "git add --all"</li>
<li> Make your first commit: "git commit -m "<add a commit message>"</li>
<li> Setup your remote to point to the repository you created with your name: "git commit -m "git remote add origin https://github.com/CSVAD/<your repository name>.git"</li>
<li>Push your changes to the remote: "git push -u origin master"</li>
</ol>
<li><h5>Draw a face with code/ draw a face by hand.</h5>
<ol>
<li><a href = "https://processing.org/tutorials/gettingstarted/">Install the Processing programming environment.</a></li>
<li>Create a new sketch in Processing, or open the example sketch from the projects folder/week 1 in your local github directory.</li>
<li>Using only basic 2D primitive (ellipse, circle, rect, square, triangle) and style methods (background, fill, stroke, strokeWeight), draw a basic face. Only use the methods listed under 2D Primitives and Color in the <a href="https://processing.org/reference/">Processing Reference. No loops, conditionals, functions, etc.</a></li>
<li>Once you've gotten the hang of Processing, spend about <b>15-20 minutes</b> making your face. This should be fast!</li>
<li>Save your face sketch and a <b>screenshot of the compiled result</b> in your course directory under projects/week1</li>
<li>Create another face, but with pencil and paper (or in a digital editing tool of your choice- ie. Photoshop, Illustrator, GIMP, Inkscape, etc.) Spend no more than 15-20 minutes on this. Don't overthink it!</li>
<li>Save a .jpg or .png of your hand-drawn face in the projects/week1 folder. If you drew it on paper, take a photo or scan it.</li>
<li>Commit your changes and push to your remote repository</li>
<li>Open your command line and cd into the directory.</li>
<li> Add all the current files in the directory: "git add --all"</li>
<li>commit: "git commit -m "<add a commit message>"</li>
<li>Push your changes to the remote: "git push -u origin master"</li>
</ol>
<li><h5>Reading and Reflection</h5>
<a href = "readings/abstracting_craft_symbols.pdf">Symbols from Abstracting Craft by Malcolm McCullough</a></li>
<a href = "readings/Reichardt_Jasia_1971_Cybernetics_Art_and_Ideas_introduction.pdf">Cybernetics, art and ideas: Introduction by Jasia Reichardt</a></li>
</ul>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Cover template for <a href="https://getbootstrap.com/">Bootstrap</a>, by <a href="https://twitter.com/mdo">@mdo</a>.</p>
</div>
</footer>
</div>
</body>
</html>