aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2022-01-24 12:57:59 -0800
committerzlg <zlg@zlg.space>2022-01-24 12:57:59 -0800
commitd7aade6d78b8b307861875b9319a69bae1460fd6 (patch)
tree1207d08c891474690e6f0139c0f537a540e7447c
parentREADME.mdown: Add some extra bits about the project (diff)
downloadknr-d7aade6d78b8b307861875b9319a69bae1460fd6.tar.gz
knr-d7aade6d78b8b307861875b9319a69bae1460fd6.tar.bz2
knr-d7aade6d78b8b307861875b9319a69bae1460fd6.tar.xz
knr-d7aade6d78b8b307861875b9319a69bae1460fd6.zip
README.mdown: Add Roadmap sectionHEADmaster
The exercises may be completed, but that doesn't mean the work is over! I'll need to verify the correctness of the later exercises, and will someday comb over the messier solutions that I'm less satisfied with. I'd like to put together a modern set of solutions, too, to illustrate how C has improved over the years. Outside interest will determine whether this is pursued.
-rw-r--r--README.mdown14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.mdown b/README.mdown
index aaa91de..172b991 100644
--- a/README.mdown
+++ b/README.mdown
@@ -8,8 +8,8 @@ be "the best", but suitable for the goal at hand: *learning*.
## Motive
-This project was started to help bring out the value of the K&R. Just reading
-the text isn't enough; to best learn with the K&R, the exercises are valuable
+This project was started to bring out the value of the K&R. Just reading the
+text isn't enough; to best learn with the K&R, the exercises are valuable
experience that keeps things interesting as one progresses through the book.
Constructive critique is welcome, but please keep in mind the scope and goals of
@@ -20,6 +20,16 @@ This project is the culmination of about ten years of revisiting the text when I
got the opportunity. I hope its contents are as informative and instructive as
the text itself.
+## Roadmap
+
+* Improve exercises 8-4 through 8-8, once I learn how to verify memory sanity
+* A possible `modern` branch, to demonstrate how to achieve the same results
+ with 'normal' methods. Might split between `c99` and `c11` or more, if there
+ is interest.
+* Curate a list of "next step" resources for new C learners to cut their teeth
+ on, to keep C interesting and not just restricted to theory. Outside opinions
+ greatly appreciated!
+
## License
This project is licensed under the GNU General Public License version 3 and is
r-highlight'> 2018-09-04Update LICENSE to match setup.pyzlg1-80/+67 Whoops. 2018-09-03Branch off from master with pytest, tox, clickzlg16-778/+779 This commit is huge, but contains everything needed for a "proper" build system built on pytest + tox and a CLI built with click. For now, this branch will contain all new vgstash development activity until it reaches feature parity with master. The CLI is installed to pip's PATH. Only the 'init', 'add', and 'list' commands work, with only two filters. This is pre-alpha software, and is therefore not stable yet. 2018-03-18Flesh out filter types and ownership statuszlg3-82/+144 It's time for a refactor to a module; the functionality and interface are clashing. 2018-03-18README.mdown: break line correctlyzlg1-1/+1 2018-03-18add 'playlog' list filterzlg2-2/+9 This filter is used to get an idea of which games you're currently playing through, so you can prioritize games to play when you're bored and detect it when you've beaten a game but haven't marked it as such. 2018-03-13Update helpers a bitzlg1-2/+9 At present, user modification is needed to make these seamless. vgup() may need to be axed in favor of telling the user to make an alias. 2018-03-13Make VGSTASH_DB_LOCATION point to a filezlg2-21/+20 It used to point to a directory, which would then look for .vgstash.db. This behavior was kind of backwards and I don't remember why I did it that way. This change gives users more control over where they put their DB. Be sure to update your environment variable if you have it set! 2016-11-18Remove settings from helpers.shZe Libertine Gamer1-5/+0 Sourcing them in .bash_profile screws up login if they're set. 2016-11-15Correct phrasing in README.Ze Libertine Gamer1-4/+4 2016-11-13DerpZe Libertine Gamer1-0/+1 2016-11-03Improve error handling in shell scriptsZe Libertine Gamer4-3/+23 2016-10-24Correct run_again, add recursionZe Libertine Gamer1-0/+4 Loops and functions -- oh my, what a useful combination. :) 2016-10-21Add quotes to correct behavior for arglistZe Libertine Gamer1-1/+1 2016-10-14updater.sh: add recursion, error handlingZe Libertine Gamer1-43/+101 2016-10-14Correct pipe-handling behaviorZe Libertine Gamer1-1/+9 2016-10-12Clarify a method to move between platformsZe Libertine Gamer1-2/+5 Also correct a typo.