14 - [-] Convert to Typed Racket
15 - [x] build executable (otherwise too-slow)
22 - see timeline ops above
27 - see timeline ops above
28 - see hashtag and channels above
31 - [ ] all - use all known peers
32 - [ ] fast - all except peers known to be slow or unavailable
35 - calls user-configured command to upload user's own timeline file to their server
36 Looks like a better CLI parser than "racket/cmdline": https://docs.racket-lang.org/natural-cli/
37 But it is no longer necessary now that I've figured out how to chain (command-line ..) calls.
44 - [-] parse peer refs from peer timelines
45 - [x] mentions from timeline messages
46 - [x] @<source.nick source.url>
48 - [x] "following" from timeline comments: # following = <nick> <uri>
49 - [ ] Parse User-Agent web access logs.
50 - [ ] Update peer ref file(s)
51 Rough sketch from late 2019:
54 let write file peers =
57 (* Fetch could mean either or both of:
58 * - fetch peer's we-are-twtxt.txt
59 * - fetch peer's twtxt.txt and extract mentioned peer URIs
64 let rec discover peers_old =
66 Set.fold peers_old ~init:peers_old ~f:(fun peers p ->
69 (* TODO: Should p be moved to down set here? *)
73 Set.union peers peers_fetched
76 if Set.empty (Set.diff peers_old peers_all) then
80 let rec loop interval peers_old =
81 let peers_all = discover peers_old in
82 let (peers_up, peers_down) = test peers_all in
83 write "peers-all.txt" peers_all;
84 write "peers-up.txt" peers_up;
85 write "peers-down.txt" peers_down;
87 loop interval peers_all
89 loop (Sys.argv.(1)) (read "peers-all.txt")
93 - [ ] Use ETag to prevent redundant downloads
94 - [ ] Polling mode/command, where tt periodically polls peer timelines
95 - [ ] nick tiebreaker(s)
96 - [ ] some sort of a hash of URI?
97 - [ ] angry-purple-tiger kind if thingie?
98 - [ ] P2P nick registration?
99 - [ ] Peers vote by claiming to have seen a nick->uri mapping?
100 The inherent race condition would be a feature, since all user name
101 registrations are races.
104 - [ ] download times per peer
105 - [ ] Support redirects
106 - should permanent redirects update the peer ref somehow?
107 - [ ] Support time ranges (i.e. reading the timeline between given time points)
108 - [ ] optional text wrap
110 - [ ] timeline limits
111 - [ ] peer refs set operations (perhaps better done externally?)
112 - [ ] timeline as a result of a query (peer ref set op + filter expressions)
114 - [ ] highlight mentions
115 - [ ] filter on mentions
116 - [ ] highlight hashtags
117 - [ ] filter on hashtags
118 - [ ] hashtags as channels? initial hashtag special?
120 - [ ] console logger colors by level ('error)
121 - [ ] file logger ('debug)
122 - [ ] Suport immutable timelines
123 - store individual messages
125 - something like DBM or SQLite - faster
126 - filesystem - transparent, easily published - probably best
127 - [ ] block(chain/tree) of twtxts
128 - distributed twtxt.db
129 - each twtxt.txt is a ledger
130 - peers can verify states of ledgers
131 - peers can publish known nick->url mappings
132 - peers can vote on nick->url mappings
133 - we could break time periods into blocks
134 - how to handle the facts that many(most?) twtxt are unseen by peers
139 - [x] caching (use cache by default, unless explicitly asked for update)
140 - [x] value --> cache
141 - [x] value <-- cache
143 - [x] Logger sync before exit.
144 - [x] Implement rfc3339->epoch
145 - [x] Remove dependency on rfc3339-old
146 - [x] remove dependency on http-client
147 - [x] Build executable
148 Implies fix of "collection not found" when executing the built executable
149 outside the source directory:
151 collection-path: collection not found
153 in collection directories:
155 /usr/share/racket/collects/racket/private/collect.rkt:11:53: fail
156 /usr/share/racket/collects/setup/getinfo.rkt:17:0: get-info
157 /usr/share/racket/collects/racket/contract/private/arrow-val-first.rkt:555:3
158 /usr/share/racket/collects/racket/cmdline.rkt:191:51
164 - [~] named timelines/peer-sets
165 REASON: That is basically files of peers, which we already support.