From Samual Pepys to Jean-Luc Picard
the Diary has been an Essential Mental Aid CoSy is an Ultimate . Responding Brad Nelson's 20160123 SV-FIG's Fourth Saturday talk , Organizing 2016 with Forth : From :
15:10 --- Organizing 2016 with Forth --- Brad Nelson The start of a new year is a good time to take stock, get organized, and plan ahead. Since antiquity, various systems have been devised to document, schedule, and prepare for the future. Unfortunately, the mind is a tricky thing to put in order, and the future a very hard thing indeed for which to plan.
"Though many task scheduling problems are computationally intractable,
and predicting what is best to do harder still, my own attempts to get
organized have oft failed solely for want of a daily routine of record
and reflection."
"While only time will tell, my latest hope is that proprietorship over the system used to organize my world will reinforce its use. To this end, come witness as I expound upon a planning system of my own devising, crafted from the best tools at hand in 2016: the Web, the Cloud, sketches in sparse hue, and the simplicity of Forth." I found Brad's talk particularly interesting because the enduring motivation of CoSy is being my diary . My first notes after the integration of the IUP interface onto the 4th.CoSy Reva Forth code are below : | ======================== | Sat.Nov,20061007 | ======================== |It appears I didn't fix the bug in ' dayln until | ======================== | Sat.Oct,20061014 | ======================== |Because the notebook function was sufficient to replace the everyday diary function of K.CoSy ( not the accounting function ) whose lack of access to the clipboard and very limited control over the interface isolates it from the RoW , further development pretty much stagnated until 2012 and really didn't get serious again until the last year or so . These notes look little different than those of the first APL+PC.CoSy in 1985 . See " CoSy/Language/Ultimate presented at the 1994 Rochester FORTH " for a bit of a screen shot . Also see any of my analyst meeting notes on CoSy WallSteet Wanderings . Here's a screen shot of K.CoSy with APL+PC.CoSy poking out in blue . You can see a mixture of text comments and executable lines with calendar "daylines" in various Jobs as I call them , "file folders" which contain a log and perhaps other associated account ledgers , etc . A pervasive notion in CoSy is simply providing intelligent typing paper where you can write stuff . But , if you write something in the language the system itself is written in , and tap a particular function key instead of enter , it will try to "do" it . So any line of text which is executable can be kept around as sort of a menu command . Rather than having some particular "calendar" , a programmed key will insert a dayline like the above in the text . Another key will insert a time stamp . So you can keep calendar in any Job and just put down a dayline when you happen to work on it . And everything is just text so there is almost nothing to learn about editing it and everything is searchable on any fragment in it including dates . What becomes important in retrieving desired chunks of info is use of delimiters and the vocabulary to split text on delimiters . For instance , newline characters are basic . I keep around a line like ` ref Dv@ vm s" citi" conto retrieve the text of my ` ref list , split it on line feeds ( vm is my old APL word for converting a vector to a matrix ) and return all lines containing "citi" which will retrieve all my CitiCard account numbers , passwords , etc . I just edit the quote to retrieve whatever I'm seeking . the word daylncut , | Cut text into day entries ( approximate as can be seen from def . )splits on daylines . Thus I keep around some lines like text> daylncut >t0>Which is kind of like a set of choices storing various split text objects in ` t0 then searching t0 for a particular string . This happens to be left from my looking for when I met Tad Hunt which I didn't find in my current text so I retrieved and split last year's archived text . It returned , in particular , s"You can see I use a lot of abbreviations . But , you see I do use 4th.CoSy everyday . The account entries ( coffee ; ... ) are not really "live" yet , but in the form of lists I need to be able to parse . Delimiters come in either the symmetric unitary form tokcut splits or symmetric pairs which are nestable . Finishing the parsing of symmetric pairs is one of the items you will find in the ` ToDo list if you download 4th.CoSy . It's quite high priority . Once you've got it , XML and I guess JSON are fairly trivial . If I understood Thompson right , regular expressions can't handle it . ( Reva Forth does have a regular expression library . ) Anyway , time keeping and note taking is so central to the utility of CoSy that I've taken the liberty of expanding on it in this note . I envy of Brad's knowledge of interfacing with the cloud , but my first interest is having total control of my machine(s) in one linguistic environment down to the chip . And I want CoSy on each of them . And I want them to be able to communicate with each other ( Reva also has a TCP-IP vocabulary so that should be a quick task for anybody who knows that stuff ) . This is the sort of thing which begs for the interests of other minds who know more than me . But fundamental to all of that is that if I write something down , I have it and can find it again on any fragment I can remember . That includes code and calculations as well as notes about interactions with humans . Sorry to go on so long but Brad twanged a very deep chord in CoSy . Bob A --
|