Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eeue56/make-a-murder
A test driven guide to making your own "command line murder mystery"
https://github.com/eeue56/make-a-murder
Last synced: about 1 month ago
JSON representation
A test driven guide to making your own "command line murder mystery"
- Host: GitHub
- URL: https://github.com/eeue56/make-a-murder
- Owner: eeue56
- License: bsd-2-clause
- Created: 2015-03-03T21:11:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-03T21:29:45.000Z (almost 10 years ago)
- Last Synced: 2024-05-21T12:33:40.162Z (8 months ago)
- Language: Python
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# make-a-murder
A test driven guide to making your own "command line murder mystery"| Difficulty | Task |
| ------------- | ------------- |
| +1 | Print a new name to stdout |
| +1 | Write the name to a file called “new_life.txt” |
| +10 | Generate the new name at random from an array of names |
| +10 | Take two filenames as arguments, first_names and last_names. Use these files to generate a new random name each time the script is run. |
| +5 | Take the user’s name as an argument. Generate a fake name with same initials |
| +5 | Allow all of the previous to be done through the use of flags |
| +10 | Generate the new name as an anagram of the old name |