-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
192 lines (128 loc) · 3.72 KB
/
Makefile
File metadata and controls
192 lines (128 loc) · 3.72 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
.PHONY: clean install
clean:
pip uninstall colterm caesarcode sevseg -y
install:
pip install ./colterm ./caesarcode ./sevseg
colterm: ./colterm/setup.py ./colterm/colterm/term.py ./colterm/colterm/__init__.py
pip install ./colterm -U --use-pep517
caesarcode: ./caesarcode/setup.py ./caesarcode/caesarcode/caesarcode.py ./caesarcode/caesarcode/__init__.py
pip install ./caesarcode -U
sevseg: ./sevseg/setup.py ./sevseg/sevseg/sevseg.py ./sevseg/sevseg/__init__.py
pip install ./sevseg -U
requirements: requirements.txt
pip install -r requirements.txt
update: colterm sevseg caesarcode requirements
dicemath:
python -m small_projects.17_dice_math
diceroller:
python -m small_projects.18_dice_roller
digitalclock:
python -m small_projects.19_digital_clock
digitalstream:
python -m small_projects.20_digital_stream
montyhall:
python -m small_projects.48_monty_hall
dna:
python -m small_projects.21_dna
ducklings:
python -m small_projects.22_ducklings
etching:
python -m small_projects.23_etching_drawer
factorfinder:
python -m small_projects.24_factor_finder
fastdraw:
python -m small_projects.25_fast_draw
fibonacci:
python -m small_projects.26_fibonacci
periodictable:
python -m small_projects.53_periodic_table_of_elements
rot13:
python -m small_projects.61_rot13
vigenere:
python -m small_projects.80_vigenere
simplecode:
python -m small_projects.66_simple_substitution_cipher
piglatin:
python -m small_projects.54_pig_latin
spongecase:
python -m small_projects.72_spongecase
guessthenumber:
python -m small_projects.31_guess_the_number
gullible:
python -m small_projects.32_gullible
hacking:
python -m small_projects.33_hacking
hangman:
python -m small_projects.34_hangman
fourinarow:
python -m small_projects.30_four_in_a_row
fishtank:
python -m small_projects.27_fish_tank
forest:
python -m small_projects.29_forest_fire_sim
hexgrid:
python -m small_projects.35_hex_grid
flooder:
python -m small_projects.28_flooder
mazerunner2d:
python -m small_projects.44_maze_runner_2d
mazerunner3d:
python -m small_projects.45_maze_runner_3d
dicerollsim:
python -m small_projects.46_dice_roll_simulator
ninetynine:
python -m small_projects.50_ninety_nine_bottles
ninetyninebeer:
python -m small_projects.51_ninety_nniine_boottels
rainbow:
python -m small_projects.58_rainbow
rockpaperscissors:
python -m small_projects.59_rock_paper_scissors
rpsallwinner:
python -m small_projects.60_rock_paper_scissors_allwinner
hanoi:
python -m small_projects.77_towers_of_hanoi
soroban:
python -m small_projects.70_soroban
monte:
python -m small_projects.75_three_card_monte
tictactoe:
python -m small_projects.76_tic_tac_toe
waterbucket:
python -m small_projects.81_water_bucket_puzzle
langtonsant:
python -m small_projects.39_langtons_ant
jaccuse:
python -m small_projects.38_j_accuse
conway:
python -m small_projects.13_conways_game
text2speech:
python -m small_projects.74_text_to_speech "Biologists are just a bunch of cells that talk about other cells."
shining:
python -m small_projects.65_shining_carpet
soundmimic:
python -m small_projects.71_sound_mimic
hourglass:
python -m small_projects.36_hourglass
mondrian:
python -m small_projects.47_mondrian_art_generator
rotating:
python -m small_projects.62_rotating_cube
royalgame:
python -m small_projects.63_royal_game_of_ur
snailrace:
python -m small_projects.69_snail_race
slidingtiles:
python -m small_projects.68_sliding_tile_puzzle
mancala:
python -m small_projects.43_mancala
hungryrobots:
python -m small_projects.37_hungry_robots
sillyquiz:
python -m small_projects.78_trick_questions
battle:
python -m small_projects.98_text_based_battle
bingo:
python -m small_projects.99_moc_bingo
shipspotting:
python -m small_projects.97_ship_spotting