Making word cloud reproducible in local copy.
This commit is contained in:
parent
216832c3e2
commit
d61490e96c
@ -2,6 +2,7 @@ accessing
|
||||
externalWordCloud
|
||||
|
||||
| text outputFile |
|
||||
self writeWordsFile.
|
||||
outputFile := (self folder / 'nube.png') fullName.
|
||||
text := (self folder / 'words', 'txt') fullName.
|
||||
OSSUnixSubprocess new
|
||||
@ -13,8 +14,8 @@ externalWordCloud
|
||||
'--height' . '357' .
|
||||
'--background' . 'white' .
|
||||
'--mode' . 'RGBA' .
|
||||
'--stopwords' . '../commons/stopwords-es.txt' .
|
||||
'--mask' . '../commons/nube-mascara.jpg'};
|
||||
'--stopwords' . '../../../commons/stopwords-es.txt' .
|
||||
'--mask' . '../../../commons/nube-mascara.jpg'};
|
||||
workingDirectory: self folder fullName;
|
||||
redirectStdout;
|
||||
redirectStderr;
|
||||
|
@ -2,5 +2,5 @@ accessing
|
||||
tweets
|
||||
self messages ifNil: [ ^ nil ].
|
||||
^ TweetsCollection new
|
||||
messages: (self messages messages select: [ :each | each authorId = self id ]);
|
||||
messages: (self messages messages select: [ :each | each authorId = self id ]);
|
||||
yourself
|
@ -1,6 +1,6 @@
|
||||
accessing
|
||||
writeWordsFile
|
||||
|
||||
"TO DO: Debug Tweet words to work better with Urls"
|
||||
| rawTweets rawWords collectionsWords count |
|
||||
self messages ifNil: [ ^ self ].
|
||||
rawTweets := self tweets messages.
|
||||
@ -9,7 +9,9 @@ writeWordsFile
|
||||
collectionsWords := ((rawTweets select:
|
||||
[ :tweet | tweet authorId = self id ])
|
||||
collect: [ :tweet | (tweet words
|
||||
reject: [ :w | w includesSubstring: self class nitterProvider ]) ]).
|
||||
reject: [ :w |
|
||||
w includesSubstring:
|
||||
((self class nitterProvider asUrl host copyWithoutAll: '.'))]) ]).
|
||||
collectionsWords do: [ :word | rawWords addAll: word ].
|
||||
rawWords := ' ' join:rawWords.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user