You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: labs/stdio/ascii/README.md
+8-9
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,14 @@ Write a Python program that displays some ASCII arts on to the Console/Terminal
9
9
### Lab Instructions
10
10
11
11
1. Setup GitHub account if not done already; follow instructions in Lab 0
12
-
2. Open your repo folder (CS0Lab-…) in Visual Studio Code
12
+
2. Open your repo folder
13
13
3. Create a lab folder: ascii
14
-
4. Inside ascii folder, create a new file: main.py
14
+
4. In ascii folder, create a new file: main.py
15
15
7. Type the code stub in main.py file as a hint to complete the lab
16
16
8. Never copy-paste code; you’ll not learn anything by doing so!
17
17
9. Type each line of code and use incremental development techniques to learn what the given code does and what happens when you add each line(s) of new code to complete your lab.
18
18
6. Do git add, commit and push as often as possible after every significant improvement or after each fixme is fixed and tested so you are familiar with the git commands, and you have a working backup.
19
-
10. Addfiles to local git repo then commit and push to remote.
19
+
10. Add, and commit files to local git repo then push to remote.
20
20
* $ git add main.py
21
21
* $ git commit -m “create main.py file”
22
22
* $ git push
@@ -29,13 +29,13 @@ a. Note: replace the placeholder < > with actual value/data.
29
29
/ @ @ \ * ASCII Lab * (='.'=)
30
30
( > 0 < ) * <Your Name> * ( " )_( " )
31
31
>>x<< * <Semester Year> *
32
-
/ O \ * CSCI 111 *
32
+
/ O \ * CSCI 110 *
33
33
*****************************
34
34
```
35
35
36
36
Note: The figure on the right (looks like a mouse) uses both single ( ' ) and double quotes ( " ) and you must find a way to print both single and double quotes as shown.
37
37
38
-
12. Create a screenshot of the completed program with the final output displayed on the console and save it inside the same ascii folder. (10 points)
38
+
12. Create a screenshot of the completed program with the final output displayed on the Terminal and save it to the current lab folder. (10 points)
39
39
13. When done, update your README file (10 points) as shown here: https://github.com/rambasnet/csci000-astudent
40
40
14. All FIXMEs are worth equal points unless stated otherwise.
41
41
@@ -46,12 +46,11 @@ Add all the relevant source file(s), documents, and screenshots into the correct
46
46
```bash
47
47
$ git pull
48
48
$ git status
49
-
$ git add <filename>… - add each file in the red that is part of this lab
49
+
$ git add <each file in the red that is part of this lab>
50
50
$ git status
51
-
$ git commit -m “Final Submission”
51
+
$ git commit -m "Final Submission"
52
52
$ git push
53
53
$ git status
54
54
```
55
55
56
-
- Check and make sure the files are actually pushed to your GitHub repo on github.com.
57
-
NOTE: Do not add and commit to this lab folder after the due date as it may be considered late submission!
56
+
- Check and make sure the files are actually pushed to your remote GitHub.
0 commit comments