Skip to content

Commit 1824eb0

Browse files
committed
update ascii README
1 parent c775bcd commit 1824eb0

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

labs/stdio/ascii/README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Write a Python program that displays some ASCII arts on to the Console/Terminal
99
### Lab Instructions
1010

1111
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
1313
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
1515
7. Type the code stub in main.py file as a hint to complete the lab
1616
8. Never copy-paste code; you’ll not learn anything by doing so!
1717
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.
1818
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. Add files to local git repo then commit and push to remote.
19+
10. Add, and commit files to local git repo then push to remote.
2020
* $ git add main.py
2121
* $ git commit -m “create main.py file”
2222
* $ git push
@@ -29,13 +29,13 @@ a. Note: replace the placeholder < > with actual value/data.
2929
/ @ @ \ * ASCII Lab * (='.'=)
3030
( > 0 < ) * <Your Name> * ( " )_( " )
3131
>>x<< * <Semester Year> *
32-
/ O \ * CSCI 111 *
32+
/ O \ * CSCI 110 *
3333
*****************************
3434
```
3535

3636
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.
3737

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)
3939
13. When done, update your README file (10 points) as shown here: https://github.com/rambasnet/csci000-astudent
4040
14. All FIXMEs are worth equal points unless stated otherwise.
4141

@@ -46,12 +46,11 @@ Add all the relevant source file(s), documents, and screenshots into the correct
4646
```bash
4747
$ git pull
4848
$ 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>
5050
$ git status
51-
$ git commit -m Final Submission
51+
$ git commit -m "Final Submission"
5252
$ git push
5353
$ git status
5454
```
5555

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

Comments
 (0)