Skip to content

Commit bcf4b24

Browse files
committed
cleanup
1 parent 026e185 commit bcf4b24

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

README.md

+8-13
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ http://tinypythonprojects.com/
99
There is a directory for each chapter of the book.
1010
Each directory contains a `test.py` program you can use with `pytest` to check that you have written the program correctly.
1111
I have included a short README to describe each exercise.
12-
If you have problems writing code (or if you would like to support this project!), the book contains details about the skills you need.
12+
If you have problems writing code, see my book for the skills you need.
1313

14-
The testing step is integral to writing and solving these challenges as well as to the methodology of the book.
15-
I advocate a "test-driven development" mentality where we write tests _before_ we write code.
16-
The tests should define what it means for a program to be correct, and then we write programs to satisfy the tests.
14+
Testing is integral to writing and solving these challenges as well as to the methodology of the book.
15+
I advocate for "test-driven development" where you write tests _before_ you write code.
16+
The tests should define what it means for a program to be correct, and then you write programs to satisfy the tests.
1717
In this project, I've written all the tests for you, but I also encourage you to write your own functions and tests.
1818
You should run the test suite after every change to your program to ensure you are making progress!
1919

2020
# Videos
2121

22-
I've been making videos for each chapter on my YouTube channel:
22+
I made videos for each chapter on my YouTube channel:
2323

2424
https://www.youtube.com/user/kyclark
2525

@@ -61,14 +61,9 @@ Here are the videos I've completed so far:
6161

6262
# Forking GitHub repo
6363

64-
First use the GitHub interface to "fork" this repository into your own account. Then do `git clone` of *your* repository to get a local copy. Inside that checkout, do:
65-
66-
````
67-
git remote add upstream https://github.com/kyclark/tiny_python_projects.git
68-
````
69-
70-
This will allow you to `git pull upstream master` in order to get updates. When you create new files, `git add/commit/push` them to *your* repository. (Please do not create pull requests on *my* repository -- unless, of course, you have suggestions for improving my repo!).
64+
If you like, you can use the GitHub interface to _fork_ this repository into your own account.
65+
Then do `git clone` of *your* repository to get a local copy.
7166

7267
# Copyright
7368

74-
© Ken Youens-Clark 2019-2020
69+
© Ken Youens-Clark 2019-2024

0 commit comments

Comments
 (0)