2022-04-05 21:39:07 +00:00
|
|
|
accessing
|
|
|
|
writeWordsFile
|
2022-04-05 22:37:42 +00:00
|
|
|
|
|
|
|
| rawTweets rawWords collectionsWords count |
|
2022-04-05 21:39:07 +00:00
|
|
|
self tweets ifNil: [ ^ self ].
|
|
|
|
rawTweets := self tweets tweets.
|
2022-04-05 22:37:42 +00:00
|
|
|
|
|
|
|
rawWords := OrderedCollection new.
|
|
|
|
collectionsWords := ((rawTweets select:
|
2022-04-06 18:09:38 +00:00
|
|
|
[ :tweet | tweet user userName = self userName ])
|
2022-04-05 22:37:42 +00:00
|
|
|
collect: [ :tweet | (tweet words
|
|
|
|
reject: [ :w | w includesSubstring: 'nitter42lfr' ]) ]).
|
2022-04-06 18:09:38 +00:00
|
|
|
collectionsWords do: [ :word | rawWords addAll: word ].
|
2022-04-05 22:37:42 +00:00
|
|
|
rawWords := ' ' join:rawWords.
|
|
|
|
|
2022-04-06 18:09:38 +00:00
|
|
|
^ MarkupFile exportAsFileOn: (self folder / 'words', 'txt') containing: rawWords.
|